๐งน Cleanup Operations
๐ Cron Jobs
Current cron jobs configuration:
# Run scheduler every hour
0 * * * * /usr/bin/php /path/to/automation/scheduler.php run
# Auto-schedule articles daily at 6 AM
0 6 * * * /usr/bin/php /path/to/automation/scheduler.php auto-schedule
# Clean old data weekly (Sunday at 2 AM)
0 2 * * 0 /usr/bin/php /path/to/automation/scheduler.php clean
# Generate daily report at 8 PM
0 20 * * * /usr/bin/php /path/to/automation/scheduler.php report
View your active cron jobs:
crontab -l๐ Recent Logs
No logs for today yet.
๐ Quick Commands
| Command | Description |
|---|---|
php scheduler.php run |
Process pending posts immediately |
php scheduler.php auto-schedule |
Auto-schedule all recent articles |
php scheduler.php test twitter |
Test posting to a specific platform |
php scheduler.php report |
Generate statistics report |
php scheduler.php clean |
Clean old posts and logs |