Hi Guys
Sorry I just realised I never actually responded back with info how I solve this problem.
Hopefully someone will find it useful.
To solve this I had to identify proper php sessions path and and also changed session.use_trans_sid value from 0 to 1
In my php.ini before i had (refer to screenshot I posted above before):
session.save_path no value
session.use_trans_sid 0
now I have:
session.save_path /home/users/myusername/phpsessions
session.use_trans_sid 1
After this no more problems :-)
for some of you setting session.save_path to /tmp may help to
Kris
Sorry I just realised I never actually responded back with info how I solve this problem.
Hopefully someone will find it useful.
To solve this I had to identify proper php sessions path and and also changed session.use_trans_sid value from 0 to 1
In my php.ini before i had (refer to screenshot I posted above before):
session.save_path no value
session.use_trans_sid 0
now I have:
session.save_path /home/users/myusername/phpsessions
session.use_trans_sid 1
After this no more problems :-)
for some of you setting session.save_path to /tmp may help to
Kris