PEAR installation?

Status
Not open for further replies.

nerdpowah23

New Member
Messages
14
Reaction score
0
Points
0
Okay, so I just uploaded PEAR's Base System and the Validation package. I added this php_value include_path ".:/www/farcry/PEAR" for the include path, but when I try and load the page. I get a Internal Service error. What am I doing wrong?

http://codingexperiments.pcriot.com/

---------- Post added at 03:05 AM ---------- Previous post was at 03:04 AM ----------

I added the include path to my htaccess file.
 

MaestroFX1

Community Advocate
Community Support
Messages
1,577
Reaction score
60
Points
0
Hello!
Check the CHMOD permissions for folders and files inside public_html, they should be 755 and 644.
Did you add RewriteBase / in your .htaccess file?
 

nerdpowah23

New Member
Messages
14
Reaction score
0
Points
0
I did as you suggested, nothing. My .htaccess file looks as such

RewriteBase /
php_value include_path ".:/home/farcry/PEAR"
 

MaestroFX1

Community Advocate
Community Support
Messages
1,577
Reaction score
60
Points
0
Hello again!
Unfortunately,it looks like php_value directives are disabled on free hosting servers and you may need to upgrade to x10premium if there are more such directives in your .htaccess.
But,if that is not the case, then you may use
-----------------
ini_set("include_path", "../PEAR/");
-----------------
in your PHP pages.
Also, note that PEAR folder can't be inside public_html as they need executive permissions.

x10premium : http://x10premium.com/hosting.php

Thank you for your cooperation!

~MaestroFX1
 
Status
Not open for further replies.
Top