• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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