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 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化