-
Notifications
You must be signed in to change notification settings - Fork 0
/
universal_backup.php
48 lines (38 loc) · 1.35 KB
/
universal_backup.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
<?php
//////////////////////////////////////////////////////////////
//===========================================================
// universal.php
//===========================================================
// AEF : Advanced Electron Forum
// Version : 1.0.6
// Inspired by Pulkit and taken over by Electron
// ----------------------------------------------------------
// Started by: Electron, Ronak Gupta, Pulkit Gupta
// Date: 23rd Jan 2006
// Time: 15:00 hrs
// Site: http://www.anelectron.com/ (Anelectron)
// ----------------------------------------------------------
// Please Read the Terms of use at http://www.anelectron.com
// ----------------------------------------------------------
//===========================================================
// (c)Electron Inc.
//===========================================================
//////////////////////////////////////////////////////////////
/* Database Connection */
$globals['user'] = '';
$globals['password'] = '';
$globals['database'] = '';
$globals['dbprefix'] = '';
$globals['server'] = '';
/* Ending - Database Connection */
/* Core Settings */
$globals['url'] = '';
$globals['sn'] = '';
$globals['board_email'] = '';
$globals['server_url'] = '';
$globals['mainfiles'] = '';
$globals['themesdir'] = '';
$globals['gzip'] = 1;
$globals['cookie_name'] = '';
/* Ending - Core Settings */
?>