Php – How to install php with sqlite support in AWS EC2

amazon ec2PHPsqlite

I'm trying to run an AWS EC2 instance for a facebook app. I chose the micro Amazon linux 32-bit as my OS. I'm able to SSH in and install PHP with yum, but when I run phpinfo() I see –without-sqlite in the configuration. Also, my sqlite php page was erroring out on the line that tried to open the sqlite file. I did a yum search for sqlite and php and I didn't see the php5-sqlite pacakge available. How can I get SQLite working with PHP on this system?

Best Answer

You can still use PHP PDO to use SQLite3, even if your install of PHP doesn't have native SQLite support compiled in.

You can install the PDO library with:

yum install php-pdo