nksky Posted February 25, 2016 Share Posted February 25, 2016 CentOS7 server running, Have installed LAMP and all is working correctly, Installed php-mbstring after some research, yum --enablerepo=remi install php-mbstring this showed the process as complete, but when I run Froxlor from my browser it tells me php-mbstring is not installed..also shows PHP version >= 5.3 5.4.16 rpm -qa php* returns Php-pear -1 .9.4 -21 .el7 .noarch Php –mysql -5.4.45 – 4.el7.remi.x86_64 Php –cli-5.4.45 -4 .el7 .remi .x86_64 Ph-gdp –bcmath -5.4.45 -4.el7 .remi .x86_64 Php -5.4 .45 -4.el7 .remi .x86_64 Php-gd-5.4.45-4.el7 .remi .x86_64 Php-common -5.4.45 -4.el7 .remi .x86_64 Php-pgsql -5.4.45 -4.el7 .remi .x86_64 Php-xml -5.4.45-4.el7 .remi .x86_64 Php-pdo-5.4.45-4.el7 .remi .x86_64 Php-mbstring-5.4.45-4.el7 .remi .86_64 Php-process-5.4.45-4.el7 .remi .x86_64 Any help greatly appreciated. Thanks J Link to comment Share on other sites More sharing options...
d00p Posted February 25, 2016 Share Posted February 25, 2016 now do the same in a php file you put in /var/www/froxlor/, e.g "info.php" and call it from the browser: <?php var_dump(extension_loaded("mbstring")); Link to comment Share on other sites More sharing options...
d00p Posted February 25, 2016 Share Posted February 25, 2016 It's installed fine, but is it enabled? Try something like the command below and give us the output It should be "bool(true)" or "bool(false)" (whether its loaded or not) php -r 'var_dump(extension_loaded("mbstring"));' Link to comment Share on other sites More sharing options...
nksky Posted February 25, 2016 Author Share Posted February 25, 2016 Thanks for coming onboard bool(true) John Link to comment Share on other sites More sharing options...
nksky Posted February 25, 2016 Author Share Posted February 25, 2016 Amazing what one line can do!!!!... Thank you very much, I have been through alot of stuff to get this going. Thanks again. John Link to comment Share on other sites More sharing options...
d00p Posted February 26, 2016 Share Posted February 26, 2016 Hm? This line just outputs whether the mbstring-extension is loaded or not it does not fix anything Link to comment Share on other sites More sharing options...
Question
nksky
CentOS7 server running, Have installed LAMP and all is working correctly, Installed php-mbstring after some research,
yum --enablerepo=remi install php-mbstring
this showed the process as complete, but when I run Froxlor from my browser it tells me php-mbstring is not installed..also shows
PHP version >= 5.3 5.4.16
rpm -qa php* returns
Php-pear -1 .9.4 -21 .el7 .noarch
Php –mysql -5.4.45 – 4.el7.remi.x86_64
Php –cli-5.4.45 -4 .el7 .remi .x86_64
Ph-gdp –bcmath -5.4.45 -4.el7 .remi .x86_64
Php -5.4 .45 -4.el7 .remi .x86_64
Php-gd-5.4.45-4.el7 .remi .x86_64
Php-common -5.4.45 -4.el7 .remi .x86_64
Php-pgsql -5.4.45 -4.el7 .remi .x86_64
Php-xml -5.4.45-4.el7 .remi .x86_64
Php-pdo-5.4.45-4.el7 .remi .x86_64
Php-mbstring-5.4.45-4.el7 .remi .86_64
Php-process-5.4.45-4.el7 .remi .x86_64
Any help greatly appreciated.
Thanks
J
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.