Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
2.6k views
in Q2A Core by

hi,

i had installed the site in godaddy.com but its giving me erro

but once i click on create database including user management i am getting error

 

Not Acceptable

An appropriate representation of the requested resource /index.php could not be found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

 

please help

 

Q2A version: 1.6.3

1 Answer

0 votes
by

You should ask your provider to disable the mod_security.

Or, if you want to try to disable it by yourself, in your q2a docroot, inside your .htaccess file, put this directive on top :

<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

 

...