donglin317704291 2016-05-20 19:03
浏览 86
已采纳

在PHP中使用名称空间::找不到致命错误Core \ App


I made an MVC project in local (WAMP) and it runs perfectly. But when i deploy it in a web server apears this error:

Fatal error: Class 'Core\App' not found in home/dmlink/public_html/public/index.php on line 14

This is the code of the line 14:

13: spl_autoload_register('autoload_classes');
14: $app = new \Core\App;
15: $app->render();

The structure of the project:

  • app : Here are the controllers, models, and views.
  • core: Here are the core files.
  • public: Since this directory runs the app.

I got the same version in the web server like in localhost:

  • php 5.5
  • apache 2.4

This is the complete code of index:

define('PROJECT_PATH', dirname(__DIR__));
define('APP_PATH', PROJECT_PATH . '/app');

function autoload_classes($class_name){
    $file = PROJECT_PATH . '/' . str_replace('\\', '/', $class_name) . '.php';
    if (is_file($file)) {
        include_once $file;
    }
}

spl_autoload_register('autoload_classes');
$app = new \Core\App;
$app->render();

Any idea that is causing this error ThankS for all by the way.

  • 写回答

2条回答 默认 最新

  • duanji1924 2016-06-02 17:28
    关注

    Finally i found the error, and was very simple!.

    The error was the name of the directories where the classes are. I just rename the directory 'Core' instead 'core' .... And thats it.

    Thanks for all!!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 yolov8边框坐标
  • ¥15 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真