2010-07-02 101 views
2

我有一個論壇,我已經安裝phpbb3,我碰巧看到我的論壇沒有顯示任何東西..無法加載動態庫錯誤與phpbb論壇顯示?

我已經上傳了一個測試文件和phpinfo()函數,所有工作正常,但所有其他不工作..

錯誤日誌顯示

PHP Startup: Unable to load dynamic library 
'/usr/local/lib/php/extensions/no-debug-non-zts-20090626/http.so' 
- /usr/local/lib/php/extensions/no-debug-non-zts-20090626/http.so: cannot open shared 
object file: No such file or directory in Unknown on line 0 

,但不能什麼錯誤可能是..?

回答

1

您在php.ini中有一行包含PHP擴展「http」的行,但是缺少該擴展的共享庫。編輯php.ini以糾正問題。

+0

如果答案對你來說並不明顯,那麼你的php.ini(可能位於頂部)有幾條'extension ='行。根據[dependencies](http://devel-m6w6.rhcloud.com/mdref/http#Dependencies :),'http.so'必須低於'propro.so'和'raphf.so'。我的'pecl install pecl_http'將它混合起來,並以不正確的順序執行。 – 2014-10-14 06:11:29

1

檢查您的php.ini或您的extensions.ini文件(檢查您的php -iphpinfo();的位置),並確保extension=http.so位於文件的底部。