1

を使用して、localhostとの間の接続を実装しようとしましたが、すべて正常に機能しますが、Webサイトでホストしようとすると、致命的なエラーが発生します。bigquery apigoogle-api-php-client

Fatal error: Class 'Google_ServiceResource' not found in /home/XXXXX/public_html/api/src/contrib/Google_BigqueryService.php on line 25

Fatal error: Class 'Google_Client' not found in /home/XXXXX/public_html/api/sample.php on line 9

問題を理解できません。で、「 」フォルダをlocalhost使用すると、問題なく動作しますが、Webではエラーが発生します。apilocalhost

4

1 に答える 1

0

This error is usually due to a PHP script path error. Try using the __DIR__ variable to provide the path that the PHP script is running, and use that to construct the location of the library. There's lots of info on Stack Overflow about this, here's an example.

Also, check out the documentation for the Google API PHP Client library about how to include the client lib files.

于 2012-11-23T07:35:42.960 に答える