Well, as you can see below, I have tried to research this problem through the forum, but I am still having grief, and even though I am trying to duplicate everything I am learning along the way, I can't get past the stage where once I follow the instructions below, and try to get back into phpList admin or anything else to do with phpList (such as un-subscribe a user) all I get are blank web pages.
What I am trying to do is send a web page by using HTTP/Request after initially trying to send an eMail with the following body;
[URL:http://www.mywebsite.com/newsletter.html?email=[email]]
1. PHPlist installation = 2.10.19
2. Pear package is installed at /usr/local/lib/php:/home/username/pear/HTTP/Request.php
3. I am using Request.php not the more recent Request2.php, as I noticed that Request2 can cause a similar problem of blank phpList web pages.
At the forum topic below, "liliplanet" was apparently able to get things to work as listed underneath, but I can't even get back into phpList/Admin to send an eMail because all I get when I try to log in is a blank web page.
So this is what I have followed/done...
http://forums.phplist.com/viewtopic.php?f=24&t=37153&p=89086
Changes have been made to list/admin/lib.php as follows as per http://forums.phplist.com/viewtopic.php?f=6&t=2658&start=75
replaced @include_once "HTTP/Request.php"; - (approx line 111) with ...
- Code: Select all
$origIncludePath = get_include_path();
set_include_path(get_include_path() . ':/usr/local/lib/php:/home/username/pear');
@include_once 'HTTP/Request.php';
set_include_path(get_include_path() . $origIncludePath);
replaced require_once "HTTP/Request.php"; - (approx line 590) with ..
- Code: Select all
$origIncludePath = get_include_path();
set_include_path(get_include_path() . ':/usr/local/lib/php:/home/username/pear');
require_once "HTTP/Request.php";
set_include_path(get_include_path() . $origIncludePath);
added the following to config.php
(Now, I am actually not sure what config.php file this is. There are so many config.php and configure.php in the phpList installation.

I opted for the config/config.php file, but that really does not look to be correct.
- Code: Select all
ini_set('include_path',ini_get('include_path').':/usr/local/lib/php:/home/username/pear');
So is anyone able to help me get this thing working please as I am on a strict deadline and this is just driving me crazy?
Thanks kindly.