Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Der Host erlaubt keine Ereignisse auf MySQL, was die beste Alternative ist

Als Jim im Kommentar. Versuchen Sie, Cron Job zu verwenden und stündlich Ihr PHP-Skript aufzurufen, ist meine alternative Antwort.

#!/usr/bin/env php
<?php
# This file would be say, '/usr/local/bin/run.php'
// code
echo "I'm CRON Script"

Fügen Sie eine Cron-Job-Befehlsstruktur hinzu:

Minutes [0-59]
|   Hours [0-23]
|   |   Days [1-31]
|   |   |   Months [1-12]
|   |   |   |   Days of the Week [Numeric, 0-6]
|   |   |   |   |
*   *   *   *   * home/path/to/command/the_command.sh

Befehlsbeispiel:

* 1 * * * php-path -f php-script-path &> /dev/null
* 1 * * * /usr/bin/php -f /usr/local/bin/run.php &> /dev/null

Berechtigung über CHMOD-Befehl hinzufügen.

chmod +x /usr/local/bin/run.php

Referenz:
Wie man einen Cron-Job erstellt mit PHP?
http://code. tutsplus.com/tutorials/managing-cron-jobs-with-php--net-19428