Results 1 to 3 of 3

Thread: phpList: ProcessQueue using Cron job

  1. #1
    Join Date
    Jul 2006
    Posts
    3

    Default phpList: ProcessQueue using Cron job

    Correction to the other advice about what the Cron command should be for processing queued messages in phpList on Bluehost:

    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
    I'm surprised this information appears nowhere else, and I was unable to Reply to existing threads about this.

  2. #2
    Join Date
    Apr 2008
    Location
    Morgan Hill, CA
    Posts
    873

    Default

    What was the title of the thread where you couldn't post a reply? I'll try to find it and, if I can, I'll merge this one with it. I don't see your post in the moderation queue.

  3. #3
    Join Date
    Jul 2006
    Posts
    3

    Default

    I wanted to post a reply to the thread titled "PhPList with Cron Job", but there several other similar threads that I could also not reply to.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •