-
Notifications
You must be signed in to change notification settings - Fork 9
/
ajax_main.php
51 lines (44 loc) · 1.53 KB
/
ajax_main.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
<?php
/*****************************************************
* Rapidleech 36B Rv.8
*
* $Id: ajax_main.php - 06apr2010-Idx $
*****************************************************/
define('RAPIDLEECH', 'yes');
if (!isset($_POST)) { return; }
require_once "./global.php";
define('AJAX_DIR', CLASS_DIR.'ajax/');
// ==MAIN==
// Initiate for Table Load
if (isset($_POST['TBLoad'])) {
//=====================================# Initiate counter
$maintimer->remove();
$maintimer->timer();
}
// Check ACC RS Multi and Single ( acc.status )
if (isset($_POST['accounts']) || isset($_POST['staccounts'])) {
//=====================================# RS ACCOUNTS (Status & Checker)
require_once(AJAX_DIR . "rs_accounts.php");
//end rs_accounts
} elseif (isset($_POST['dellog']) || isset($_POST['fntrafic'])) {
//=====================================# LOG FLUSH
require_once(AJAX_DIR . "log_flush.php");
// end log_flush
} elseif (isset($_POST['md5fn'])) {
//=====================================# MD5 Changer
require_once(AJAX_DIR . "md5_changer.php");
// end md5_changer
} elseif (isset($_POST['TBLoad'])) {
//=====================================# TB LOADER
require_once(AJAX_DIR . "tb_loadfiles.php");
// end tb_loadfiles
} elseif (isset($_POST['ren'])) {
//=======================================# Instant-RENAME
require_once(AJAX_DIR . "inst_rename.php");
// end inst_rename
} elseif (isset($_POST['url'])) {
//=======================================# Ajax-Link Checker
require_once(AJAX_DIR . "ajax_lnk.php");
} // end Ajax-Link Checker
exit();
?>