0

我在 c 驱动器中有我的 xampp 文件夹,我可以使用 MySQL 和管理员,并且可以执行与 db 相关的所有功能 .. 但我在运行我的文件夹时遇到问题,即 tg 网站所在的数据。

当我尝试运行我的网站时,它给了我错误:

Fatal error: Class 'Category' not found in C:\xampp\htdocs\tg\system\core\Loader.php on line 303

我能做些什么来减少这种情况?我已经打开短标签并再次尝试打开本地主机 tg 但我无法打开它。

4

1 回答 1

0

您是否在 CodeIgniter/config/config.php 中更新了 base_url() ?

寻找

$config['base_url'] = 'http://localhost/your_codeigniter_directory/';

并将其更改为

$config['base_url'] = 'http://www.yourdomain.com/your_codeigniter_directory/';

您的错误表明该应用程序仍在 xampp 中没有?

于 2013-10-11T02:13:36.880 回答