mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
12 lines
No EOL
276 B
PHP
Executable file
12 lines
No EOL
276 B
PHP
Executable file
<?php
|
|
|
|
// Check if /cache is writeable
|
|
if (! is_writable('cache')) {
|
|
die('The directory "cache" 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;
|
|
} |