Hi,
I have created a droplet with one click app LAMP 14.04. I have read several help pages on how to enable PDO and have added extension=pdo.so and extension=pdo_mysql.so -lines to /etc/php5/apache2/php.ini and restarted apache.
In info.php:
Additional .ini files parsed include
/etc/php5/apache2/conf.d/05-opcache.ini, /etc/php5/apache2/conf.d/10-pdo.ini, /etc/php5/apache2/conf.d/20-apcu.ini, /etc/php5/apache2/conf.d/20-gd.ini, /etc/php5/apache2/conf.d/20-json.ini, /etc/php5/apache2/conf.d/20-mysql.ini, /etc/php5/apache2/conf.d/20-mysqli.ini, /etc/php5/apache2/conf.d/20-pdo_mysql.ini, /etc/php5/apache2/conf.d/20-readline.ini
php -m on the command line shows PDO and pdo_mysql.
I have tried out learn what is wrong for a few hours now and can’t get the problem solved.
Thank you for your help in advance,
Antti Karttunen
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@AnttiKarttunen
I actually work with PHP quite a bit, so if you can share the rest of the class, I can take a look at what’s running to see where there may be an issue. The snippet you provided cites a
getPdo
method, but I don’t see a reference to that.As a quick reference, here’s a really simple MySQL Class that uses PDO.
When constructed, you need to pass an array
$params
, for example:Note: You’ll need to change
mysqldbname
,mysqldbpass
, andmysqldbuser
to match yours.So to create an instance of this
MySql
class, I’d use:To connect, I’d then use:
Now I can run:
And that should dump the results from my query.
I just tested this locally and on a Droplet with PHP 7.x and 7.1 and it works, so if you run in to issues with the above, then there most likely is an issue with PDO not working. If that works, then the issue would be in your code.
@AnttiKarttunen
What error(s) are you receiving when trying to make a connection via PDO and what does your code look like (for the connection)?