• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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