Es geht! Es geht! )
Ich hatte testweise zwei Zeilen in wp-cron eingefügt, das war Käse:
PHP
function wp_cron_hourly_exec() {
do_action('wp_cron_hourly');
do_action('/wp-content/plugins/postie/get_mail.php');
do_action('postie/get_mail.php');
}
Hier http://foobla.wigbels.de/2005/07/15/pos…-cron-aufrufen/ gibt's die Lösung:
PHP
//////////////////////////
// these execute the various hooks
function wp_cron_15_exec() {
file_get_contents('http://deinblog.de/wp-content/plugins/postie/get_mail.php');
do_action('wp_cron_15');
}
Im obigen Link ist ein kleiner Fehler, dort wird der Pfad zur get_mail.php mit " eingefasst, müssen natürlich Hochkommata sein, wie hier gepostet.
Dank an Norbert Wigbels für die Zeile, die mir fehlte :D
VG Eberhard