![]() |
"Excess in non-pipelined read" error with nginx and php-fpm - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: "Excess in non-pipelined read" error with nginx and php-fpm (/showthread.php?tid=59633) |
"Excess in non-pipelined read" error with nginx and php-fpm - El Forum - 10-29-2013 [eluser]Unknown[/eluser] Hi, I am using codeigniter 2.1.3 with Phil Sturgeon's REST Server library and flexiauth. I added memcached on login and logout functions to store and delete login token. When I use these functions with php-fpm and nginx, I get error Code: Excess found in a non pipelined read: excess But, when I use apache + mod_php the same response is returned correctly. If I comment out the memcached part in those 2 functions, the response works correctly. Code: public function logout_get() { I can't find anything in the PHP-FPM log which can tell me what the issue could be. Any pointers why it acts differently with apache+mod_php and nginx+php-fpm? "Excess in non-pipelined read" error with nginx and php-fpm - El Forum - 10-30-2013 [eluser]Unknown[/eluser] To eliminate the issue, I ran apache with php-fpm, to reduce the variables. I am running into the issue again. So, the problem is between php-fpm vs mod_php. I'll take it up in PHP mailing lists too but if somebody has run into this while using codeigniter-restserver library and found a solution, it'll be helpful. |