Page 1 of 1

Installation bug

Posted: Tue Mar 31, 2009 12:04 am
by ocsinet
In the installation file index.php at line 59:

Code: Select all

if (!is_writable(dirname(__FILE__) . '/../image')) 
{
     $error['message'] = 'Warning: Image cache directory needs to be writable for OpenCart to work!';
}
it should be:

Code: Select all

if (!is_writable(dirname(__FILE__) . '/../image/cache')) 
{
     $error['message'] = 'Warning: Image cache directory needs to be writable for OpenCart to work!';
}

Re: Installation bug

Posted: Tue Mar 31, 2009 5:30 am
by Daniel
thanks!