By kimblim
I just upgraded my ubuntu from 21 to 22, and everything seemed to go pretty well except for one thing. I have two PHP websites that use MySql databases, but I can’t get PHP to talk to MySql. Both services are up and running, but MySql is not listed when I do a php_info()
.
I went into /etc/php/7.4/fpm/php.ini
and uncommented the following line:
extension=mysqli
and restarted php using
sudo service php7.4-fpm restart
which returned no errors. It also didn’t change anything in the output from the php_info()
…
Am I missing something completely obvious here?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Hi there,
Have you tried also installing the PHP MySQL extension before uncommenting the line in the php.ini
file?
apt install php7.4-mysql
Let me know how it goes!
Best,
Bobby
Hi @kimblim,
The MySQLI extension is to let your PHP connect to MySQL and execute actions like CREATE, READ, UPDATE and DELETE.
How are you trying to connect to your Databases? Are you sure it’s not a configuration error?
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.