Hello,
I have “PDO MySQL extension Failed” when installing MailWizz as the requirement. Could you please point out where should I look to fit this? Thank you
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!
Hi @jin1,
I’ve not dealt with MailWizz however, I’ve checked and as I thought, it’s using PHP. This means you need to install the PDO PHP extension on your droplet.
This should be easy, just SSH to your droplet:
ssh root@XXX.XXX.XXX.XXX
where XXX.XXX.XXX.XXX is your droplet’s IP address.
Once inside, execute the command php -v:
php -v
It will show you which version of PHP you have. Let’s assume it’s 7.4 for the example.
Now, you’ll need to install the extension. If yu are using Ubuntu, this will do the trick for you:
sudo apt get php74-pdo
If you are using CentOS, use this:
yum install php74-pdo
That’s it.
Now if you are using another PHP version not 7.4, just change it in the command. If its 7.2, your command will be php72-pdo.
Regards, KFSys
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.