Php
將 joomla 解壓縮到具有相同域的新使用者後 Directadmin 500 內部錯誤
我已將 Joomla 網站的 public_html 從
olduser
移至newuser
. 我也將域joomlasite.com
從; 但是當我帶著所有權去參觀它時,就會看到。olduser``newuser``joomlasite.com``newuser``500 Internal Server Error
注意:權限應該沒有任何問題,因為使用 777 和 (644/755) 權限,我得到相同的結果。
我什
die('Hello');
至在頂部添加了index.php
但仍然存在錯誤。根據 Niall Donegan 的評論,我檢查了文件。有用的內容是:
SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/administrator/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/administrator/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/administrator/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/administrator/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:350: UID of script "/home/newuser/domains/joomlasite.com/public_html/index.php" is smaller than min_uid Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php SoftException in Application.cpp:249: File "/home/newuser/domains/joomlasite.com/public_html/index.php" is writeable by group Premature end of script headers: index.php
希望清楚明白。
有什麼解決問題的建議嗎?
我敢打賭,/home/newuser/domains/joomlasite.com/public_html/ 中的文件歸根使用者所有。看起來您正在使用 suPHP,它將以與擁有文件相同的使用者身份執行 PHP 文件。min_uid 限制是為了確保 suPHP 不會無意中以 root 或其他系統使用者身份執行。
最快的修復可能是執行以下命令:
chown -R newuser /home/newuser/domains/joomlasite.com/public_html/
錯誤的第二部分是因為 777 權限。對此的修復可能是:
find /home/newuser/domains/joomlasite.com/public_html/ -type f -exec chmod 644 {} \+
這將在 public_html 目錄中找到所有文件並將權限更改為 644,這比共享系統上的 777 安全得多!如果上述命令拋出錯誤,請將 + 替換為 ;