43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
|
<?php
|
||
|
// Admin page for Full-Text RSS
|
||
|
// Author: Keyvan Minoukadeh
|
||
|
// Copyright (c) 2012 Keyvan Minoukadeh
|
||
|
// License: AGPLv3
|
||
|
// Date: 2012-04-29
|
||
|
// More info: http://fivefilters.org/content-only/
|
||
|
// Help: http://help.fivefilters.org
|
||
|
|
||
|
/*
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU Affero General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU Affero General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Affero General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
// Usage
|
||
|
// -----
|
||
|
// Access this file in your browser
|
||
|
|
||
|
error_reporting(E_ALL ^ E_NOTICE);
|
||
|
ini_set("display_errors", 1);
|
||
|
@set_time_limit(120);
|
||
|
|
||
|
////////////////////////////////
|
||
|
// Load config file
|
||
|
////////////////////////////////
|
||
|
require_once('../config.php');
|
||
|
require_once('require_login.php');
|
||
|
require_once('template.php');
|
||
|
tpl_header('Admin');
|
||
|
|
||
|
?>
|
||
|
<p>The admin pages are intended to help you manage your copy of Full-Text RSS more easily.</p>
|
||
|
<p>We currently offer an experimental <a href="update.php">update tool</a> which you can use to update your site patterns.</p>
|