So I have php script, and want to run in with cron tab (unix)
php script url:
https://www.domain.com/admin/index.php?route=do&key=54asd55asd
How can add it to crontab?
I tried
* * * * * lynx -dump https://www.domain.com/admin/index.php?route=do&key=54asd55asd
* * * * * wget https://www.domain.com/admin/index.php?route=do&key=54asd55asd
but no luck.
Any ideas?