Having Log in issues. So went to forum and tried doing this:
Session save path

You need to make absolutely sure that you have set write permissions on the session directory.


Open phpMyAdmin, click the SQL tab and run this SQL query.

SELECT configuration_value FROM configuration WHERE configuration_key = 'SESSION_WRITE_DIRECTORY';

A directory path should show up, is that the correct session save path?
If not, you can change it using the following query, just replace '/path/to/tmp' with the correct path.

UPDATE configuration SET configuration_value = '/path/to/tmp' WHERE configuration_key = 'SESSION_WRITE_DIRECTORY';

When you have the correct cache path set, you need to make sure you have the correct permissions set for it. Set permissions to 777 for this directory.


Remember that if you're using a prefix to your database tables, you will need to apply that to the above queries.

Now I get this error message - 2.1 0 ERROR_DB_NOT_CONNECTED

And when I try to go to my website www.big-caboose.com it says there is a problem connecting to database.

I cant remember what the 3 numbers were that I changed to 777 to go back. Any help or suggestions would be great. I havent even been able to get into ZenCArt at this point! Very frustrating.

Marsha Funk