Hi I have a PHP script which I would like to run with a cron job on a server.
The script includes many other files
When I browse to the script in my browser it runs as expected however: the script generates about 20 files to stored on the server, however, it returns the last file as a download to the browser(it also stores the file).
Will running it with a cron job:
50 23 * * * php /var/www/site/myscript.php
Give the same results? Will the returned file cause some problems with the server?