• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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