0

i want to upload a web site the shared server.

structure

  • public_html
    • Yii(folder)
    • index.php (inside root folder)

I'm just getting this message "Server ERROR".please can someone tell me where is the problem or what should i change in my code to make it work.here is my index code:

<?php

// yii directory paths<br/>
$yii=dirname(__FILE__).'/yii/yii.php';

$config=dirname(__FILE__).'/protected/config/main.php';

// remove the following lines when in production mode<br/>

defined('YII_DEBUG') or define('YII_DEBUG',true);

// specify how many levels of call stack should be shown in each log message<br/>
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
require_once($yii);
Yii::createWebApplication($config)->run();

?>

4

1 回答 1

0

如果您可以成功安装一个欢迎 yii 应用程序,那么这就是您的应用程序本身的 index.php 文件的问题。一种简单的方法是复制您的演示应用程序生成的 index.php 文件并将其复制粘贴到您的原始应用程序中。确保将应用程序保存在您保存演示应用程序的同一位置。此外,如果您也使用过 composer,请确保您的供应商目录在那里。然后检查文件夹的权限是否正确。特别是运行时和资产文件夹。如果有疑问,您可以简单地对它们进行 chmod 777 。如果它仍然给出错误,那么您在应用程序中使用的某些东西一定有问题,可能缺少某些东西。Ps 请正确表达错误信息,以便我们更好地了解您所面临的问题。

于 2013-09-25T05:57:11.540 回答