我遇到了set_include_path的問題,我讀了很多關於該問題的消息,但沒有一個適用於我。 我在Debian和我的根目錄將設置爲/ home /項目/PHP set_include_path配置
所以,我想這4個不同的東西:
ini_set("include_path", '/home/project');
ini_set("include_path", '.:/home/project');
set_include_path('.:/home/project');
set_include_path('/home/project');
set_include_path(get_include_path().PATH_SEPARATOR.'/home/project');
但沒有工作......當我做回聲get_include_path( );每次看起來都很好。
但是第四種方法與我的電腦上的WAMP完美配合。
對所有這些錯誤消息:在使用本
Warning: include(/config/config.php) [function.include]: failed to open stream: No such file or directory in /home/project/web/www.project.com/index.php on line 3
Warning: include() [function.include]: Failed opening '/config/config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear:/home/project') in /home/project/web/www.project.com/index.php on line 3
是這一個我也試過了,我把它放在列表中... – user1040899
當你試圖包含文件時你能發佈錯誤嗎?它通常會打印出使用的包含路徑。它改變了嗎? –
剛剛編輯我的信息 – user1040899