seems it may be related to Clam AV. Which is an antivirus installed on the server.
Script-
Cron-#!/bin/bash cd /home/username/public_html find /home/username/public_html -type f -name '*.suspected' | while read f; do mv "$f" "${f%.suspected}"; done
Make sure to change "username" in the script code to the username of your cPanel user. If you don't use cPanel, you'll need to adjust the paths accordingly.*/5 * * * * /root/wpfix.sh >/dev/null
This will cause the system to search for files named something.php.suspected, and rename them to something.php.
No comments:
Post a Comment