Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-29 Thread Frank Gingras
You're referring to php *extensions*, to be clear. A module with httpd would be a DSO, such as mod_php. Further, httpd modules are not unloaded as such; they remain loaded for the entire life of every child process. Anyway, if your php extension can't be loaded for whatever reason, it would be

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-29 Thread Hemant Chaudhary
Hi Frank, When we start server which has mod_php then during it first dry run, it loads the module and deload the module. After successful completion of first dry run, it reads the configuration file second time and starts the apache server. During first dry run, dlopen() function loads the php

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-28 Thread Frank Gingras
What does "mod_php is not able to unload properly" mean in this case? Secondly, any reason why you're not using php-fpm with a threaded httpd mpm instead? On Wed, Jun 27, 2018 at 10:21 AM David Copeland wrote: > Okay, sorry, probably can't help then. I'm running Opensuse 42.3, Apache > 2.4.33

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread David Copeland
Okay, sorry, probably can't help then. I'm running Opensuse 42.3, Apache 2.4.33 (prefork) and mod_php 7.2.7. The one thing I forgot about when I originally switched from php 5 to 7 was the APACHE_MODULES variable in the file /etc/sysconfig/apache2, changing php5 to php7. But each os/distro likes

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread Hemant Chaudhary
Its NonStop (tandem) On Jun 27, 2018 7:35 PM, "David Copeland" wrote: > What platform/distribution are you running? > > On 27/06/18 06:09 AM, Hemant Chaudhary wrote: > > Hi, > > > > I was using mod_php of php-5.5.37 with apache-2.4.25 and it was > > working fine. I upgraded the php to

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread David Copeland
What platform/distribution are you running? On 27/06/18 06:09 AM, Hemant Chaudhary wrote: > Hi, > > I was using mod_php of php-5.5.37 with apache-2.4.25 and it was > working fine. I upgraded the php to php-7.2.5. But after upgrade, > mod_php is not able to unload properly.  > > Does anybody also

Re: [users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread Motty Cruz
have you install mod_php72? pkg info | grep "mod_php" mod_php72-7.2.6 if not you need to install it pkg install mod_php72 in httpd.conf LoadModule php7_module    libexec/apache24/libphp7.so I hope this help! Thanks, Mot On 06/27/2018 03:09 AM, Hemant Chaudhary wrote: > Hi, > > I was using

[users@httpd] PHP-7.2.5 with Apache-2.4.25

2018-06-27 Thread Hemant Chaudhary
Hi, I was using mod_php of php-5.5.37 with apache-2.4.25 and it was working fine. I upgraded the php to php-7.2.5. But after upgrade, mod_php is not able to unload properly. Does anybody also face the same issue. Thanks Hemant