We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 7869
    • 118 Posts
    1. Downloaded and unzipped the file. There is now a folder called eform and a file called eform.xml.
    2. Copied the eform folder to /assets/snippets. The directory now looks like /assets/snippets/eform/(more_files).

    QUESTION: Where does eform.xml go?

    3. Tried to create the eForm snippet, but get an error: "Not Acceptable - An appropriate representation of the requested resource /manager/index.php could not be found on this server."

    I followed the instructions exactly. Why isn’t this working?
      -Dorian
      • 30223
      • 1,010 Posts
      That you cannot create the snippet is something unrelated to eForm. Have a look at this topic for a possible answer.

      The eform.xml file is not used at the moment and you can safely delete it for now. It’s part of a plugin I’m working on for the tinyMce editor to insert snippets. If you do want to keep it, it should go into the assets/snippets/ folder.
        • 7869
        • 118 Posts
        Thanks, that worked. For anyone interested, the problem has to do with the .htaccess file after friendly URLs have been activated. You need to add this to the .htaccess file (the one at the root level)...

        <IfModule mod_security.c>
           # Turn off mod_security filtering.  
           SecFilterEngine Off
        
           # The below probably isn't needed, but better safe than sorry.
           SecFilterScanPOST Off
        </IfModule>
          -Dorian