×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

PHP

How do I run a PHP script from cron? by bgarlock
Posted: 2 Feb 02

Have you ever written a PHP script for a webpage, and wanted it to run at a specified time?  When you compile PHP as a DSO into apache, you have to use a browser to run the script.  I often do this to query databases, and import data periodically to another database, using PHP.  To automate the task, I use cron to run the PHP script.  Here is the format that you need to use in your crontab:

0 6 * * * TERM=xterm; export TERM; /usr/bin/lynx -source "http://www.server.com/path/to/script.php"; 1>/dev/null 2>&1

This would have the same effect as the user bringing the PHP script up in a browser, if all the script did was to perform actions, without any required user input.  

Back to Linux (server) FAQ Index
Back to Linux (server) Forum

My Archive

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close