I sent in a support ticket only for them to tell me they have no idea what to do. I need to install two PHP PEAR packages. They are Mail-1.2.0 and Mail_Mime-1.8.2. Mail has been installed and seems to be working fine. The problem is Mail_Mime. It does not seem to work correctly I have no idea why.
As you can see going to http://sw6.us/phptest1.php gives an error. This file has the following code
As you can see we are requiring both packages. Mail.php and mime.php, giving us an error. Now as we take out the call for mime.phpPHP Code:<?php
require('/home2/mwtwoone/php/Mail.php');
require('/home2/mwtwoone/php/Mail/mime.php');
?>
http://sw6.us/phptest2.php Gives us a blank page with no errors. This file has the following code
What is wrong with the installation? I installed both packages straight from the cPanel.PHP Code:<?php
require('/home2/mwtwoone/php/Mail.php');
?>
I think this has something to do with the php paths. I have been working for hours now and can not find a solution, HELP!


