0

dropbox-phpライブラリを機能させるのに苦労しましたが、クラスを使用しようとしたページでエラーが出力されます。

Warning: include(HTTP/OAuth/Consumer.php) [function.include]: failed to open stream: No such file or directory in /home/sensured/public_html/sensured.net/Dropbox/OAuth/PEAR.php on line 47   

Warning: include(HTTP/OAuth/Consumer.php) [function.include]: failed to open stream: No such  file or directory in /home/sensured/public_html/sensured.net/Dropbox/OAuth/PEAR.php on line 47

Warning: include() [function.include]: Failed opening 'HTTP/OAuth/Consumer.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/sensured/public_html/sensured.net/Dropbox/OAuth/PEAR.php on line 47

Fatal error: Uncaught exception 'Dropbox_Exception' with message 'The HTTP_OAuth_Consumer class could not be found! Did you install the pear HTTP_OAUTH class?' in /home/sensured/public_html/sensured.net/Dropbox/OAuth/PEAR.php:51 Stack trace: #0 /home/sensured/public_html/sensured.net/Dropbox/getmetadata.php(11): Dropbox_OAuth_PEAR->__construct('', '') #1 {main} thrown in /home/sensured/public_html/sensured.net/Dropbox/OAuth/PEAR.php on line 51  

pear HTTP_OAUTHクラスがインストールされています(v 0.2.3)が、cpanelを介して実行されているため、どこにあるのかわからず、それが何か言うことがあるかどうかさえわかりません。

4

1 に答える 1

4

PEARのPHPディレクトリがにあることを確認する必要がありますinclude_path

でパスを見つける

$ pear config-get php_dir

php.ini次に、それを'include_pathディレクティブに追加します。その後、Webサーバーソフトウェアを再起動して、新しい設定をアクティブにします。

于 2011-09-22T18:27:32.157 に答える