Спасибо большое за помощь!!
Подскажите еще, при запуске установки выдает вот такую фигню:
<?phpini_set('display_errors', 1);error_reporting(E_ALL);// HTTPdefine('HTTP_SERVER', 'http://' . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['SCRIPT_NAME']), '/.\\') . '/');define('HTTP_OPENCART', 'http://' . $_SERVER['HTTP_HOST'] . rtrim(rtrim(dirname($_SERVER['SCRIPT_NAME']), 'install'), '/.\\'). '/');// DIRdefine('DIR_APPLICATION', str_replace('\'', '/', realpath(dirname(__FILE__))) . '/');define('DIR_SYSTEM', str_replace('\'', '/', realpath(dirname(__FILE__) . '/../')) . '/system/');define('DIR_OPENCART', str_replace('\'', '/', realpath(DIR_APPLICATION . '../')) . '/');define('DIR_DATABASE', DIR_SYSTEM . 'database/');define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');define('DIR_TEMPLATE', DIR_APPLICATION . 'view/template/');define('DIR_CONFIG', DIR_SYSTEM . 'config/');// Upgrade$upgrade = false;if (filesize('../config.php') > 0) { $upgrade = true; $file = file(DIR_OPENCART . 'config.php'); foreach ($file as $num => $line) { if (strpos(strtoupper($line), 'DB_') !== false) { eval($line); } }}// Startuprequire_once(DIR_SYSTEM . 'startup.php');// Registry$registry = new Registry();// Loader$loader = new Loader($registry);$registry->set('load', $loader);// Request$request = new Request();$registry->set('request', $request);// Response$response = new Response();$response->addHeader('Content-Type: text/html; charset=UTF-8');$registry->set('response', $response);// Document$document = new Document();$registry->set('document', $document);// Front Controller$controller = new Front($registry);// Routerif (isset($request->get['route'])) { $action = new Action($request->get['route']);} elseif ($upgrade) { $action = new Action('upgrade');} else { $action = new Action('step_1');}// Dispatch$controller->dispatch($action, new Action('not_found'));// Output$response->output();?>
Что я сделал не так?