decultured / wordpress-pdo-sqlite

Wordpress built with support for sqlite through pdo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wordpress SQLite PDO

A version of wordpress with the sqlite PDO plugin

Installation

Requires sqlite and php-sqlite

Update the following lines in wp-config.php:

define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');

With the generated keys from:

https://api.wordpress.org/secret-key/1.1/salt/

Ensure that the "database" folder in "wp-content" has full permissions.

Run wp-admin/install.php from your browser.

Built with the instructions from:

http://epilogica.info/articles/how-to/wordpress/installing-sqlite-PDO.htm

After installation, Wordpress can be safely upgraded with the admin interface.

About

Wordpress built with support for sqlite through pdo

License:GNU General Public License v2.0


Languages

Language:PHP 89.3%Language:JavaScript 10.7%