mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
postgres
This commit is contained in:
parent
8d3275bee4
commit
bc1ee8524e
9 changed files with 203 additions and 487 deletions
|
@ -24,7 +24,7 @@ define ('CACHE', './cache');
|
|||
define ('LANG', 'en_EN.UTF8');
|
||||
define ('PAGINATION', '10');
|
||||
define ('THEME', 'light');
|
||||
$storage_type = 'sqlite'; # sqlite, mysql, (file, not yet)
|
||||
define ('STORAGE','postgres'); # postgres, mysql, sqlite
|
||||
|
||||
# /!\ Be careful if you change the lines below /!\
|
||||
require_once './inc/poche/User.class.php';
|
||||
|
@ -34,8 +34,7 @@ require_once './inc/3rdparty/class.messages.php';
|
|||
require_once './inc/poche/Poche.class.php';
|
||||
require_once './inc/3rdparty/Readability.php';
|
||||
require_once './inc/3rdparty/Encoding.php';
|
||||
require_once './inc/store/store.class.php';
|
||||
require_once './inc/store/' . $storage_type . '.class.php';
|
||||
require_once './inc/poche/Database.class.php';
|
||||
require_once './vendor/autoload.php';
|
||||
require_once './inc/3rdparty/simple_html_dom.php';
|
||||
require_once './inc/3rdparty/paginator.php';
|
||||
|
@ -45,7 +44,7 @@ if (DOWNLOAD_PICTURES) {
|
|||
require_once './inc/poche/pochePictures.php';
|
||||
}
|
||||
|
||||
$poche = new Poche($storage_type);
|
||||
$poche = new Poche();
|
||||
|
||||
#XSRF protection with token
|
||||
// if (!empty($_POST)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue