• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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