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?
|
feedback
|
migrated from stackoverflow.com Apr 11 '11 at 12:42
This question came from our site for professional and enthusiast programmers.
|
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:
| |||
feedback
|