[solved] open_basedir restriction

pardis

Well-Known Member
#1
Hello :

When my server switched to LS some website face to open_basedir restriction error . How can resolve this globally ?

Regards
 
Last edited by a moderator:

NiteWave

Administrator
#2
can you post the website's virtual host definition in httpd.conf ?
just open_basedir related part, like
<IfModule concurrent_php.c>
php4_admin_value open_basedir "usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/ph$
php5_admin_value open_basedir "/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
 

pardis

Well-Known Member
#4
Code:
    <IfModule concurrent_php.c>
        php4_admin_value open_basedir "/home4/androids/public_html:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp"
        php5_admin_value open_basedir "/home4/androids/public_html:/usr/lib/php:/usr/local/lib/php:/tmp"
    </IfModule>
 
Top