# FXCAPXPRESS / AIHUB — production crontab # Replace /home/USER/public_html/aihub.com with your actual server path. # Install: crontab -e (paste lines below, save) # # Test a job manually: # php /home/USER/public_html/aihub.com/scripts/run-cron.php online daily_payout # # Run migrations after deploy: # php /home/USER/public_html/aihub.com/scripts/migrate.php online SITE=/home/USER/public_html/aihub.com PHP=/usr/bin/php # Forex live prices — every 2 minutes */2 * * * * $PHP $SITE/scripts/run-cron.php online forex_price_sync >> $SITE/logs/cron-forex-prices.log 2>&1 # Forex orders & stop-loss — every minute * * * * * $PHP $SITE/scripts/run-cron.php online forex_position_manager >> $SITE/logs/cron-forex-positions.log 2>&1 # Crash / Aviator rounds — every minute * * * * * $PHP $SITE/scripts/run-cron.php online crash_rounds >> $SITE/logs/cron-crash.log 2>&1 # Matatu tournaments — every 5 minutes */5 * * * * $PHP $SITE/scripts/run-cron.php online matatu_tournaments >> $SITE/logs/cron-matatu.log 2>&1 # Football fixtures & Sure Odds sync — every 10 minutes */10 * * * * $PHP $SITE/scripts/run-cron.php online football_sync >> $SITE/logs/cron-football.log 2>&1 # Machine rental daily income — 00:05 every day 5 0 * * * $PHP $SITE/scripts/run-cron.php online daily_payout >> $SITE/logs/cron-daily-payout.log 2>&1 # Forex bot daily income — 00:10 every day 10 0 * * * $PHP $SITE/scripts/run-cron.php online forex_payout >> $SITE/logs/cron-forex-payout.log 2>&1 # Social post publishing — every 5 minutes */5 * * * * $PHP $SITE/cron.php online social_publish >> $SITE/logs/cron-social-publish.log 2>&1 # Expire subscriptions — hourly 0 * * * * $PHP $SITE/cron.php online subscription_expiry >> $SITE/logs/cron-subscriptions.log 2>&1