• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be 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.

Scheduled Tasks: sh: /mkdir: No such file or directory

GGEder234

New Pleskian
Please help!

I set Scheduled Task, * * * * * php -q /var/www/vhosts/domain.com/httpdocs/234/100-100.php

I try to execute script with exec('mkdir /folder/') and get response sh: /mkdir: No such file or directory.

# php -v
PHP Warning: Directive 'safe_mode' is deprecated in PHP 5.3 and greater in Unknown on line 0
PHP 5.3.3 (cli) (built: Jul 12 2013 20:35:47)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
with the ionCube PHP Loader v4.2.2, Copyright (c) 2002-2012, by ionCube Ltd.

# uname -a
Linux 2.6.32-131.17.1.el6.x86_64 #1 SMP Thu Oct 6 19:24:09 BST 2011 x86_64 x86_64 x86_64 GNU/Linux
 
Code:
<?

$exec = "mkdir /tmp/fld1";
$a = exec($exec, $b, $c);

mail('[email protected]', 'cron mail subj 1', print_r($a,1)."--".print_r($b,1)."--".print_r($c,1));


$exec = "/bin/mkdir /tmp/fld2";
$a2 = exec($exec, $b2, $c2);

mail('[email protected]', 'cron mail subj 2', print_r($a2,1)."--".print_r($b2,1)."--".print_r($c2,1));

?>

Safe mode: OFF

Response: --Array () --127
 
Back
Top