Technical discuss

检查 Joomla 日志

  • btt
  • [btt]
  • Topic Author
  • New Member
  • New Member
More
05 Jan 2026 13:41 #986 by btt
New Topic
# 查看 Joomla 日志目录
Code:
ls -la /var/www/html/administrator/logs/

# 如果有日志文件,查看最新内容
Code:
tail -f /var/www/html/administrator/logs/error.php

# 或者查看所有日志文件
Code:
find /var/www/html -name "*.log" -o -name "*.txt" | xargs grep -l "install" 2>/dev/null

Please Log in or Create an account to join the conversation.