]> git.immae.eu Git - github/wallabag/wallabag.git/blame - index.php
#584 check permissions for HTMLPurifier/DefinitionCache/Serializer folder
[github/wallabag/wallabag.git] / index.php
CommitLineData
1a268ba7
NL
1<?php
2/**
c95b78a8 3 * wallabag, self hostable application allowing you to not miss any content anymore
1a268ba7 4 *
c95b78a8
NL
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
1a268ba7 7 * @copyright 2013
3602405e 8 * @license http://opensource.org/licenses/MIT see COPYING file
1a268ba7
NL
9 */
10
3602405e 11define ('POCHE', '1.8.0');
792097fb 12require 'check_setup.php';
00dbaf90 13require_once 'inc/poche/global.inc.php';
bb5a7d9e 14
26b77483
NL
15// Start session
16Session::$sessionName = 'wallabag';
17Session::init();
752cd4a8 18
26b77483
NL
19// Let's rock !
20$wallabag = new Poche();
b6a3c886 21$wallabag->run();