如何在xampp install for mac中设置include_path

时间:2015-03-12 21:32:47

标签: php macos xampp

这是我第一次在mac上设置xampp。当我运行我的页面时,收到错误:

Fatal error: require_once(): Failed opening required 'inc_db_init.php' (include_path='.:/home/site/includes') in /Volumes/untitled/Websites/site/www/test/index.php on line ...

在我的phpInfo()打印输出中显示了这个

include_path    .:/home/site/includes   .:/Applications/XAMPP/xamppfiles/lib/php

include_path是错误的。我需要它

\Volumes\untitled\Websites\site\test_includes

phpInfo()中显示的php.ini路径是:

Loaded Configuration File   /Applications/XAMPP/xamppfiles/etc/php.ini

因此,当我打开该文件时,在任何地方都没有设置include_path。

我在页面所在的目录中有另一个php.ini文件但是没有被拾取。

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

所以,我安装了xampp的基本安装。它使用我的.htaccess文件而不是我的php.ini文件来确定include_path

这是我必须插入我的.htaccess文件的行

php_value include_path ".:/Volumes/untitled/Websites/site/test_includes"