Add instructions for SQLite3 extension

This commit is contained in:
Carly Ho 2023-06-29 18:56:26 -05:00 committed by GitHub
parent f10960fc61
commit 8ffa06dbcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
# How To
Basically, you can drop this onto a php-enabled webserver and have it Just Work, with **one caveat**. You have to have ImageMagick installed along with the php Imagick extension.
Basically, you can drop this onto a php-enabled webserver and have it Just Work, with **one caveat**. You have to have ImageMagick installed along with the php Imagick extension, and also make sure you have the Sqlite3 extension installed.
Assuming you're on an Ubuntu box, this should do it:
@ -8,6 +8,8 @@ Assuming you're on an Ubuntu box, this should do it:
sudo apt-get install -y libmagickwand-dev
sudo apt-get install -y imagemagick
pecl install imagick
sudo apt-get install -y libsqlite3-0 libsqlite3-dev php-sqlite3
```
If it says to enable any modules for your web server, use the provided commands. Then, reload your web server to load all the new extensions.