hello
'?' Mark mouse-overs are not working and are blank and I am getting other ajax error and in console it is returning an error that Failed to load resource: the server responded with a status of 404 ().

Error that i am getting

Configuration

404 means not found. This generally means that AJAX is not being handled properly by your webserver. It mostly seems to be caused by running NGINX instead of Apache, or security products such as SELinux or mod_security or something similar.

5 days later

I have checked that mod_security is enable in my hosting so ,what should i do ? shall i disable it ?

If it were me I would disable mod_security and restart/reload the service and see if that 'fixes the issue'.

If it does then you would take a look at the mod_security rules. Figure out which rule is preventing ajax calls and disable the rule. Or more secure, write a rule to allow ajax calls. I haven't played with mod_security very much so

Also, your PHP version is old, you should upgrade to 7.2 if you looking to secure it

8 days later
Write a Reply...