source: trunk/admin/maintenance.php @ 1987

Last change on this file since 1987 was 1987, checked in by rub, 17 years ago

Delete all history tables on maintenance page.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: maintenance.php 1987 2007-04-27 22:25:05Z rub $
8// | last update   : $Date: 2007-04-27 22:25:05 +0000 (Fri, 27 Apr 2007) $
9// | last modifier : $Author: rub $
10// | revision      : $Revision: 1987 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27if (!defined('PHPWG_ROOT_PATH'))
28{
29  die ("Hacking attempt!");
30}
31
32include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
33
34// +-----------------------------------------------------------------------+
35// | Check Access and exit when user status is not ok                      |
36// +-----------------------------------------------------------------------+
37check_status(ACCESS_ADMINISTRATOR);
38
39// +-----------------------------------------------------------------------+
40// |                                actions                                |
41// +-----------------------------------------------------------------------+
42
43$action = (isset($_GET['action']) and !is_adviser()) ? $_GET['action'] : '';
44
45switch ($action)
46{
47  case 'categories' :
48  {
49    update_uppercats();
50    update_category('all');
51    ordering();
52    update_global_rank();
53    invalidate_user_cache();
54    break;
55  }
56  case 'images' :
57  {
58    update_path();
59    update_average_rate();
60    break;
61  }
62  case 'history' :
63  {
64    $query = '
65DELETE
66  FROM '.HISTORY_SUMMARY_TABLE.'
67;';
68    pwg_query($query);
69    $query = '
70DELETE
71  FROM '.HISTORY_TABLE.'
72;';
73    pwg_query($query);
74    break;
75  }
76  case 'sessions' :
77  {
78    pwg_session_gc();
79    break;
80  }
81  case 'feeds' :
82  {
83    $query = '
84DELETE
85  FROM '.USER_FEED_TABLE.'
86  WHERE last_check IS NULL
87;';
88    pwg_query($query);
89    break;
90  }
91  case 'database' :
92  {
93    do_maintenance_all_tables();
94    break;
95  }
96  default :
97  {
98    break;
99  }
100}
101
102// +-----------------------------------------------------------------------+
103// |                             template init                             |
104// +-----------------------------------------------------------------------+
105
106$template->set_filenames(array('maintenance'=>'admin/maintenance.tpl'));
107
108$start_url = PHPWG_ROOT_PATH.'admin.php?page=maintenance&amp;action=';
109
110$template->assign_vars(
111  array(
112    'U_MAINT_CATEGORIES' => $start_url.'categories',
113    'U_MAINT_IMAGES' => $start_url.'images',
114    'U_MAINT_HISTORY' => $start_url.'history',
115    'U_MAINT_SESSIONS' => $start_url.'sessions',
116    'U_MAINT_FEEDS' => $start_url.'feeds',
117    'U_MAINT_DATABASE' => $start_url.'database',
118    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=maintenance',
119    )
120  );
121
122// +-----------------------------------------------------------------------+
123// |                           sending html code                           |
124// +-----------------------------------------------------------------------+
125
126$template->assign_var_from_handle('ADMIN_CONTENT', 'maintenance');
127?>
Note: See TracBrowser for help on using the repository browser.