Correction to the other advice about what the Cron command should be for processing queued messages in phpList on Bluehost:
I'm surprised this information appears nowhere else, and I was unable to Reply to existing threads about this.Code:/ramdisk/bin/php5 -c/FullPathTo/config.php /FullPathTo/admin/index.php -pprocessqueue ; The command above runs the CGI version of PHP, which produces HTML output, which is not what you want. ; The command below runs the CLI version of PHP, which produces Text output, which is what you want. /ramdisk/bin/php5-cli -c/FullPathTo/config.php /FullPathTo/admin/index.php -pprocessqueue


