| 1 |
// $Id$
|
| 2 |
|
| 3 |
Readme
|
| 4 |
------
|
| 5 |
|
| 6 |
The dbcron module runs a set of user-defined SQL queries at regular intervals using cron.
|
| 7 |
|
| 8 |
Send comments to jazepstein@greenash.net.au.
|
| 9 |
|
| 10 |
|
| 11 |
Support
|
| 12 |
-------
|
| 13 |
|
| 14 |
All issues (e.g. support requests, bug reports) are to be submitted using the drupal.org issue tracker.
|
| 15 |
|
| 16 |
|
| 17 |
Requirements
|
| 18 |
------------
|
| 19 |
|
| 20 |
This module requires the latest development version of Drupal (CVS HEAD).
|
| 21 |
|
| 22 |
|
| 23 |
Installation
|
| 24 |
------------
|
| 25 |
|
| 26 |
1. Create the SQL tables. This depends a little on your system, but the most
|
| 27 |
common method is:
|
| 28 |
mysql -u username -ppassword drupal < dbcron.mysql
|
| 29 |
|
| 30 |
2. Copy the dbcron folder and its contents to the Drupal modules/ directory.
|
| 31 |
Drupal should automatically detect it.
|
| 32 |
|
| 33 |
3. Go to 'administer -> access control' to configure access privileges for
|
| 34 |
this module.
|
| 35 |
|
| 36 |
5. Go to 'administer -> cron queries' to start managing your cron queries.
|
| 37 |
You can create new queries from here, and edit/delete existing ones.
|
| 38 |
|
| 39 |
6. Your queries will be automatically executed at the specified time intervals
|
| 40 |
when your site's cron system is triggered.
|
| 41 |
|
| 42 |
|
| 43 |
Author
|
| 44 |
------
|
| 45 |
|
| 46 |
Jeremy Epstein <jazepstein@greenash.net.au>
|
| 47 |
|