• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

How to get rid of php_admin_flag / disable mod_php

S

Swift42

Guest
Hi there!

If you want to disable mod_php in Plesk 7.5.4 (e.g. because you want to switch to cgi/fcgi), there is a problem in httpd.include:

<Directory "/var/www/vhosts">
AllowOverride All
Options SymLinksIfOwnerMatch
Order allow,deny
Allow from all
php_admin_flag engine off
</Directory>

<Directory "/usr/lib/mailman">
AllowOverride All
Options SymLinksIfOwnerMatch
Order allow,deny
Allow from all
php_admin_flag engine off
</Directory>

SWsoft has forgotten to encapsule the php_admin_flag with <IfModule mod_php4.c> :-(

If found no elegant way to get rid of the php_admin_flag.
The only thing that worked:
I patched /opt/psa/admin/sbin/websrvmng
I opened the binary with the editor joe, switched to overtype-mode (important!) and searched for the above config. Then I replaced the first p of the two php_admin_flag-directives with a "#" sign, so Apache will treat this as a comment.

Not very clean, but it works.
 
Back
Top