Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-26 Thread Leon Fauster via CentOS
Am 26.04.2019 um 09:38 schrieb Markus Falb : > > On 24.04.19 17:40, Benjamin Smith wrote: >> On Wednesday, April 24, 2019 3:44:04 AM PDT Leon Fauster via CentOS wrote: Am 24.04.2019 um 08:37 schrieb Benjamin Smith : > ... So I wrote a /cgi-bin script that works, takes the input, and

Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-26 Thread Markus Falb
On 24.04.19 17:40, Benjamin Smith wrote: > On Wednesday, April 24, 2019 3:44:04 AM PDT Leon Fauster via CentOS wrote: >>> Am 24.04.2019 um 08:37 schrieb Benjamin Smith : ... >>> So I wrote a /cgi-bin script that works, takes the input, and even runs >>> the ... >> >> Why not implementing this

Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-24 Thread Benjamin Smith
See responses below. On Wednesday, April 24, 2019 6:13:51 AM PDT Jonathan Billings wrote: > On Tue, Apr 23, 2019 at 11:37:51PM -0700, Benjamin Smith wrote: > > But... php-fpm has its own "tmp" directory, something like /tmp/systemd- > > private-RANDOM-php-fpm.service-RANDOM/tmp that the cgi-bin

Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-24 Thread Benjamin Smith
On Wednesday, April 24, 2019 3:44:04 AM PDT Leon Fauster via CentOS wrote: > > Am 24.04.2019 um 08:37 schrieb Benjamin Smith : > > > > CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache > > 2.4, php-fpm, all updated. > > > > I have a web-based app I've been developing for

Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-24 Thread Jonathan Billings
On Tue, Apr 23, 2019 at 11:37:51PM -0700, Benjamin Smith wrote: > But... php-fpm has its own "tmp" directory, something like /tmp/systemd- > private-RANDOM-php-fpm.service-RANDOM/tmp that the cgi-bin has no access to. > To be able to populate $_FILES in a way compatible with the rest of the >

Re: [CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-24 Thread Leon Fauster via CentOS
> Am 24.04.2019 um 08:37 schrieb Benjamin Smith : > > CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache 2.4, > php-fpm, all updated. > > I have a web-based app I've been developing for some time, and recently the > need to upload files of large size EG 1 GB or larger,

[CentOS] Systemd, PHP-FPM, and /cgi-bin scripts

2019-04-24 Thread Benjamin Smith
CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache 2.4, php-fpm, all updated. I have a web-based app I've been developing for some time, and recently the need to upload files of large size EG 1 GB or larger, has come up. So I wrote a /cgi-bin script that works, takes