0
我遇到了文件目錄的問題。我嘗試了幾個地址,我似乎無法把正確的地址。我使用FileZilla中爲我的FTP上傳一個ftp上的yii項目
<?php
// change the following paths if necessary
$yii=dirname(__FILE__).'/../../framework/yii.php';
$config=dirname(__FILE__).'/protected/config/main.php';
// remove the following lines when in production mode
defined('YII_DEBUG') or define('YII_DEBUG',true);
// specify how many levels of call stack should be shown in each log message
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
require_once($yii);
Yii::createWebApplication($config)->run();
我不斷收到此錯誤
Warning: require_once(/kristian/dev/framework/yii.php) [function.require-once]: failed to open stream: No such file or directory in /kristian/dev/system/index.php on line 12
什麼必須是正確的地址/目錄?
的FTP http://i40.tinypic.com/2qc2jc3.jpg
你的框架存在於正確的路徑? –
是的。我修改了它$ yii = dirname(__ FILE __)。'/ dev/framework/yii.php'; – user3064038
你的YII核心文件夾在哪裏? – Hearaman