Log in to SSH, make sure you have admin rights
Run this command to list error_log files and their sizes
find /home -type f -iname error_log -exec du -sh {} \;
Want to delete them all? Run this:
find /home -type f -iname error_log -delete
Log in to SSH, make sure you have admin rights
Run this command to list error_log files and their sizes
find /home -type f -iname error_log -exec du -sh {} \;
Want to delete them all? Run this:
find /home -type f -iname error_log -delete