February 25, 20169 yr 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
February 25, 20169 yr 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"));'
February 25, 20169 yr 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"));
February 25, 20169 yr Author Amazing what one line can do!!!!... Thank you very much, I have been through alot of stuff to get this going. Thanks again. John
February 26, 20169 yr Hm? This line just outputs whether the mbstring-extension is loaded or not it does not fix anything
Archived
This topic is now archived and is closed to further replies.