m.digregorio:
I have made a modificationto the application_top file (zc_install\includes).
from
zen_session_start();
to
//zen_session_start();
You REALLY shouldn't do that. It is sure to break more than it will fix (even though it has provided a useful bit of information).
m.digregorio:
"the server has no place to write its session files", or "PHP sessions might not be functional on your server".
This is probably the root cause of your problem.
m.digregorio:
the cache" folder's permissions is marked as writable.
Can you please be more specific... a 'chmod' value of 007 is 'writable' but it is an unsuitable permission for most practical purposes.
It needs to be '777'.
Also, in a previous message you stated that your config file has:
define('STORE_SESSIONS', 'db') ;
This could cause a conflict if you are expecting the sessions to be stored in a folder.
I suggest either change this define to match your cache directory, or ask yourself why the sessions are unable to be stored in the database as per your define. Do you need to tun the 'fix cache' utility perhaps?
Sorry if I'm a little vague on this, but I freely admit I'm no expert when it comes to zencart and the way it caches data.
Cheers
Rod