Questions tagged [fpm]

FastCGI Process Manager - an alternative PHP FastCGI implementation with some additional features

PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites.

More information can be found on http://php-fpm.org.

503 questions
0
votes
0 answers

openssl version check and upgrade in php-fpm server

I have a server where php scripts are served by php-fpm and when I see phpinfo file, openSSL version is - OpenSSL/0.9.8b and if I log into the terminal and see - it is OpenSSL 1.0.2o 27 Mar 2018. I have a script which I run only through terminal.…
Manojkumar
  • 1,351
  • 5
  • 35
  • 63
0
votes
1 answer

How to set up php-fpm multithreading work?

php-fpm config : pm = dynamic pm.max_children = 50 pm.start_servers = 20 pm.min_spare_servers = 10 and this is nginx config: root /var/www/html; index index.html index.htm index.nginx-debian.html; server_name _; location…
Jinnrry
  • 405
  • 1
  • 5
  • 18
0
votes
0 answers

PATH_INFO in $_SERVER always empty - NGINX + FPM 7.3 + Ubuntu 18.04

I am deploying my web application at DigitalOcean. My environment is: Ubuntu 18.04, PHP + FPM 7.3, NGINX. My routing system is based on the $_SERVER PATH_INFO, but it only returns empty, so I can't access my routes. I already researched the solution…
galloleonardo
  • 144
  • 10
0
votes
1 answer

nginx not opening index.php

I'm trying to reach my index.php file on localhost / other-40.umwelt-campus.de but instead of calling the page it's downloading an empty file.. Even if I downloaded php fpm and configured it. The file is at:…
temp
  • 519
  • 7
  • 18
0
votes
1 answer

php-fpm show script instead of execute them

I'm installing sympa 6.2.42 on a ubuntu server 18.04 with php 7.2 and fpm and apache 2.4.29 (installed with official packages) Sympa is installed from the source. My virtual host under apache should normally run a fcgi script with fpm. The problem…
user4153231
0
votes
2 answers

Nginx & PHP-FPM - download size is limited to ~3MB

I have a CSV Download, with Docker, Nginx and PHP-FPM, everything runs fine, until downloads gets larger then 2-3 MB. The generated CSV files exists in the php container (in my tmp directory /var/www/symfony/var/tmp/... and looks fine), but Nginx…
ABSimon
  • 651
  • 1
  • 6
  • 18
0
votes
1 answer

Heroku Shield: no ps:exec?

I have installed nextcloud successfully on heroku, and then to heroku shield. I'm having some issues trying to diagnos my app errors?! Mostly becuase I do not have heroku ps:exec instead I only have: heroku run bash I can see they are NOT the same…
Eric Wanchic
  • 2,046
  • 1
  • 23
  • 26
0
votes
1 answer

PHP 7.2 - FPM - NGINX - Can't get a php error log outputted no matter what I do

One of my endpoints returns 500 - Server error. I can't configure the system to show me where the crash is. I've done this: in /etc/php/7.2/fpm/php.ini php_admin_flag[log_errors] = on; php_admin_value[error_log] =…
JasonGenX
  • 4,952
  • 27
  • 106
  • 198
0
votes
0 answers

FPM - WD - LPD: POWL as Listpopup to choose a record and then return it

The situation is like this: We have a POWL, where I added a toobar-button. The click on that button opens a FPM-POWL, which I created with the help of this link https://sapcodes.com/2016/03/25/powl-in-fpm/.... (INFO: This POWL takes it's data from a…
icbytes
  • 1,831
  • 1
  • 17
  • 27
0
votes
1 answer

Cannot install php7.2-fpm on the latest Ubuntu "18.04.2 LTS (Bionic Beaver)"

It looks like PHP 7.2 now comes out of the box on Ubuntu 18.04 but there are 2 versions: 7.2.3-1ubuntu1(base) and 7.2.15-0ubuntu0.18.04.1(security). When I try run apt install php7.2-fpm I get: # apt install php7.2-fpm Reading package lists...…
Costas
  • 442
  • 2
  • 7
  • 12
0
votes
1 answer

phpdismod / phpenmod -s parameter

I would like to know the difference when using phpdismod/phpenmod with and without the -s parameter. Wasn't able to find a documentation or man-page about this command(s). I've already understood that I can differ between php-versions and SAPIs,…
Sascha
  • 615
  • 1
  • 9
  • 20
0
votes
1 answer

use FPM options in EASYBUILD for pakaging

I make rpm packages by easybuild below command module load fpm eb --package Perl-5.20.1-GCC-4.9.2-bare.eb --robot now suppose I want to use some of FPM options(you can see them by "fpm -h") . for example by "--rpm-group" in fpm I can set a group…
0
votes
1 answer

PHP-FPM Always returns 200 response code regardless PHP errors

PHP-FPM Always returns 200 response code regardless PHP errors. php container: display_errors = Off log_errors = On httpd container: SetHandler …
mahnunchik
  • 995
  • 5
  • 26
0
votes
1 answer

Php doesn't kill process

I'm configuring a new server to run a wordpress in the latest version. After some time runing very fine, all request start to return 504 timeout. I checked all logs from nginx and php, no error. After run service php7.2 status I found this…
Andre Trevas
  • 51
  • 10
0
votes
1 answer

Php-fpm still logging my error even when using catch

Php-fpm error log file is still logging my error even using try-catch $NUM_OF_ATTEMPTS = 100; $attempts = 0; do { try { $db = new SQLite3('proxies/socks5.db'); $results…
Thiplol
  • 165
  • 1
  • 1
  • 13