Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have installed php-pear in my server, but it does not work.

I tried to use: require("PEAR.php"); and it says:

Warning: require(): open_basedir restriction in effect. File(/usr/share/php/PEAR.php) is not within the allowed path(s): (/var/www/clients/client0/web1/web:/var/www/clients/client0/web1/tmp:/var/www/phpost.org/web:/srv/www/phpost.org/web:/usr/share/php5:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin) in /var/www/clients/client0/web1/web/a.php on line 10

Warning: require(/usr/share/php/PEAR.php): failed to open stream: Operation not permitted in /var/www/clients/client0/web1/web/a.php on line 10

Fatal error: require(): Failed opening required '/usr/share/php/PEAR.php' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/clients/client0/web1/web/a.php on line 10

I am using suPHP and Debian.

How I can fix it?

share|improve this question
5  
Have you read the warning messages? You are not allowed to read in that directory. Put pear in an other directory or add /usr/share/php to the list of allowed directories. – Sietse Nov 18 '12 at 11:01
But, I have done the same operation in another server and it works properly. How I can do for it allow to read in that directory? – Luis García Nov 18 '12 at 12:02
1  
Well, PEAR does work. You did something wrong. – Lightness Races in Orbit Nov 18 '12 at 12:44
1  
To be clear, I "favourited" this question only so that I may refer to Jack's excellent "stop being a help vampire" line in future. – Lightness Races in Orbit Nov 18 '12 at 12:44

closed as not a real question by Jack Maney, Lightness Races in Orbit, Michael Berkowski, Juan, David Nov 18 '12 at 18:32

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

http://www.mydigitallife.info/php-scripts-open_basedir-restriction-in-effect-error/

Whoever is running this server doesn't want you working in that folder. /usr/share/php/PEAR.php is where the PEAR config is and apparently there is something in that folder that isn't supposed to be made public.

It may work on some other server because the security (or some other restriction) is different. You say it's your server - so change it or understand why it shouldn't be 'required'.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.