mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-23 17:41:01 +00:00
17 lines
No EOL
432 B
PHP
17 lines
No EOL
432 B
PHP
<?php
|
|
|
|
// Check if /cache is writeable
|
|
if (! is_writable('cache')) {
|
|
die('The directory "cache" must be writeable by your web server user');
|
|
}
|
|
|
|
// Check if /db is writeable
|
|
if (! is_writable('db') && STORAGE === 'sqlite') {
|
|
die('The directory "db" must be writeable by your web server user');
|
|
}
|
|
|
|
// install folder still present, need to install wallabag
|
|
if (is_dir('install')) {
|
|
require('install/index.php');
|
|
exit;
|
|
} |