• 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.

Problems configuring virtual host names on my plesk dedicated server

O

oneilch

Guest
I have setup two websites setup in plesk mydomain1.com and mydomain2.com, they are both set up to run php files.
/var/www/vhosts/mydomain1.com/httpdocs
/var/www/vhosts/mydomain2.com/httpdocs
vhost.conf for mydomain2.com
DocumentRoot /var/www/vhosts/mydomain1.com/httpdocs/cms
<Directory /var/www/vhosts/mydomain1.com/httpdocs/cms>
<IfModule sapi_apache2.c>
php_admin_flag safe_mode Off
php_admin_value register_globals 0
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value allow_call_time_pass_reference 0
</IfModule>
<IfModule mod_php5.c>
php_admin_flag safe_mode Off
php_admin_value register_globals 0
php_value magic_quotes_gpc 0
php_value magic_quotes_runtime 0
php_value allow_call_time_pass_reference 0
</IfModule>
</Directory>
However, after pointing the home directory for mydomain2.com using:
Firstly - vhost.conf to over the original virtual hosting specifications created by plesk
And
Secondly using symbolic links:
ln –s /var/www/vhosts/mydomain1.com/httpdocs/cms httpdocs
/var/www/vhosts/mydomain2.com/httpdocs -> /var/www/vhosts/mydomain1.com/httpdocs/cms
In both cases when I go to mydomain2.com from my browser the php files are being forced to download to my local machine and are not compiling from the server.
Any idea as to what is causing this and how it can be to resolved?
Any help would be greatly appreciated.
Thank You
 
Back
Top