Debian Tutorials

Debian Tutorials


Step by step tutorials showing you how to install and configure various applications and services on Debian based Linux distros.

April 2024
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

Categories


Installing suPHP

Ástþór IPÁstþór IP

suPHP is a tool for executing PHP scripts with the permissions of their owners. It consists of an Apache module (mod_suphp) and a setuid root binary (suphp) that is called by the Apache module to change the uid of the process executing the PHP interpreter.

1. Install suPHP

apt-get install libapache2-mod-suphp

2. Disable the php5 apache module

a2dismod php5

3. Restart Apache

/etc/init.d/apache2 restart

4. You can test if suPHP is working correctly by creating a php file containing the following lines:

<?php
system('id');
?>

The script will return user/group id and name. Make sure you set the file owner to a user/group with id greater than 99.

Comments 2
  • Ian
    Posted on

    Ian Ian

    Author

    Step 1.5 – If, like everyone else I know, you’re not using Debian’s default location (/var/www/) for your webpages, you also need to edit /etc/suphp/suphp.conf and change:

    ;Path all scripts have to be in
    docroot=/var/www/

    to, if you have them somewhere in people’s home directories:

    ;Path all scripts have to be in
    docroot=/home/


  • Max
    Posted on

    Max Max

    Author

    umask=0022 is also good to set