Table of Contents
Origin
Problem location
Solution Solution
504 Error
About /usr/bin/env (high portability?)
nginx user
What is the relationship between scheduled tasks and Web operations?
Enlightenment
Home Backend Development PHP Problem What should I do if exec php cannot be executed?

What should I do if exec php cannot be executed?

Mar 01, 2021 am 09:34 AM
exec php

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.

What should I do if exec php cannot be executed?

#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);
Copy after login

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);
Copy after login

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);
Copy after login
  • 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);
Copy after login
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;

  1. 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;
  2. 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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles