• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Open_basedir error - Blank website

L

LiderL

Guest
Hi all,

I have the following problems...
I have a dedicated server with centos 6.2 and plesk 10.4.4
I have a website on this server. On site frontend, I can not change the language. Shows only default language. I had solved this problem with disable open_basedir.
I installed server again. And if I disable open_basedir in domain php setting with "none" or "no value", shows website only blank pages.
I must, disable the open_basedir. I still get another error bask on website.
Who can explain very clearly, how can this blank website problem be solved?

I've done everything what read on the internet. I have all vhost.conf, httpd.conf. php.ini files changed but result was zero.
 
I have written here a week ago a problem. Received any response. There are no competent people to answer me?

This is problem after update (from 10.3.x to v10.4) occurred.

I've also discovered that, when I upload on my website index.php file, I get internal 500 error. When I upload files with index.html or .html extension, not a problem.
 
We have the same configuration - dedicated server with CentOS 6.2 and Plesk 10.4.4. After one of the recent MU's we are unable to turn off the openbasedir restriction while running PHP as an Apache module without get a blank white screen. Running PHP as FastCGI is still working fine.
 
Thank You for Your Reply.

I can not use FastCGI. Because if I enable Fastcgi, get on my website many errors. It must be fixed on Apache module.
But how?
 
We have the same configuration -
dedicated server with CentOS 6.2 and Plesk 10.4.4.
When i put in comfig from server on plan level, subscription level and domain level open_basedir to none
i get a blank white screen, nothing works.
In php.ini in etc -open_basedir is = blank

What to do?
Can anybody help?
Can anbody from Plesk staff simple write -How to configure the Plesk that open_basedir works on domain without value?

Pls,
it is time to do something

Juliusz
 
Disable openbase_dir site wide

To remove open_basedir in Plesk, please follow these steps:

Connect to your VPS using a shell (SSH) connection.
Change to the root folder of your VPS using the following command:
Code:
cd ...
Create a new file using the following command:
Code:
vi /etc/httpd/conf.d/zzz_openbasedir_removal.conf
Press the insert key and enter the following information:
Code:
<DirectoryMatch /var/www/vhosts/(.*)/httpdocs/>
php_admin_value open_basedir none
</DirectoryMatch>
Press escape (ESC) to exit insert mode.
Type :wq to save and exit the file.

run the following command on shell (SSH) to update the plesk config files
Code:
/usr/local/psa/admin/bin/httpdmng --reconfigure-domain <domain_name>
restart your web server again.
Code:
/etc/init.d/httpd restart

open_basedir should now be removed from Plesk.
 
Back
Top