Moe Sweet
Moe Sweet

Reputation: 3721

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/jquery.cookie.js

It's throwing 406 Not acceptable error.

Help please.

Upvotes: 0

Views: 508

Answers (2)

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

Upvotes: 0

aularon
aularon

Reputation: 11110

Check file permissions, also try changing filename.

Upvotes: 1

Related Questions