I have an application developed using Cakephp. The session works fine on local host too. I see the session can be set, and read out in localhost, I can also see the session file created as sesssion_save_path defined in php.ini.
First, I wrote a small session check php file to test the shared host, i am 100% sure the shared host has no issue on session.
However, the session seems not working on shared host. I can set a session, I can see the session file created on the host too, but when I refresh it, and do : $this->Session->read("User.id"); $this->Session->check("User.id");
There is nothing.
What should i do? Does it has something todo with the cakephp cache?