I have cron jobs setup that runs a few PHP scripts often. The issue is that each time it runs a script, it create an alias of it, or an empty file with the same filename and a number added at the end.
For instance, one of the files are activesessions_update.cron.php, here is the script inside it:
<?php
$memcache = new Memcache;
$memcache->connect('127.0.0.1', 11211);
$activeSessions = $memcache->getStats();
// using heredoc
$file_content = <<<TEXT
<?php
\$activeSessions = {$activeSessions['curr_items']};
?>
TEXT;
// this would be a user-defined function
file_put_contents("activesessions.php", $file_content);
?>
In my route folder, this is how it looks like: http://i.imgur.com/kS1JY.png
In cPanel, the cron job runs the command:
/usr/bin/wget http://domain.com/x/activesessions_update.cron.php
I have no idea what the problem is. I am forced to delete 10,000s of these empty files every week. Please note that I have no experience in PHP programming as I did not code it myself so any replies would be appreciated with utter detail. Who can guide me to solve this puzzle?
EDIT: Got the solution from techincal support of my host:
It wasn't logging exactly, by default wget is used to download files. So when you run wget against that url it goes out, requests the file, and downloads the output of the request, essentially saving a copy of what you would get in your browser if you pulled it up. By adding the -O /dev/null to the command you are telling it that instead of saving that output to the default location (generally wherever it was being called from) to save it to /dev/null which is really just nowhere (basically just throws it away)
this would be a user-defined function- is that exactly what is in the file, or is it a user defined function that you have substituted withfile_put_contents()for the purpose of this post? – DaveRandom Sep 4 '11 at 14:22> /dev/nullto the end of the cron command to avoid the log output. – ldg Sep 4 '11 at 14:23php /actual/local/path/to/activesessions_update.cron.php– DaveRandom Sep 4 '11 at 14:28