"Could not determine temp directory, please specify a cache_dir manually" in Magento
Some times this error occur when you transfer the code to your server. This error mostly occur with Shared Server.
To Solve it follow the below steps -
go to - "/lib/Zend/Cache/Backend/File.php" and open it and go to line no- 91 and change cache_dir' => null, to 'cache_dir' => "var/tmp/"
it will solve your problem but issue may occur when you upgrade your magento.
So, recommended process is to override the file by make a copy of original one in - /app/code/local/Zend/Cache/Backend/File.php
and do the same process - go to line no- 91 and change 'cache_dir' => null, to 'cache_dir' => "var/tmp/"
I think it may help you....:)
0 Comment(s)