Installation bug
Posted: Tue Mar 31, 2009 12:04 am
In the installation file index.php at line 59:
it should be:
Code: Select all
if (!is_writable(dirname(__FILE__) . '/../image'))
{
$error['message'] = 'Warning: Image cache directory needs to be writable for OpenCart to work!';
}
Code: Select all
if (!is_writable(dirname(__FILE__) . '/../image/cache'))
{
$error['message'] = 'Warning: Image cache directory needs to be writable for OpenCart to work!';
}