arbitrageur Posted February 28, 2015 Share Posted February 28, 2015 Hi,Im on ec2 and trying to install both mbstring and php-mysqli extenstion. I can seemingly can install either one, but not both. sudo yum install httpd24 php54-mysqld Works. But once I get mysqld installed, it conflicts with mbstring when installing that later. Any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/294959-installing-mbstring-and-mysqld-at-beginning-on-ec2/ Share on other sites More sharing options...
jeffreyappel Posted April 6, 2015 Share Posted April 6, 2015 Try running php -r 'dl("mysqli.so"); phpinfo();' | grep mysqli to check if the module load normaly with dl() function. As you are using Linux, change extension=php_mysqli.dll to extension=mysqli.so. In your php.ini you may want to uncomment ; extension_dir = "./" and put the correct path to your extensions. Also, enable enable_dl = On to use the dl() function to test. Quote Link to comment https://forums.phpfreaks.com/topic/294959-installing-mbstring-and-mysqld-at-beginning-on-ec2/#findComment-1508452 Share on other sites More sharing options...
requinix Posted April 7, 2015 Share Posted April 7, 2015 There is no php54-mysqld. Do you mean mysqli or mysqlnd? And you're saying sudo yum install php54-mbstring php54-whateverthatpackageisdoesn't work? What error messages are you getting? Quote Link to comment https://forums.phpfreaks.com/topic/294959-installing-mbstring-and-mysqld-at-beginning-on-ec2/#findComment-1508460 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.