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

php extensions vhost.conf

N

nc001

Guest
Hi i want to add an php execution extenstion to an vhost.
I´ve create a file called:
/var/www/vhost/xx.xxxxx.xx/conf/vhost.conf
with the following contents:
Code:
<VirtualHost 11.11.11.11:80>
	<Directory /var/www/vhosts/xxx.xxx.xxx/httpdocs>
	<IfModule mod_php4.c>
		AddType text/plain .php .php4 .php3 .phtml .inc
  		php_admin_flag engine off
	</IfModule>
	</Directory>
	<Directory /var/www/vhosts/xxx.xxxx.xxx/web_users>
	<IfModule mod_php4.c>
		AddType text/plain .php .php4 .php3 .phtml .inc
		php_admin_flag engine off
	</IfModule>
	</Directory>
</VirtualHost>
If added .inc as you can see, but it wont work. :(
It would be cool if anybody could help me!
Thx
 
what are you trying to do? should the .inc be seen as a php-file or not?

If not, why not just disable php for a domain in Plesk? Then .php and .inc are just text files

if yes, why do you turn of the php-engine in your statement?

According to my httpd.conf the correct type for php files seems to be AddType application/x-httpd-php and not text/plain
 
This is how the httpd.include in the directory (subdomain) looks like.
I copied the content into vhost.conf and just added .inc to the line.
cat http.include > vhost.conf
But PHP works fine. Just the inc´s are not parsed "*compiled*" by php.
 
run /usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=<domain_name>

and then restart apache
 
Back
Top