Hello Bakers,
I have a quite weird problem. Wasted several hours on this already.
I am migrating from apache 2.2 + mod_php to a nginx + php_fpm.
Generally, application is working fine under both of them (they now
point to the same rootdir, however i can fire apache or nginx by
selecting port i.e. myapp.com:81, myapp.com:82)
Under apache everything is fine.
Under nginx my Session->flash messages doesnt ever disappear, means
the session flash is not cleared after displaying.
When running in debug mode I have 2 errors at the bottom, written even
after $cakeDebug:
( ! ) Fatal error: Class 'Cache' not found in Unknown on line 0
( ! ) Fatal error: Class 'CakeSession' not found in Unknown on line 0
What does it mean? Anyone ever encountered such? I have triple cleared
all the caches, even switched from fileengine to memcache... still no
luck... xdebug doesnt show anything more either
I am using regular nginx conf for this
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root
$fastcgi_script_name;
include /usr/local/etc/nginx/fastcgi_params;
fastcgi_param SERVER_NAME $host;
}
The problem seems to be somewhere when application is finishing.
Any ideas?
Tom
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---