在 Ubuntu 上安裝 WordPress 外掛程式/Pear 問題

在 Ubuntu 上安裝 WordPress 外掛程式/Pear 問題

當我安裝wordpress外掛時,經常出現錯誤

Warning: include_once() [function.include]: Failed opening 
  '/usr/share/wordpress/wp-content/plugins/twitter-for-wordpress/' 
  for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in
  /usr/share/wordpress/wp-settings.php on line 473

我已經安裝了 Pear,但是 Ubuntu 顯然沒有把它放在預期的位置。一定有一個別名可以解決這個問題,有人知道它是什麼嗎?

謝謝。

答案1

這很可能是權限問題,與 Pear 或包含路徑無關 - 因為錯誤訊息顯示 include_once 使用絕對路徑並且不需要使用 PHP include_path 設定。

我建議您檢查 /usr/share/wordpress/wp-content/plugins/twitter-for-wordpress/ 是否具有允許 Web 伺服器讀取它的權限。這通常應該是 755(rwxr-xr-x 中的ls -l)。

答案2

如果您使用 PHP 5,您可以嘗試 /usr/local/php5/lib/php/PEAR。

相關內容