• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

suexec -

D

doci

Guest
Hallo

I have probs with suexec and cgi

log suexec :
uid: (10008/sambatec) gid: (10001/10001) cmd: hello.cgi
command not in docroot (/usr/local/php5/bin/php)

Who is the directory to allow, or user rights?

sorry my Engl. is not good.

thx for help

by DOCI
 
Can you post the first lines of the script here? It's a PHP script?
 
Hallo

its a CGi and a PHP Sctipt

Cgi Script

#!/usr/bin/perl -w
print "Content-type: text/html\n\n";
print <<"EOF";
<HTML>
<HEAD>
<TITLE>Hello, world!</TITLE>
</HEAD>
<BODY>
<H1>Hello, world!</H1>
</BODY>
</HTML>
EOF

And the PHP5 Script over CGI
<?php
echo phpinfo();
?>

thx

DOCI
 
It's normal for suexec to deny access, because you try to execute a command outside the permitted directories. Looking at the script above... Why do you want to do this?
 
Hi there!

in what directory the scripts are located exactly? Plesk has it's own suexec that allows to execute scripts that are in /home/http/vhosts (or /usr/local/psa/home/vhosts for FreeBSD) only.
Also please note that symbolic links to cgi scripts don't work for security reasons..
 
Back
Top