• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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