plodos Posted January 29, 2009 Share Posted January 29, 2009 wget --delete-after http://xxxxxxx.com/cron.php what are these commands? wget --delete-after why should I use ? Quote Link to comment https://forums.phpfreaks.com/topic/143029-solved-give-me-an-info-pls-about-cron-job-commands/ Share on other sites More sharing options...
Maq Posted January 29, 2009 Share Posted January 29, 2009 What are you trying to do? Quote Link to comment https://forums.phpfreaks.com/topic/143029-solved-give-me-an-info-pls-about-cron-job-commands/#findComment-749995 Share on other sites More sharing options...
trq Posted January 29, 2009 Share Posted January 29, 2009 wget has nothing to do with cron. It is a command line tool for making http requests. What normally happens is it saves the output of the request in a file, the --delete-after option removes this file. You would use wget via cron if you did not have access to php's command line interface and you wanted to execute a php script via cron. This way you could place the script on your server and simply have wget request it. Quote Link to comment https://forums.phpfreaks.com/topic/143029-solved-give-me-an-info-pls-about-cron-job-commands/#findComment-750000 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.