Yeah, something changed my php.ini as follows:
; Directory in which the loadable extensions (modules) reside. ; http://php.net/extension-dir extension_dir = "./" ; On windows: ; extension_dir = "ext" extension_dir = "/etc/php.d"
This directory has a bunch of .ini files, so I changed it to the location of the .so files:
; Directory in which the loadable extensions (modules) reside. ; http://php.net/extension-dir extension_dir = "./" ; On windows: ; extension_dir = "ext" ; extension_dir = "/etc/php.d" extension_dir = "/usr/lib64/php/modules/"
This did the trick!
Thanks to all of those who contributed! Frank M. Ramaekers Jr. Systems Programmer; MCP, MCP+I, MCSE & RHCE American Income Life Insurance Company Phone: (254) 761-6649 Fax: (254) 741-5777
-----Original Message----- From: centos-bounces@centos.org on behalf of Frank Cox Sent: Tue 10/27/2015 7:34 PM To: centos@centos.org Subject: Re: [CentOS] phpMyAdmin mbstring extension is missing
On Tue, 27 Oct 2015 19:19:42 -0500 Frank M. Ramaekers wrote:
Yes, it does in /usr/lib64/php/modules/
So what you actually meant to say is, no it doesn't exist in /etc/php.d.
/etc/php.d != /usr/lib64/php/modules.
I think you found your problem.