09-08-2011, 05:42 PM
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.
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.