iarp Posted October 20, 2008 Share Posted October 20, 2008 [email protected] */20 * * * * /usr/bin/wget http://list.domain.ca/admin/consume.php >/dev/null thats what the crontab is setup todo, so basically every 20minutes it runs consume.php In my root directory, i'm getting files like this: consume.php consume.php1 consume.php2 i woke up this morning with 24emails and consume.php1 - consume.php24 can someone please tell me why it's doing this and/or how to stop it. Link to comment https://forums.phpfreaks.com/topic/129273-cron-jobs-saving-a-file-in-root-directory-for-some-stupid-reason/ Share on other sites More sharing options...
iarp Posted October 20, 2008 Author Share Posted October 20, 2008 Email output: --15:00:01-- http://list.domain.ca/admin/consume.php => `consume.php' Resolving list.domain.ca... 74.208.60.144 Connecting to list.domain.ca|74.208.60.144|:80... connected. HTTP request sent, awaiting response... 200 OK Length: unspecified [text/html] 0K 0.00 B/s 15:00:01 (0.00 B/s) - `consume.php' saved [0] Link to comment https://forums.phpfreaks.com/topic/129273-cron-jobs-saving-a-file-in-root-directory-for-some-stupid-reason/#findComment-670250 Share on other sites More sharing options...
CroNiX Posted October 20, 2008 Share Posted October 20, 2008 Hard to say with no code posted, but you can try enabling quiet mode: */20 * * * * -q /usr/bin/wget http://list.domain.ca/admin/consume.php >/dev/null Link to comment https://forums.phpfreaks.com/topic/129273-cron-jobs-saving-a-file-in-root-directory-for-some-stupid-reason/#findComment-670302 Share on other sites More sharing options...
DarkWater Posted October 20, 2008 Share Posted October 20, 2008 Why are you running it through wget? You could just run the PHP-CLI. Link to comment https://forums.phpfreaks.com/topic/129273-cron-jobs-saving-a-file-in-root-directory-for-some-stupid-reason/#findComment-670314 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.