0

这是我在 sublime explorer 中的文件:

在此处输入图像描述

我可以包含 config.php 但不能包含其他:

echo get_include_path();                                            //output: .:/usr/local/pear/share/pear
set_include_path(SITE_SERVER.'vendor/google-api-php-client/src');
echo get_include_path();                                            //output: /Users/harrywiles/Dropbox/Sites/headfirst/vendor/google-api-php-client/src
require_once 'config.php';                                          //works
require_once 'Google_Client.php';                                   //doesnt work

即使我知道路径是正确的,我也会得到经典错误:

Fatal error: require_once(): Failed opening required 'Google_Client.php' (include_path='/Users/harrywiles/Dropbox/Sites/headfirst/vendor/google-api-php-client/src') 

这让我精神振奋,所以任何帮助都非常感激!

4

1 回答 1

2

这是权限错误。只需转到项目的根目录并运行

chmod -R 755 *

如果 apache 没有读取和执行的权限,就会引发这些问题。

于 2013-07-17T04:15:13.420 回答