On Sat, 2007-01-27 at 14:26 +1300, Gordon Stewart wrote: > The error message is :- > > Quote: > Fatal error: main() [function.require]: Failed opening required > 'Mail.php' (include_path='.:/usr/local/lib/php') in /hermes/web09/ > etc... > > Does the error message mean I need to find the exact pathname for the > PEAR files ?
I would guess, that the PEAR package, Mail, is not installed on the server. The default install of PEAR does not include many of the available PEAR packages. If you have command line access on the server (like SSH/telnet), and the server is *nix or *bsd based, you can check if it is installed by doing from the command line: $pear list This will list the PEAR packages that are currently installed on the server. If it is not installed, you will need to have root access to install it. If you have root access, you can do the following: pear install Mail -- OR -- pear install --alldeps Mail The first one will only install the Mail package. The second will install all the other dependencies (like Net_Socket, Auth_SASL, and Net_SMTP). HTH, -- Doug Registered Linux User #285548 (http://counter.li.org) ---------------------------------------- Random Thought: Kiss me twice. I'm schizophrenic.
