将Yii项目移动到cPanel时出现500内部服务器错误

时间:2015-07-21 09:14:47

标签: .htaccess yii cpanel

将cii文件管理器中的Yii项目文件夹移动到public_html时出现问题。在localhost http://localhost:8888/eKehadiran/index.php中,它运行正常,但是当我将项目移动到public_html并运行ekehadiran.com/index.php时,出现了错误。

这是public_html上的一些相关文件:

的.htaccess



AddHandler application/x-httpd-php54 .php .php5 .php4 .php3




的index.php



<?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();
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:2)

您在error_logs文件中收到了什么错误?请检查并尝试禁用.htaccess行。

答案 1 :(得分:1)

尝试在index.php中添加以下行

<?php

error_reporting(-1);
ini_set('display_errors', true);

//必要时更改以下路径

它应该显示错误