Home Backend Development PHP Problem What should I do if mac nginx does not parse php?

What should I do if mac nginx does not parse php?

Jul 23, 2021 am 10:02 AM
nginx php

The solution for mac nginx not parsing php: 1. cp a new file with the correct name; 2. Execute the command "php-fpm --fpm-config..."; 3. cp a file named www .conf file; 4. Kill the Solution process.

What should I do if mac nginx does not parse php?

The operating environment of this article: macOS10.15 system, PHP7.1 version, MacBook Air 2019 computer

mac nginx does not parse php what to do?

The pitfalls encountered by mac when deploying php under nginx

I was asked by someone to help them deploy a website, and then I wanted to debug it in the local nginx first. At first, when I opened the page, it showed 403. I had seen this before, and it was a permission issue with nginx. After changing the permissions, I found that when I accessed the PHP page, I downloaded it directly without parsing. I remembered that my computer might not have a PHP environment, so I downloaded PHP. Then still the same problem. In short, because I am not very familiar with PHP (I used software such as xampp before), it took me a while to get it done.

The first thing to understand is that nginx itself cannot handle PHP. It is just a web server. When the front-end requests PHP, nginx needs to send the interface to the PHP interpreter for processing, and then return the result to the front-end. Generally, nginx sends the request to the fastcgi management process for processing. For example, the configuration in nginx:

location ~ \.php$ {
    root           html;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;#这里原来不是$document_root,搞得我很蒙,还好网上查到改好了,不然会报file not found
    include        fastcgi_params;
}
Copy after login

So to start a fastcgi, php-fpm is used here. It is a php fastcgi manager and is only used for the php language (the old version of php needs to download php-fpm separately. The php-fpm I use has integrated this).

There are a lot of strange questions here.

  • First time running php-fpm

failed: /private/etc/php-fpm.conf file not found,

Solution: But there is a php-fpm.conf.default file in this directory, so cp a new file with the correct name

  • Run php-fpm for the second time

Failed: Cannot find /usr/var/log/php-fpm.log

Solution: There is no such directory at all. I changed it in the conf file but it has no effect. , I have no choice but to execute php-fpm through the following command (I will use this command to execute later)

php-fpm --fpm-config /private/etc/php-fpm.conf  --prefix /usr/local/var
Copy after login
  • Run php-fpm for the third time

Failed: No pool defined. at least one pool section must be specified in config file
Copy after login

Solution: Go to the /etc/php-fpm.d/ directory and there is a file www.conf.default, cp a file named www.conf

  • Fourth Run php-fpm for the first time

Failed: The port is occupied

Solution: Kill this process

sudo lsof -i tcp:9000#Find the occupied port Process number of port 9000

kill -9 port#Kill!

  • Run php-fpm for the fifth time

## Success!

##Supplement:

There is a little difference when configuring on nginx. On the mac, php-fpm directly listens to the 9000 port, but on the server, it listens to php7.0. -fpm.sock but socket file, this method may be faster, so you need to change

fastcgi_pass 127.0.0.1:9000;
Copy after login

in the php configuration on nginx to:

fastcgi_pass unix:/run/php/php7.0-fpm.sock;
Copy after login

to successfully run php

Recommended study: "

PHP Video Tutorial"

Continue to add

A very interesting thing, I want to upload a video of 27m, nginx directly reported 413 Request Entity Too Large, but I did not set it...

Add it to the nginx configuration (set-enabled/default)

server {
    ...
    client_max_body_size 80m;
    ...
}
Copy after login

Reread the configuration and restart the server

nginx -s reload
service nginx restart
Copy after login

Then you have to modify php.ini and modify two configurations in it

upload_max_filesize = 80M
post_max_size = 80M
Copy after login
Then turn off the php-fpm process and restart it~

ps: Teacher He is really I haven’t researched it at all...mp4 cannot be uploaded, but this type is not added to the system. I have to find this myself...uncomfortable:(

note: It is now more recommended to use apt under ubuntu. It’s not apt-get…so, it’s time to change!

The above is the detailed content of What should I do if mac nginx does not parse php?. 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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 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)

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.

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

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.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

See all articles