2013-02-01 66 views
0

我有這個致命的錯誤,我的第一次嘗試笨警告:致命錯誤部署笨時:無法打開核心/ Codeigniter.php

Fatal error: require_once() [function.require]: Failed opening required 'C:/xampp/htdocs/codeigniter/core/CodeIgniter.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\admin\index.php on line 202

什麼會導致此?我不確定從哪裏開始看。

+0

請發佈什麼是「C:\ xampp \ htdocs \ admin \ index.php 202行」 – tomexsans

回答

0

您是否使用index.php作爲您項目的默認索引頁面?

如果不使用的.htaccess文件和文件夾/project/config還編輯的config.php文件

確保您所有的航線喜歡你的配置文件中聲明正確:routes.php文件等等。

+0

感謝KAsh的回覆。 BT u能澄清WOT使用.htaccess文件,我沒有發現麻餈文件夾smthing喜歡的DAT ... –

+0

你必須在你的項目文件夾 外部添加這種文件包含像一些信息: 'RewriteEngine敘述在 #認沽你的安裝目錄在這裏:# 如果你的URL是www.example.com/,使用/ #如果你的URL是www.example.com/site_folder/,使用/ site_folder/ RewriteBase/project_folder_name #不要啓用重寫存在的文件或目錄 RewriteCond%{REQUEST_FILENAME}!-f RewriteCond%{REQUEST_FILENAME}!-d #For reue sts那不是實際的文件或目錄, #rewrite to index.php/URL RewriteRule ^(。*)$ index.php/$ 1 [PT,L]' – KAsh

+0

:)謝謝... nw它的罰款.. –

0
RewriteEngine On 

# Put your installation directory here: 
# If your URL is www.example.com/, use/
# If your URL is www.example.com/site_folder/, use /site_folder/ 

RewriteBase /project_folder_name 

# Do not enable rewriting for files or directories that exist 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 

# For reuests that are not actual files or directories, 
# Rewrite to index.php/URL 
RewriteRule ^(.*)$ index.php/$1 [PT,L] 

.htaccess看起來像這樣。

1

在您的文件夾項目的終端變更許可:

sudo chmod -R 755 project_path/ 

我希望這會爲你工作。

相關問題