Biranchi
Biranchi

Reputation: 16327

Cron on XAMPP (Mac OS)

I have installed XAMPP server on my Mac OS, how to setup a cron job on it?

My requirement is that i want to call a php script at regular intervals .

Thanks

Upvotes: 0

Views: 3576

Answers (2)

user1265508
user1265508

Reputation:

Cronnix http://code.google.com/p/cronnix/ or the command line for editing cron tabs.

Upvotes: 0

RageZ
RageZ

Reputation: 27313

there is a good article here how to setup cron job on Mac OS X

you would have to edit a textfile(crontabtaskfile)and add for example

0      */1     *       *       *      php path/to/yourphp.php

this would give you a task running every hour (1:00, 2:00) .

and use crontab crontabtaskfile

Upvotes: 5

Related Questions