sseeley Posted November 11, 2013 Share Posted November 11, 2013 I am hoping that someone can help me. I have installed PEAR onto my Godaddy account, but I am not getting any luck when I am trying to get working. I have a really simply file to begin testing. <?php include ('/PEAR/Mail.php'); ?> When I run the file I get the following errors. Warning: include(/PEAR/Mail.php) [function.include]: failed to open stream: No such file or directory in /home/content/97/5783497/html/emailTest.php on line 2Warning: include() [function.include]: Failed opening '/PEAR/Mail.php' for inclusion (include_path='.:/usr/local/php5/lib/php:./PEAR') in /home/content/97/5783497/html/emailTest.php on line 2 PEAR is installed into /PEAR/ My PHP5.ini file has the following. cgi.fix_pathinfo = 1 include_path = .:/usr/local/php5/lib/php:./PEAR SMTP = relay-hosting.secureserver.net smtp_port = 25 Can any one suggest any help I would be really grateful. Regards Stuart Quote Link to comment https://forums.phpfreaks.com/topic/283788-pear-help/ Share on other sites More sharing options...
trq Posted November 11, 2013 Share Posted November 11, 2013 PEAR is installed into /PEAR/ Really? That seems a silly place to install it. You really installed it into the root of the filesystem? You didn't, or PHP would be able to find it there. Using the include statement you are using yoiu wouldn't even need to edit your include_path. First thing first, find where you actually installed PEAR to. Quote Link to comment https://forums.phpfreaks.com/topic/283788-pear-help/#findComment-1457840 Share on other sites More sharing options...
AaronClifford Posted November 18, 2013 Share Posted November 18, 2013 As far as I'm aware you don't need to specify the path like that, take a look at the check sheet for installation. http://pear.php.net/manual/en/installation.checking.php Quote Link to comment https://forums.phpfreaks.com/topic/283788-pear-help/#findComment-1458783 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.