16.04.2009, 15:33
I've made this «bug» happen in my own server, and I fixed it.
To fix this, follow these steps. I hope it helps:
1. Stop Apache Server
2. Go to php.ini and search for:
If this line contains «;» at the begining, remove it.
3. Set the value of «open_basedir» to «/var/www/vhosts/east-south.com/»
4. Start Apache server again
Check if its working now.
--------------------------------------------------------------------
That should fix all those problems because:
Says that the «base directory» or «minimum path» starts there.
By doing this, you say that you don't want PHP to access other folders (for example) inside vhost/ folder. It can only access the folders contained inside /east-south.com/.
I don't think I can help you any further.
To fix this, follow these steps. I hope it helps:
1. Stop Apache Server
2. Go to php.ini and search for:
Код:
open_basedir = ...
3. Set the value of «open_basedir» to «/var/www/vhosts/east-south.com/»
Код:
open_basedir = /var/www/vhosts/east-south.com/
Check if its working now.
--------------------------------------------------------------------
That should fix all those problems because:
Код:
open_basedir = /var/www/vhosts/east-south.com/
By doing this, you say that you don't want PHP to access other folders (for example) inside vhost/ folder. It can only access the folders contained inside /east-south.com/.
I don't think I can help you any further.