2016-04-28 05:51:42 +00:00
|
|
|
<?php
|
|
|
|
// SeedDMS. Document Management System
|
2016-08-09 05:34:30 +00:00
|
|
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
2016-04-28 05:51:42 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
2016-11-07 09:10:41 +00:00
|
|
|
include("../inc/inc.Utils.php");
|
2022-11-09 05:40:50 +00:00
|
|
|
include("../inc/inc.LogInit.php");
|
2016-08-09 06:01:30 +00:00
|
|
|
include("../inc/inc.Language.php");
|
|
|
|
include("../inc/inc.Init.php");
|
2016-11-07 09:10:41 +00:00
|
|
|
include("../inc/inc.Extension.php");
|
2016-04-28 05:51:42 +00:00
|
|
|
include("../inc/inc.DBInit.php");
|
|
|
|
include("../inc/inc.ClassUI.php");
|
2020-08-21 08:03:22 +00:00
|
|
|
include("../inc/inc.ClassController.php");
|
2016-04-28 05:51:42 +00:00
|
|
|
include("../inc/inc.Authentication.php");
|
|
|
|
|
2020-08-21 08:03:22 +00:00
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
$controller = Controller::factory($tmp[1], array('dms'=>$dms, 'user'=>$user));
|
|
|
|
|
2016-10-05 14:23:22 +00:00
|
|
|
/* Check if the form data comes from a trusted request */
|
2016-04-28 05:51:42 +00:00
|
|
|
if(!checkFormKey('clearcache')) {
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("invalid_request_token"));
|
|
|
|
}
|
|
|
|
|
2018-06-27 16:54:08 +00:00
|
|
|
/* Make sure the cacheDir exists and isn't manipulated for executing
|
|
|
|
* commands when system() is being called.
|
|
|
|
*/
|
|
|
|
if(!is_dir($settings->_cacheDir)) {
|
|
|
|
UI::exitError(getMLText("admin_tools"),getMLText("error_cleared_cache"));
|
|
|
|
}
|
|
|
|
|
2020-08-21 08:03:22 +00:00
|
|
|
$controller->setParam('post', $_POST);
|
2022-07-29 19:44:04 +00:00
|
|
|
if(!$controller())
|
2017-01-09 09:56:32 +00:00
|
|
|
$session->setSplashMsg(array('type'=>'error', 'msg'=>getMLText('error_cleared_cache')));
|
2016-08-09 05:08:00 +00:00
|
|
|
else
|
2017-01-09 09:56:32 +00:00
|
|
|
$session->setSplashMsg(array('type'=>'success', 'msg'=>getMLText('splash_cleared_cache')));
|
2016-08-09 05:08:00 +00:00
|
|
|
|
2016-04-28 05:51:42 +00:00
|
|
|
add_log_line("");
|
|
|
|
|
2024-09-18 07:26:26 +00:00
|
|
|
header("Location:../out/out.ClearCache.php");
|
2016-04-28 05:51:42 +00:00
|
|
|
|