|
ok, problem solved as took too long to wait for a reply.
Basically its due to a cache temp problem.
After searching through i found this info and tried it and it worked.
You have to open magento/lib/Zend/Cache/Backend/File.php
Change:
protected $_options = array(
‘cache_dir’ => ‘null’,
to
protected $_options = array(
‘cache_dir’ => ‘tmp/’,
Upload the changed File.php and create a folder, called “tmp”
The folder must be writable, so give it ‘777’
Good luck to anyone else having this problem.
|