Getting Error 324 (net::ERR_EMPTY_RESPONSE). when using memcache in kohana

后端 未结 3 1151
北恋
北恋 2021-01-19 01:05

i\'m getting this error when i try to use memcache using kohana. all i did was changed the hostname in the configuration file and used $cache = Cache::instance(\'memca

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-19 02:00

    The error described is a Google Chrome error. This suggests that Kohana is not responding with anything, most likely because the error/exception handling is being suppressed. Check that PHP error_reporting is on (E_ALL is a good value).

    If there still is no output, it could be that PHP is segfaulting during execution. If so you should be able to find out what is wrong in your web server logs if not the system log.

    My best guess is that php-memcache and/or the memcache library is not compiled correctly or has been corrupted.

提交回复
热议问题