• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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