pear php

Status
Not open for further replies.

kaval77

New Member
Messages
1
Reaction score
0
Points
0
hi I try to install pear php on my free hosting to install SOAP.
I can not find link for PHP Extension and Application Repository
can you guys install this on my shared server?
thanks
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
You have to install PEAR and any modules manually into directories in your own account. They do not have to be under public_html.

You then have to adjust the include path by using code like:

$inc_path = get_include_path();
set_include_path($inc_path . ':/home/username/php_mail');
require_once "Mail.php";

where Mail.php is a PEAR module I installed (along with the modules that comprise PEAR)

The modules you want cannot use functions that x10 has disabled. x10 will not enable them for you.
 
Last edited:
Status
Not open for further replies.
Top