配置Opencart从测试到实时?

时间:2016-08-29 11:15:33

标签: php opencart hosting

我更改了根文件夹和/ admin文件夹

的配置文件
<?php
// HTTP
    define('HTTP_SERVER', 'http://livesite.com/new/');

// HTTPS
    define('HTTPS_SERVER', 'http://livesite.com/new/');

// DIR
    define('DIR_APPLICATION', 'http://livesite.com/new/catalog/');
    define('DIR_SYSTEM', 'http://livesite.com/new/system/');
    define('DIR_IMAGE', 'http://livesite.com/new/image/');
    define('DIR_LANGUAGE', 'http://livesite.com/new/catalog/language/');
    define('DIR_TEMPLATE', 'http://livesite.com/new/catalog/view/theme/');
    define('DIR_CONFIG', 'http://livesite.com/new/system/config/');
    define('DIR_CACHE', 'http://livesite.com/new/system/storage/cache/');
    define('DIR_DOWNLOAD', 'http://livesite.com/new/system/storage/download/');
    define('DIR_LOGS', 'http://livesite.com/new/system/storage/logs/');
    define('DIR_MODIFICATION', 'http://livesite.com/new/system/storage/modification/');
    define('DIR_UPLOAD', 'http://livesite.com/new/system/storage/upload/');

// DB
    define('DB_DRIVER', 'mysqli');
    define('DB_HOSTNAME', 'localhost');
    define('DB_USERNAME', 'livesite');
    define('DB_PASSWORD', 'livesite');
    define('DB_DATABASE', 'livesite');
    define('DB_PORT', '3306');
    define('DB_PREFIX', 'livesite_');
?>

我正在尝试将其托管在该网站的子文件夹中,并说&#34; New&#34;但是当我去livesite.com/new时 我正在接受空白屏幕的欢迎

1 个答案:

答案 0 :(得分:1)

使用配置文件的绝对路径。如果您不知道绝对路径,请创建一个PHP文件(例如名为path.php)并向其添加以下代码。

<?php
$path = getcwd();
echo "This Is Your Absolute Path: ". $path . "<br>";
?>

然后在浏览器http://livesite.com/path.php

中导航至该页面

您的绝对路径应该类似于:/home/{prefix}/public_html/new,请记住使用正斜杠而不是反斜杠。

出于安全原因,请在完成后删除该文件。