• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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