• 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!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

How to make suPHP work with Plesk 8.6 (debian based)

I folowed your guide on my server but when I try to 'apache2ctl restart' it says:

Syntax error on line 400 of /etc/apache2/apache2.conf:
Invalid command 'php_admin_flag', perhaps mis-spelled or defined by a module not included in the server configuration


Am I missing something?
 
I removed the 'php_admin_flag engine on' line and it started.
How can I check if everything works correctly?
 
I removed the 'php_admin_flag engine on' line and it started.
How can I check if everything works correctly?

Simple, create a php script that creates a file, quick example :

$f = fopen ("test.txt", "a");
fputs($f, "it's working !");
fclose($f);

Now, if you check 'test.txt' it should be setuid/guid of the 'user' of the domain.
 
Back
Top