You need to setup execute permission on a php script. You need to use chmod command to change file access permissions. Use chmod command as follows:
chmod +x scriptname.php
Also make sure you add following line to top of php script (first line should be #!/usr/bin/php):
#!/usr/bin/php
If you are using FreeBSD, use:
#!/usr/local/bin/php
#!/usr/bin/php is called as a shebang (pound bang). It execute php script using the interpreter /usr/bin/php.
Save and close the file.
Now add cron job by typing following command:$ crontab -e
Output:
# run everday at 10:45 45 10 * * * /path/to/myphpscript.php
Save and close the file.
Post your comment:
Powered By 2013-2015 ©. Juszeil Conception version 2.0
Queries Executed : 0.0104 seconds