来自 aaemnnosttv 的 wp-sqlite-db 插件
Evan Mattson 6a7780ff3c Merge pull request #50 from mwguerra/master | 1 سال پیش | |
---|---|---|
.github | 1 سال پیش | |
src | 1 سال پیش | |
tests | 4 سال پیش | |
.gitignore | 2 سال پیش | |
CHANGELOG.md | 3 سال پیش | |
README.md | 3 سال پیش | |
composer.json | 2 سال پیش | |
phpunit.xml.dist | 4 سال پیش |
A single file drop-in for using a SQLite database with WordPress. Based on the original SQLite Integration plugin.
src/db.php
into the root of your site's wp-content
directorycomposer require koodimonni/composer-dropin-installer
Add the configuration to your project's composer.json
under the extra
key
"extra": {
"dropin-paths": {
"wp-content/": ["package:aaemnnosttv/wp-sqlite-db:src/db.php"]
}
}
composer require aaemnnosttv/wp-sqlite-db
Once the drop-in is installed, no other configuration is necessary, but some things are configurable.
By default, the SQLite database is located in wp-content/database/.ht.sqlite
, but you can change this using a few constants.
define('DB_DIR', '/absolute/custom/path/to/directory/for/sqlite/database/file/');
define('DB_FILE', 'custom_filename_for_sqlite_database');
This project is based on the SQLite Integration plugin by Kojima Toshiyasu.