mpartarrieu
Programmer
Hi,
I created a php script that send a newsletter on batches of 30 emails per hour. It uses a cron-job to send emails, and everything works fine except that the cron-job creates blank files in the root directory of the server everytime it runs the script.
I tried to stop this by setting crontab as follows:
Code:
30 * * * * wget -q <absolute_url_of_email_sender_script>
...but the quiet param hasn't stop the creation of files. Any ideas of how to stop this??
Thanks in advance.