Changes between Version 27 and Version 28 of DetailedInstall
- Timestamp:
- May 13, 2008, 10:19:28 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DetailedInstall
v27 v28 320 320 3. Return to the Dolphin installation page and copy the first command to be run as cron (omitting the zeros and asterisks), for example: 321 321 {{{ 322 /usr/local/bin/php -q m:/home/localhost/www/dolphin61/periodic/cmd.php322 /usr/local/bin/php -q /home/localhost/www/d611/periodic/cmd.php 323 323 }}} 324 324 and insert it into the first field of your CPanel cron jobs management page schedule the time for this job, which also can be fetched from the Dolphin installation page, such as: … … 331 331 5. Do the same for the second cron script: 332 332 {{{ 333 /usr/local/bin/php -q m:/home/localhost/www/dolphin61/periodic/notifies.php333 /usr/local/bin/php -q /home/localhost/www/d611/periodic/notifies.php 334 334 335 335 }}} … … 341 341 6. Do the same for the third cron script: 342 342 {{{ 343 /usr/local/bin/php -q m:/home/localhost/www/dolphin61/periodic/cupid.php343 /usr/local/bin/php -q /home/localhost/www/d611/periodic/cupid.php 344 344 345 345 }}} 346 346 and schedule the time for it: 347 347 {{{ 348 * /10 * * * * (which means: run the script every 10 minutes)348 * */1 * * * (which means: run the script every 1 hour) 349 349 }}} 350 350 … … 359 359 {{{ 360 360 MAILTO=myemail@mysite.com 361 0 0 * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/cmd.php362 */10 * * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/notifies.php363 * /10 * * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/cupid.php361 0 0 * * * /usr/local/bin/php -q /home/localhost/www/d611/periodic/cmd.php 362 */10 * * * * /usr/local/bin/php -q /home/localhost/www/d611/periodic/notifies.php 363 * */1 * * * /usr/local/bin/php -q /home/localhost/www/d611/periodic/cupid.php 364 364 365 365 }}} … … 398 398 schtasks /Create /tn task_name /sc DAILY /st 00:00:00 /tr c:\wamp\www\periodic\cmd.bat (to run every day at midnight) 399 399 schtasks /Create /tn task_name /sc MINUTE /mo 10 /tr c:\wamp\www\periodic\notifies.bat (to run every 10 minutes) 400 schtasks /Create /tn task_name /sc MINUTE /mo 10 /tr c:\wamp\www\periodic\cupid.bat (to run every 10 minutes) 400 schtasks /Create /tn task_name /sc HOURLY /mo 1 /tr c:\wamp\www\periodic\cupid.bat (to run every 1 hour) 401 401 402 }}} 402 403