Javascript file inclusion 406 error in CakePHP
I have several js files under webroot
http://www.in-culture.info/app/webroot/js/
All the files are ok
Eg http://www.in-culture.info/app/webroot/js/lightbox.js
Except this
http://www.in-culture.info/app/webroot/js/jque开发者_开发知识库ry.cookie.js
It's throwing 406 Not acceptable error.
Help please.
Check file permissions, also try changing filename.
If your server has mod_security
enabled (which is usually present on cPanel hostings) the problem is that mod_security
blocks filenames containing the text ".cookie".
So the solution is to rename the file to somethign else.
Source
精彩评论