forked from chrisgraham/ocPortal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.php
executable file
·77 lines (63 loc) · 3.48 KB
/
uninstall.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php /*
ocPortal
Copyright (c) ocProducts, 2004-2012
See text/EN/licence.txt for full licencing information.
*/
/**
* @license http://opensource.org/licenses/cpal_1.0 Common Public Attribution License
* @copyright ocProducts Ltd
* @package uninstaller
*/
// Find ocPortal base directory, and chdir into it
global $FILE_BASE,$RELATIVE_PATH;
$FILE_BASE=(strpos(__FILE__,'./')===false)?__FILE__:realpath(__FILE__);
$FILE_BASE=dirname($FILE_BASE);
if (!is_file($FILE_BASE.'/sources/global.php')) // Need to navigate up a level further perhaps?
{
$RELATIVE_PATH=basename($FILE_BASE);
$FILE_BASE=dirname($FILE_BASE);
} else
{
$RELATIVE_PATH='';
}
@chdir($FILE_BASE);
global $NON_PAGE_SCRIPT;
$NON_PAGE_SCRIPT=1;
global $FORCE_INVISIBLE_GUEST;
$FORCE_INVISIBLE_GUEST=0;
if (!is_file($FILE_BASE.'/sources/global.php')) exit('<!DOCTYPE html>'.chr(10).'<html lang="EN"><head><title>Critical startup error</title></head><body><h1>ocPortal startup error</h1><p>The second most basic ocPortal startup file, sources/global.php, could not be located. This is almost always due to an incomplete upload of the ocPortal system, so please check all files are uploaded correctly.</p><p>Once all ocPortal files are in place, ocPortal must actually be installed by running the installer. You must be seeing this message either because your system has become corrupt since installation, or because you have uploaded some but not all files from our manual installer package: the quick installer is easier, so you might consider using that instead.</p><p>ocProducts maintains full documentation for all procedures and tools, especially those for installation. These may be found on the <a href="http://ocportal.com">ocPortal website</a>. If you are unable to easily solve this problem, we may be contacted from our website and can help resolve it for you.</p><hr /><p style="font-size: 0.8em">ocPortal is a website engine created by ocProducts.</p></body></html>'); require($FILE_BASE.'/sources/global.php');
if (uninstall_check_master_password(post_param('given_password','')))
{
$uninstalled=do_template('BASIC_HTML_WRAP',array('_GUID'=>'5614c65c4f388fd47aabb24b9624ce65','TITLE'=>do_lang_tempcode('UNINSTALL'),'CONTENT'=>do_lang_tempcode('UNINSTALLED')));
$tables=collapse_1d_complexity('m_table',$GLOBALS['SITE_DB']->query_select('db_meta',array('DISTINCT m_table')));
foreach ($tables as $table)
{
$GLOBALS['SITE_DB']->drop_if_exists($table);
}
$GLOBALS['SITE_DB']->drop_if_exists('db_meta_indices');
$GLOBALS['SITE_DB']->drop_if_exists('db_meta');
$uninstalled->evaluate_echo();
} else
{
$echo=do_template('BASIC_HTML_WRAP',array('_GUID'=>'009e7517e7df76167b4d13ca77308704','NOFOLLOW'=>true,'TITLE'=>do_lang_tempcode('UNINSTALL'),'CONTENT'=>do_template('UNINSTALL_SCREEN')));
$echo->evaluate_echo();
}
/**
* Check the given master password is valid.
*
* @param SHORT_TEXT Given master password
* @return boolean Whether it is valid
*/
function uninstall_check_master_password($password_given)
{
global $SITE_INFO;
if (!array_key_exists('admin_password',$SITE_INFO)) exit('No master password defined in info.php currently so cannot authenticate');
$actual_password_hashed=$SITE_INFO['admin_password'];
$salt='';
if ((substr($actual_password_hashed,0,1)=='!') && (strlen($actual_password_hashed)==33))
{
$actual_password_hashed=substr($actual_password_hashed,1);
$salt='ocp';
}
return (((strlen($password_given)!=32) && ($actual_password_hashed==$password_given)) || ($actual_password_hashed==md5($password_given.$salt)));
}