Can anyone tell me where the config location is for the dataDir is in version 1.2.6? In previous versions it os in the config.php file but I cannot find it in 1.2.6.
Log in as "admin", Administration -> Change settings -> dataDir
THat is the problem. I can't login because I get the message that the dataDir does not exist. I have created the directory and I know it is writeable and I am 99.9% sure that I used the right path.
I had the same problem and it took me a day to figure it out.
Lines in the config.pho looks like this
// Uncomment this one for WINDOWS - Don't forget the trailing backslash "/"
'dataDir' => 'c:/document_repository/',
// Uncomment this one for LINUX - Don't forget the trailing slash "/"
//'dataDir' => '/var/www/document_repository/',
They should look like this to work.
// Uncomment this one for WINDOWS - Don't forget the trailing backslash "/"
'dataDir' => 'c:/document_repository/',
// Uncomment this one for LINUX - Don't forget the trailing slash "/"
'dataDir' => '/var/www/document_repository/',
If your lines look like this it will not work.
It did not work til I added "//" in the front of the datadir path for linux.