suPHP is a tool for executing PHP scripts with the permissions of their owners.
8
votes
1answer
190 views
Implementing log in alongside suPHP
How can a log in like feature be designed to use suPHP's file permissions. For example, if I have a website at www.example.com and the following two users with their own home directories, each with a ...
3
votes
1answer
208 views
Problem with imagick module - PHP
I have a strange error in the image magick php module.
ImagickException [ 1 ]: Postscript delegate failed '/tmp/magick-XXxIARsr': wd7C.cache @ error/pdf.c/ReadPDFImage/638
From what it seems it's a ...
1
vote
1answer
104 views
How do I disable suphp on ubuntu 10.04 server
I have put together a small ubuntu 10.04 server with apache2 and php for use only for testing purposes. I am finding suphp keeps getting in my way. Doubtless this is a useful tool for security etc, ...
1
vote
1answer
43 views
Is it possible to restrict all server requests to one php script
For the moment assume that I have access to my own server so I can write whatever index.html file I want. Is it possible to only allow myself to call one single php script on the server. For example ...
1
vote
2answers
48 views
Get meaningful information when fopen() fails (PHP/suPHP)
How do I get something more meaningful than 'FALSE' when I can't open a file.
$myFile = "/home/user/testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
When I use the die ...
1
vote
1answer
92 views
Trying to run php files which have been created by svn hook with owner nobody, suphp enabled
I have created a svn repository hook which will update a working copy on the server (main dev version) depending on directory. This is now working properly, but only if the working copy is owned by ...
1
vote
1answer
519 views
What is the simplest way to check if PHPSUEXEC or SUPHP is enabled, with a php script
I need to check if PHPSUEXEC or SUPHP is enabled. How can I do that within a php script?
0
votes
0answers
10 views
proper installation and use of suPHP
I just installed suPHP and now need a little help setting up some environment variables to make it work with my web directory structure.
In the suPHP.conf I have a standard array of global options, ...
0
votes
0answers
5 views
suPHP setting user/group to virtual host and using docroot
I am trying to get suPHP working, i followed tutorials and seem to have it installed correctly.
now my issue is this
1) i set docroot in the suphp.conf file, but its set to /var/www by default. The ...
0
votes
2answers
50 views
Using PHP to load html page inhibits any attempt at using up to date css file
I have user permissions on my .html files other than 0744. They are actually set to 0700 so to get around this, I have suPHP set up, and I use a load.php file to access and load all the files. The ...
0
votes
1answer
23 views
Is it possible to use suPHP to return an entire HTML file?
For the sake of argument, lets assume that I can't change my file permissions. Furthermore, assume all my .html files have the permission 0700 like so:
-rwx------ 1 user user 0 2012-01-09 19:50 ...
0
votes
1answer
37 views
Set up a webserver for multiple users and makes PHP scripts run under their account (with their permissions)
I'm setting up an Apache 2.2 webserver for multiple users (having the "developers" profile).
They need to execute PHP scripts/applications (both home-made and acquired) and run
I tried using ...
0
votes
1answer
41 views
Find values of suPHP variables (ie. ${HOME}, ${USERNAME}, ${GROUPNAME}…)
I keep getting 500 (Internal Server Error) and I suspect this is because I am setting docroot to docroot=${HOME}*. I want to 'peek under the hood' because I suspect ${HOME} is what is causing the ...
0
votes
1answer
36 views
Need Apache to ignore options in .htaccess
I run a hosting service for student at my our faculty. We run PHP with suPHP and for security we need symlinks to be set to "SymLinksIfOwnerMatch".
This has the very unfortunate error that if people ...
0
votes
0answers
82 views
how to check if my shared hosting has suexec or suphp
I need to check if my shared host has suexec or suphp. I found this documentation:
http://www.alain.knaff.lu/howto/PhpSuexec/
At the very end of this document there is a test. When I run the test, it ...
0
votes
0answers
176 views
Ubuntu 10.10, PHP 5.3.3, and suPHP: New folder permission is set to 700 instead of 755, uploaded file is 600 instead of 644 by the PHP script
I am using Ubuntu 10.10 as my Desktop Development platform for my main PC. I have a problem after installing suPHP. Before, when new folder is created via PHP script by executing
mkdir("newfolder", ...
0
votes
1answer
345 views
How to enable mod_rewrite in php.ini on shared hosting
I recently hosted my website in shared hosting the sites mod_rewrite is not working. I there anything I have to add in php.ini file to enable the mod_rewrite option in php.ini file.
0
votes
1answer
77 views
smarty and suphp permissions - saving as different user
Right now i have to give 777 permission to the directory where files are saved and instead of saving it as "user1" is saving it as apache
-rwxrwxrwx 1 apache apache 6865 Aug 30 17:20 ...
0
votes
2answers
134 views
suPHP using unbuffered output?
I have a script on a shared host that uses suPHP. I need unbuffered output (so I can flush before starting a lengthy subroutine) but can't find anyway to get it working, so my flush calls basically ...
0
votes
3answers
466 views
suPHP execute PHP script as root
I have created several websites. Now I need to perform root tasks. I created a webplatform and installed. root owns all scripts in /var/private-www/ and they are chmodded (0777). In ...
0
votes
0answers
358 views
php.ini with suPHP in .htaccess
My server uses suPHP and so each website has it's own php.ini file. My host recommended adding the following in my .htaccess file:
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/user/public_html
...
0
votes
0answers
75 views
0
votes
1answer
187 views
php ‘apache_note’ function whilst SUPHP is active
I am using maxminds geoip apache mod extention. It requires the php function 'apache_note'. However while suphp is active I am unable to access the function.
Ideally I would like to use suphp as I ...
0
votes
1answer
210 views
suPHP / PHP scrip timeout
After my host enabled suPHP, a previously working script has been timing out after ~3min (it varies, but the script has not run for more then 3, AFAIK).
The odd part is, the script is not throwing any ...
0
votes
2answers
129 views
move_uploaded_files works with suPHP, but not DSO
i have a dedicated server with one site. i have DSO enabled. i have to have it enabled as suPHP is a serious resource hog. the load time between DSO and suPHP is night and day.
i have an issue with ...
0
votes
1answer
173 views
Read If-Modified-Since header in PHP CGI
My PHP script depends on being able to read the value of the If-Modified-Since header (yes, I know how to do this).
It worked correctly when I used PHP as mod_php, but now that I've switched to suPHP ...