net::ERR_INCOMPLETE_CHUNKED_ENCODING since upgrading to Laravel 4.1 net::ERR_INCOMPLETE_CHUNKED_ENCODING since upgrading to Laravel 4.1 google-chrome google-chrome

net::ERR_INCOMPLETE_CHUNKED_ENCODING since upgrading to Laravel 4.1


I started having this issues with MAMP, Laravel and Chrome every time i created a new project.I use MAMP on Maverick so the solution for me was change on MAMP preferences -> php tab -> php extensions -> XCache to APC, that solved the problem.Good luck.


Had the same issue on Laravel 4.2. My app has always been working on my local machine, but as soon as I put it on production server, it stopped working. As the answer above, XCache installed on the production server was the problem.

First of all you can check if XCache is enabled

$ php -v...with XCache v2.0.0, Copyright (c) 2005-2012, by mOo

What I did was to add this to my /public/.htaccess (to disable XCache)

php_flag xcache.cacher Offphp_flag xcache.size 0php_flag xcache.stat Off

This way you check if XCache is the problem.