]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - INSTALL.md
new default content in poche.sqlite
[github/wallabag/wallabag.git] / INSTALL.md
... / ...
CommitLineData
1# Installing poche
2
3## requirements
4
5it's highly recommended to have php cURL and tidy_parse_string to fetch articles content.
6
7## you don't want to install twig (the template engine) by yourself
8
9Download this file http://static.inthepoche.com/files/poche-1.0-latest-with-twig.zip
10
11Extract this file on your server.
12
13## you want to install twig by yourself
14
15Download the latest version here : http://www.inthepoche.com/?pages/T%C3%A9l%C3%A9charger-poche
16
17Extract this file on your server.
18
19```php
20curl -s http://getcomposer.org/installer | php
21php composer.phar install
22```
23
24### using sqlite
25
26Copy / paste install/poche.sqlite in db folder.
27
28### using mysql or postgresql
29
30Execute the sql file in /install (mysql.sql or postgres.sql)
31
32Then, go to step 3.
33
34# Upgrading poche
35
36Replace all the files except **db/poche.sqlite**. Also remember to edit the file /inc/poche/config.inc.php.
37
38## Upgrading from poche <= 0.3
39
40You have to execute http://yourpoche/install/update_sqlite_from_0_to_1.php
41
42Then, go to step 3.
43
44## Upgrading from poche >= 1.0 beta1
45
46Nothing to do here.
47
48Then, go to step 3.
49
50# Here is the step 3
51
52You must have write access on assets, cache and db directories. These directories may not exist, you'll have to create them.
53
54You can use poche ! Enjoy.
55
56# Some problems you may encounter
57
58## Blank page
59
60Be sure to have write access on assets, cache and db directories.
61
62## PHP Fatal error: Call to a member function fetchAll() on a non-object in /var/www/poche/inc/poche/Database.class.php on line 42
63
64If you want to install poche, delete the db/poche.sqlite file and copy / paste the install/poche.sqlite in /db. Be sure to have write access.