• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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