What should I do if exec php cannot be executed?
Solution to the problem that exec php cannot be executed: 1. Modify the first line of the yii file to directly specify the php interpreter; 2. Modify the exec calling method to directly specify the php interpreter.
#The operating environment of this article: Windows 7 system, PHP version 7.1, Dell G3 computer.
Why can't php exec be executed?
Origin
There is a scheduled task. I want to click to start it on the OSS background management page, but I have tried several methods but it doesn’t work; no matter system or exec (manually executing it on the shell command line, there is no problem) ); Initially I suspected a permission issue with the Web Server nginx user, but later found that the environment variable could not find the php executable file (because the nginx user is a restricted user);
Problem location
exec("/home/app/example/api/app/yii demand/virtual {$id}", $output); print_r($output);
and above After the script is executed, only Array()
is output. Obviously, the business code is not executed (the first line of the business code is output);
// http://oss.example.com/index.php?r=demand/demand-ip/msg&id=1929 点击后执行 exec("/home/app/example/api/app/yii demand/virtual {$id} 2>&1", $output); print_r($output);
There is an error output after the above script is executed: Array ([0] => /usr/bin/env: php: No such file or directory )
;
/usr/bin/env: php
This The sentence comes from the first line of the yii file #!/usr/bin/env php
, which is intended to indicate where the php script interpreter that executes the yii file is; but the error output is /usr/bin /env: php: No such file or directory
It means that php cannot be found;
[Recommended learning: "PHP Video Tutorial"]
Solution Solution
- Solution 1: Modify the first line of the yii file to directly specify the php interpreter;
is changed from#!/usr/bin/env php
to# !/usr/local/bin/php
, that is, directly specify the location of the php interpreter (you can also modify it when the code is released); - Option 2: Modify the exec calling method and directly specify the php interpreter.
exec("/usr/local/bin/php /home/app/example/api/app/yii demand/virtual {$id} 2>&1", $output); print_r($output);
- Note: In actual execution, there are still some problems with the exec command, see "504 Error" below;
504 Error
- When the exec time is too long (such as more than 60 seconds), a 504 error (Gateway Timeout) will appear on the page;
- Need to redirect the standard output and standard error, and then the background process will Execute the command, and the processing process number will be output on the page;
$cmd = '/usr/local/bin/php /home/app/example/yapp/yii demand/finish 2057'; $pid_file = 'msgrepeat.pid'; $exec_cmd = sprintf("%s > /dev/null 2>&1 & echo $! > %s & cat %s", $cmd, $pid_file, $pid_file); exec($exec_cmd);
About /usr/bin/env (high portability?)
- Why is it better to use “#!/usr/bin/env NAME” instead of “#!/path/to/NAME” as my shebang?
- How does /usr/bin/env know which program to use?
nginx user
For security reasons, the nginx user's shell is usually set to /sbin/nologin
What is the relationship between scheduled tasks and Web operations?
The relationship between scheduled tasks and click operations on the OSS background management page has not been handled well;
- Two processing methods of the yii framework console and web;
The issue of how to improve the testability of crontab;
The issue of how to improve the crontab user experience;
The issue of how to reasonably reuse crontab tasks and API (Controller/Action) code; - Foreground and backend The way to share Controller/Action;
Or the problem of conveniently sharing code libraries between multiple projects;
Enlightenment
- php-fpm does not work exec, system, shell_exec, only CLI;
- PHP exec() does not run all commands;
The above is the detailed content of What should I do if exec php cannot be executed?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
