Hello all:
I am trying to call the processqueque file for PHPlist (http://www.phplist.com) from the command line and can't seem to make it work. I am running PHP 4.2.2 as an apache module. CLI is not installed.
Here is what I have tried, along w/the results:
VIA LYNX
lynx --dump http://www.mysite.com/lists/admin/processqueue.php&login=admin&password=pwd > /dev/null
Output:
[4] 28469
[5] 28470
[root@sv2 admin]#
Invalid Request
<I hit return>
[4] Done lynx --dump http://www.mysite.com/lists/admin/processqueue.php
[5] Done login=admin
But the script is not executed.
VIA WGET
wget -q http://www.mysite.com/lists/admin/processqueue.php&login=admin&password=pwd
Output:
[4] 28567
[5] 28568
[root@sv2 admin]#
<I hit return>
[4] Done wget -q http://www.mysite.com/lists/admin/processqueue.php
[5] Done login=admin
PHPlist docs say to run the url as:
http://www.mysite.com/lists/admin/?p=processqueue.php&login=admin&password=pwd but when I do that the page just comes up in lynx...and no mail is sent, even though I am requesting output to /dev/null.
Any suggestions?