forked from fluxbb/fluxbb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
1775 lines (1587 loc) · 56 KB
/
install.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Copyright (C) 2008-2012 FluxBB
* based on code by Rickard Andersson copyright (C) 2002-2008 PunBB
* License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
*/
// The FluxBB version this script installs
define('FORUM_VERSION', '1.5.9');
define('FORUM_DB_REVISION', 21);
define('FORUM_SI_REVISION', 2);
define('FORUM_PARSER_REVISION', 2);
define('MIN_PHP_VERSION', '4.4.0');
define('MIN_MYSQL_VERSION', '4.1.2');
define('MIN_PGSQL_VERSION', '7.0.0');
define('PUN_SEARCH_MIN_WORD', 3);
define('PUN_SEARCH_MAX_WORD', 20);
define('PUN_ROOT', dirname(__FILE__).'/');
// Send the Content-type header in case the web server is setup to send something else
header('Content-type: text/html; charset=utf-8');
// Load the functions script
require PUN_ROOT.'include/functions.php';
// Load UTF-8 functions
require PUN_ROOT.'include/utf8/utf8.php';
// Strip out "bad" UTF-8 characters
forum_remove_bad_characters();
// Reverse the effect of register_globals
forum_unregister_globals();
// Disable error reporting for uninitialized variables
error_reporting(E_ALL);
// Force POSIX locale (to prevent functions such as strtolower() from messing up UTF-8 strings)
setlocale(LC_CTYPE, 'C');
// Turn off magic_quotes_runtime
if (get_magic_quotes_runtime())
set_magic_quotes_runtime(0);
// Strip slashes from GET/POST/COOKIE (if magic_quotes_gpc is enabled)
if (get_magic_quotes_gpc())
{
function stripslashes_array($array)
{
return is_array($array) ? array_map('stripslashes_array', $array) : stripslashes($array);
}
$_GET = stripslashes_array($_GET);
$_POST = stripslashes_array($_POST);
$_COOKIE = stripslashes_array($_COOKIE);
$_REQUEST = stripslashes_array($_REQUEST);
}
// Turn off PHP time limit
@set_time_limit(0);
// If we've been passed a default language, use it
$install_lang = isset($_REQUEST['install_lang']) ? pun_trim($_REQUEST['install_lang']) : 'English';
// Make sure we got a valid language string
$install_lang = preg_replace('%[\.\\\/]%', '', $install_lang);
// If such a language pack doesn't exist, or isn't up-to-date enough to translate this page, default to English
if (!file_exists(PUN_ROOT.'lang/'.$install_lang.'/install.php'))
$install_lang = 'English';
require PUN_ROOT.'lang/'.$install_lang.'/install.php';
if (file_exists(PUN_ROOT.'config.php'))
{
// Check to see whether FluxBB is already installed
include PUN_ROOT.'config.php';
// If we have the 1.3-legacy constant defined, define the proper 1.4 constant so we don't get an incorrect "need to install" message
if (defined('FORUM'))
define('PUN', FORUM);
// If PUN is defined, config.php is probably valid and thus the software is installed
if (defined('PUN'))
exit($lang_install['Already installed']);
}
// Define PUN because email.php requires it
define('PUN', 1);
// If the cache directory is not specified, we use the default setting
if (!defined('FORUM_CACHE_DIR'))
define('FORUM_CACHE_DIR', PUN_ROOT.'cache/');
// Make sure we are running at least MIN_PHP_VERSION
if (!function_exists('version_compare') || version_compare(PHP_VERSION, MIN_PHP_VERSION, '<'))
exit(sprintf($lang_install['You are running error'], 'PHP', PHP_VERSION, FORUM_VERSION, MIN_PHP_VERSION));
//
// Generate output to be used for config.php
//
function generate_config_file()
{
global $db_type, $db_host, $db_name, $db_username, $db_password, $db_prefix, $cookie_name, $cookie_seed;
return '<?php'."\n\n".'$db_type = \''.$db_type."';\n".'$db_host = \''.$db_host."';\n".'$db_name = \''.addslashes($db_name)."';\n".'$db_username = \''.addslashes($db_username)."';\n".'$db_password = \''.addslashes($db_password)."';\n".'$db_prefix = \''.addslashes($db_prefix)."';\n".'$p_connect = false;'."\n\n".'$cookie_name = '."'".$cookie_name."';\n".'$cookie_domain = '."'';\n".'$cookie_path = '."'/';\n".'$cookie_secure = 0;'."\n".'$cookie_seed = \''.random_key(16, false, true)."';\n\ndefine('PUN', 1);\n";
}
if (isset($_POST['generate_config']))
{
header('Content-Type: text/x-delimtext; name="config.php"');
header('Content-disposition: attachment; filename=config.php');
$db_type = $_POST['db_type'];
$db_host = $_POST['db_host'];
$db_name = $_POST['db_name'];
$db_username = $_POST['db_username'];
$db_password = $_POST['db_password'];
$db_prefix = $_POST['db_prefix'];
$cookie_name = $_POST['cookie_name'];
$cookie_seed = $_POST['cookie_seed'];
echo generate_config_file();
exit;
}
if (!isset($_POST['form_sent']))
{
// Make an educated guess regarding base_url
$base_url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https://' : 'http://'; // protocol
$base_url .= preg_replace('%:(80|443)$%', '', $_SERVER['HTTP_HOST']); // host[:port]
$base_url .= str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME'])); // path
if (substr($base_url, -1) == '/')
$base_url = substr($base_url, 0, -1);
$db_type = $db_name = $db_username = $db_prefix = $username = $email = '';
$db_host = 'localhost';
$title = $lang_install['My FluxBB Forum'];
$description = '<p><span>'.$lang_install['Description'].'</span></p>';
$default_lang = $install_lang;
$default_style = 'Air';
}
else
{
$db_type = $_POST['req_db_type'];
$db_host = pun_trim($_POST['req_db_host']);
$db_name = pun_trim($_POST['req_db_name']);
$db_username = pun_trim($_POST['db_username']);
$db_password = pun_trim($_POST['db_password']);
$db_prefix = pun_trim($_POST['db_prefix']);
$username = pun_trim($_POST['req_username']);
$email = strtolower(pun_trim($_POST['req_email']));
$password1 = pun_trim($_POST['req_password1']);
$password2 = pun_trim($_POST['req_password2']);
$title = pun_trim($_POST['req_title']);
$description = pun_trim($_POST['desc']);
$base_url = pun_trim($_POST['req_base_url']);
$default_lang = pun_trim($_POST['req_default_lang']);
$default_style = pun_trim($_POST['req_default_style']);
$alerts = array();
// Make sure base_url doesn't end with a slash
if (substr($base_url, -1) == '/')
$base_url = substr($base_url, 0, -1);
// Validate username and passwords
if (pun_strlen($username) < 2)
$alerts[] = $lang_install['Username 1'];
else if (pun_strlen($username) > 25) // This usually doesn't happen since the form element only accepts 25 characters
$alerts[] = $lang_install['Username 2'];
else if (!strcasecmp($username, 'Guest'))
$alerts[] = $lang_install['Username 3'];
else if (preg_match('%[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}%', $username) || preg_match('%((([0-9A-Fa-f]{1,4}:){7}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}:[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){5}:([0-9A-Fa-f]{1,4}:)?[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){4}:([0-9A-Fa-f]{1,4}:){0,2}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){3}:([0-9A-Fa-f]{1,4}:){0,3}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){2}:([0-9A-Fa-f]{1,4}:){0,4}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(([0-9A-Fa-f]{1,4}:){0,5}:((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(::([0-9A-Fa-f]{1,4}:){0,5}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|([0-9A-Fa-f]{1,4}::([0-9A-Fa-f]{1,4}:){0,5}[0-9A-Fa-f]{1,4})|(::([0-9A-Fa-f]{1,4}:){0,6}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){1,7}:))%', $username))
$alerts[] = $lang_install['Username 4'];
else if ((strpos($username, '[') !== false || strpos($username, ']') !== false) && strpos($username, '\'') !== false && strpos($username, '"') !== false)
$alerts[] = $lang_install['Username 5'];
else if (preg_match('%(?:\[/?(?:b|u|i|h|colou?r|quote|code|img|url|email|list)\]|\[(?:code|quote|list)=)%i', $username))
$alerts[] = $lang_install['Username 6'];
if (pun_strlen($password1) < 6)
$alerts[] = $lang_install['Short password'];
else if ($password1 != $password2)
$alerts[] = $lang_install['Passwords not match'];
// Validate email
require PUN_ROOT.'include/email.php';
if (!is_valid_email($email))
$alerts[] = $lang_install['Wrong email'];
if ($title == '')
$alerts[] = $lang_install['No board title'];
$languages = forum_list_langs();
if (!in_array($default_lang, $languages))
$alerts[] = $lang_install['Error default language'];
$styles = forum_list_styles();
if (!in_array($default_style, $styles))
$alerts[] = $lang_install['Error default style'];
}
// Check if the cache directory is writable
if (!forum_is_writable(FORUM_CACHE_DIR))
$alerts[] = sprintf($lang_install['Alert cache'], FORUM_CACHE_DIR);
// Check if default avatar directory is writable
if (!forum_is_writable(PUN_ROOT.'img/avatars/'))
$alerts[] = sprintf($lang_install['Alert avatar'], PUN_ROOT.'img/avatars/');
if (!isset($_POST['form_sent']) || !empty($alerts))
{
// Determine available database extensions
$dual_mysql = false;
$db_extensions = array();
$mysql_innodb = false;
if (function_exists('mysqli_connect'))
{
$db_extensions[] = array('mysqli', 'MySQL Improved');
$db_extensions[] = array('mysqli_innodb', 'MySQL Improved (InnoDB)');
$mysql_innodb = true;
}
if (function_exists('mysql_connect'))
{
$db_extensions[] = array('mysql', 'MySQL Standard');
$db_extensions[] = array('mysql_innodb', 'MySQL Standard (InnoDB)');
$mysql_innodb = true;
if (count($db_extensions) > 2)
$dual_mysql = true;
}
if (function_exists('sqlite_open'))
$db_extensions[] = array('sqlite', 'SQLite');
if (function_exists('pg_connect'))
$db_extensions[] = array('pgsql', 'PostgreSQL');
if (empty($db_extensions))
error($lang_install['No DB extensions']);
// Fetch a list of installed languages
$languages = forum_list_langs();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><?php echo $lang_install['FluxBB Installation'] ?></title>
<link rel="stylesheet" type="text/css" href="style/<?php echo $default_style ?>.css" />
<script type="text/javascript">
/* <![CDATA[ */
function process_form(the_form)
{
var required_fields = {
"req_db_type": "<?php echo $lang_install['Database type'] ?>",
"req_db_host": "<?php echo $lang_install['Database server hostname'] ?>",
"req_db_name": "<?php echo $lang_install['Database name'] ?>",
"req_username": "<?php echo $lang_install['Administrator username'] ?>",
"req_password1": "<?php echo $lang_install['Password'] ?>",
"req_password2": "<?php echo $lang_install['Confirm password'] ?>",
"req_email": "<?php echo $lang_install['Administrator email'] ?>",
"req_title": "<?php echo $lang_install['Board title'] ?>",
"req_base_url": "<?php echo $lang_install['Base URL'] ?>"
};
if (document.all || document.getElementById)
{
for (var i = 0; i < the_form.length; ++i)
{
var elem = the_form.elements[i];
if (elem.name && required_fields[elem.name] && !elem.value && elem.type && (/^(?:text(?:area)?|password|file)$/i.test(elem.type)))
{
alert('"' + required_fields[elem.name] + '" <?php echo $lang_install['Required field'] ?>');
elem.focus();
return false;
}
}
}
return true;
}
/* ]]> */
</script>
</head>
<body onload="document.getElementById('install').req_db_type.focus();document.getElementById('install').start.disabled=false;" onunload="">
<div id="puninstall" class="pun">
<div class="top-box"><div><!-- Top Corners --></div></div>
<div class="punwrap">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<h1><span><?php echo $lang_install['FluxBB Installation'] ?></span></h1>
<div id="brddesc"><p><?php echo $lang_install['Welcome'] ?></p></div>
</div>
</div>
</div>
<div id="brdmain">
<?php if (count($languages) > 1): ?><div class="blockform">
<h2><span><?php echo $lang_install['Choose install language'] ?></span></h2>
<div class="box">
<form id="install" method="post" action="install.php">
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Install language'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Choose install language info'] ?></p>
<label><strong><?php echo $lang_install['Install language'] ?></strong>
<br /><select name="install_lang">
<?php
foreach ($languages as $temp)
{
if ($temp == $install_lang)
echo "\t\t\t\t\t".'<option value="'.$temp.'" selected="selected">'.$temp.'</option>'."\n";
else
echo "\t\t\t\t\t".'<option value="'.$temp.'">'.$temp.'</option>'."\n";
}
?>
</select>
<br /></label>
</div>
</fieldset>
</div>
<p class="buttons"><input type="submit" name="start" value="<?php echo $lang_install['Change language'] ?>" /></p>
</form>
</div>
</div>
<?php endif; ?>
<div class="blockform">
<h2><span><?php echo sprintf($lang_install['Install'], FORUM_VERSION) ?></span></h2>
<div class="box">
<form id="install" method="post" action="install.php" onsubmit="this.start.disabled=true;if(process_form(this)){return true;}else{this.start.disabled=false;return false;}">
<div><input type="hidden" name="form_sent" value="1" /><input type="hidden" name="install_lang" value="<?php echo pun_htmlspecialchars($install_lang) ?>" /></div>
<div class="inform">
<?php if (!empty($alerts)): ?> <div class="forminfo error-info">
<h3><?php echo $lang_install['Errors'] ?></h3>
<ul class="error-list">
<?php
foreach ($alerts as $cur_alert)
echo "\t\t\t\t\t\t".'<li><strong>'.$cur_alert.'</strong></li>'."\n";
?>
</ul>
</div>
<?php endif; ?> </div>
<div class="inform">
<div class="forminfo">
<h3><?php echo $lang_install['Database setup'] ?></h3>
<p><?php echo $lang_install['Info 1'] ?></p>
</div>
<fieldset>
<legend><?php echo $lang_install['Select database'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 2'] ?></p>
<label class="required"><strong><?php echo $lang_install['Database type'] ?> <span><?php echo $lang_install['Required'] ?></span></strong>
<br /><select name="req_db_type">
<?php
foreach ($db_extensions as $temp)
{
if ($temp[0] == $db_type)
echo "\t\t\t\t\t\t\t".'<option value="'.$temp[0].'" selected="selected">'.$temp[1].'</option>'."\n";
else
echo "\t\t\t\t\t\t\t".'<option value="'.$temp[0].'">'.$temp[1].'</option>'."\n";
}
?>
</select>
<br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Database hostname'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 3'] ?></p>
<label class="required"><strong><?php echo $lang_install['Database server hostname'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input type="text" name="req_db_host" value="<?php echo pun_htmlspecialchars($db_host) ?>" size="50" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Database enter name'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 4'] ?></p>
<label class="required"><strong><?php echo $lang_install['Database name'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input id="req_db_name" type="text" name="req_db_name" value="<?php echo pun_htmlspecialchars($db_name) ?>" size="30" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Database enter informations'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 5'] ?></p>
<label class="conl"><?php echo $lang_install['Database username'] ?><br /><input type="text" name="db_username" value="<?php echo pun_htmlspecialchars($db_username) ?>" size="30" /><br /></label>
<label class="conl"><?php echo $lang_install['Database password'] ?><br /><input type="password" name="db_password" size="30" /><br /></label>
<div class="clearer"></div>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Database enter prefix'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 6'] ?></p>
<label><?php echo $lang_install['Table prefix'] ?><br /><input id="db_prefix" type="text" name="db_prefix" value="<?php echo pun_htmlspecialchars($db_prefix) ?>" size="20" maxlength="30" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<div class="forminfo">
<h3><?php echo $lang_install['Administration setup'] ?></h3>
<p><?php echo $lang_install['Info 7'] ?></p>
</div>
<fieldset>
<legend><?php echo $lang_install['Administration setup'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 8'] ?></p>
<label class="required"><strong><?php echo $lang_install['Administrator username'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input type="text" name="req_username" value="<?php echo pun_htmlspecialchars($username) ?>" size="25" maxlength="25" /><br /></label>
<label class="conl required"><strong><?php echo $lang_install['Password'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input id="req_password1" type="password" name="req_password1" size="16" /><br /></label>
<label class="conl required"><strong><?php echo $lang_install['Confirm password'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input type="password" name="req_password2" size="16" /><br /></label>
<div class="clearer"></div>
<label class="required"><strong><?php echo $lang_install['Administrator email'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input id="req_email" type="text" name="req_email" value="<?php echo pun_htmlspecialchars($email) ?>" size="50" maxlength="80" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<div class="forminfo">
<h3><?php echo $lang_install['Board setup'] ?></h3>
<p><?php echo $lang_install['Info 11'] ?></p>
</div>
<fieldset>
<legend><?php echo $lang_install['General information'] ?></legend>
<div class="infldset">
<label class="required"><strong><?php echo $lang_install['Board title'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input id="req_title" type="text" name="req_title" value="<?php echo pun_htmlspecialchars($title) ?>" size="60" maxlength="255" /><br /></label>
<label><?php echo $lang_install['Board description'] ?><br /><input id="desc" type="text" name="desc" value="<?php echo pun_htmlspecialchars($description) ?>" size="60" maxlength="255" /><br /></label>
<label class="required"><strong><?php echo $lang_install['Base URL'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><input id="req_base_url" type="text" name="req_base_url" value="<?php echo pun_htmlspecialchars($base_url) ?>" size="60" maxlength="100" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend><?php echo $lang_install['Appearance'] ?></legend>
<div class="infldset">
<p><?php echo $lang_install['Info 15'] ?></p>
<label class="required"><strong><?php echo $lang_install['Default language'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><select id="req_default_lang" name="req_default_lang">
<?php
$languages = forum_list_langs();
foreach ($languages as $temp)
{
if ($temp == $default_lang)
echo "\t\t\t\t\t\t\t\t\t\t\t".'<option value="'.$temp.'" selected="selected">'.$temp.'</option>'."\n";
else
echo "\t\t\t\t\t\t\t\t\t\t\t".'<option value="'.$temp.'">'.$temp.'</option>'."\n";
}
?>
</select><br /></label>
<label class="required"><strong><?php echo $lang_install['Default style'] ?> <span><?php echo $lang_install['Required'] ?></span></strong><br /><select id="req_default_style" name="req_default_style">
<?php
$styles = forum_list_styles();
foreach ($styles as $temp)
{
if ($temp == $default_style)
echo "\t\t\t\t\t\t\t\t\t".'<option value="'.$temp.'" selected="selected">'.str_replace('_', ' ', $temp).'</option>'."\n";
else
echo "\t\t\t\t\t\t\t\t\t".'<option value="'.$temp.'">'.str_replace('_', ' ', $temp).'</option>'."\n";
}
?>
</select><br /></label>
</div>
</fieldset>
</div>
<p class="buttons"><input type="submit" name="start" value="<?php echo $lang_install['Start install'] ?>" /></p>
</form>
</div>
</div>
</div>
</div>
<div class="end-box"><div><!-- Bottom Corners --></div></div>
</div>
</body>
</html>
<?php
}
else
{
// Load the appropriate DB layer class
switch ($db_type)
{
case 'mysql':
require PUN_ROOT.'include/dblayer/mysql.php';
break;
case 'mysql_innodb':
require PUN_ROOT.'include/dblayer/mysql_innodb.php';
break;
case 'mysqli':
require PUN_ROOT.'include/dblayer/mysqli.php';
break;
case 'mysqli_innodb':
require PUN_ROOT.'include/dblayer/mysqli_innodb.php';
break;
case 'pgsql':
require PUN_ROOT.'include/dblayer/pgsql.php';
break;
case 'sqlite':
require PUN_ROOT.'include/dblayer/sqlite.php';
break;
default:
error(sprintf($lang_install['DB type not valid'], pun_htmlspecialchars($db_type)));
}
// Create the database object (and connect/select db)
$db = new DBLayer($db_host, $db_username, $db_password, $db_name, $db_prefix, false);
// Validate prefix
if (strlen($db_prefix) > 0 && (!preg_match('%^[a-zA-Z_][a-zA-Z0-9_]*$%', $db_prefix) || strlen($db_prefix) > 40))
error(sprintf($lang_install['Table prefix error'], $db->prefix));
// Do some DB type specific checks
switch ($db_type)
{
case 'mysql':
case 'mysqli':
case 'mysql_innodb':
case 'mysqli_innodb':
$mysql_info = $db->get_version();
if (version_compare($mysql_info['version'], MIN_MYSQL_VERSION, '<'))
error(sprintf($lang_install['You are running error'], 'MySQL', $mysql_info['version'], FORUM_VERSION, MIN_MYSQL_VERSION));
break;
case 'pgsql':
$pgsql_info = $db->get_version();
if (version_compare($pgsql_info['version'], MIN_PGSQL_VERSION, '<'))
error(sprintf($lang_install['You are running error'], 'PostgreSQL', $pgsql_info['version'], FORUM_VERSION, MIN_PGSQL_VERSION));
break;
case 'sqlite':
if (strtolower($db_prefix) == 'sqlite_')
error($lang_install['Prefix reserved']);
break;
}
// Make sure FluxBB isn't already installed
$result = $db->query('SELECT 1 FROM '.$db_prefix.'users WHERE id=1');
if ($db->num_rows($result))
error(sprintf($lang_install['Existing table error'], $db_prefix, $db_name));
// Check if InnoDB is available
if ($db_type == 'mysql_innodb' || $db_type == 'mysqli_innodb')
{
$result = $db->query('SHOW VARIABLES LIKE \'have_innodb\'');
list (, $result) = $db->fetch_row($result);
if ((strtoupper($result) != 'YES'))
error($lang_install['InnoDB off']);
}
// Start a transaction
$db->start_transaction();
// Create all tables
$schema = array(
'FIELDS' => array(
'id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'username' => array(
'datatype' => 'VARCHAR(200)',
'allow_null' => true
),
'ip' => array(
'datatype' => 'VARCHAR(255)',
'allow_null' => true
),
'email' => array(
'datatype' => 'VARCHAR(80)',
'allow_null' => true
),
'message' => array(
'datatype' => 'VARCHAR(255)',
'allow_null' => true
),
'expire' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => true
),
'ban_creator' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '0'
)
),
'PRIMARY KEY' => array('id'),
'INDEXES' => array(
'username_idx' => array('username')
)
);
if ($db_type == 'mysql' || $db_type == 'mysqli' || $db_type == 'mysql_innodb' || $db_type == 'mysqli_innodb')
$schema['INDEXES']['username_idx'] = array('username(25)');
$db->create_table('bans', $schema) or error('Unable to create bans table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'cat_name' => array(
'datatype' => 'VARCHAR(80)',
'allow_null' => false,
'default' => '\'New Category\''
),
'disp_position' => array(
'datatype' => 'INT(10)',
'allow_null' => false,
'default' => '0'
)
),
'PRIMARY KEY' => array('id')
);
$db->create_table('categories', $schema) or error('Unable to create categories table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'search_for' => array(
'datatype' => 'VARCHAR(60)',
'allow_null' => false,
'default' => '\'\''
),
'replace_with' => array(
'datatype' => 'VARCHAR(60)',
'allow_null' => false,
'default' => '\'\''
)
),
'PRIMARY KEY' => array('id')
);
$db->create_table('censoring', $schema) or error('Unable to create censoring table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'conf_name' => array(
'datatype' => 'VARCHAR(255)',
'allow_null' => false,
'default' => '\'\''
),
'conf_value' => array(
'datatype' => 'TEXT',
'allow_null' => true
)
),
'PRIMARY KEY' => array('conf_name')
);
$db->create_table('config', $schema) or error('Unable to create config table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'group_id' => array(
'datatype' => 'INT(10)',
'allow_null' => false,
'default' => '0'
),
'forum_id' => array(
'datatype' => 'INT(10)',
'allow_null' => false,
'default' => '0'
),
'read_forum' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'post_replies' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'post_topics' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
)
),
'PRIMARY KEY' => array('group_id', 'forum_id')
);
$db->create_table('forum_perms', $schema) or error('Unable to create forum_perms table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'forum_name' => array(
'datatype' => 'VARCHAR(80)',
'allow_null' => false,
'default' => '\'New forum\''
),
'forum_desc' => array(
'datatype' => 'TEXT',
'allow_null' => true
),
'redirect_url' => array(
'datatype' => 'VARCHAR(100)',
'allow_null' => true
),
'moderators' => array(
'datatype' => 'TEXT',
'allow_null' => true
),
'num_topics' => array(
'datatype' => 'MEDIUMINT(8) UNSIGNED',
'allow_null' => false,
'default' => '0'
),
'num_posts' => array(
'datatype' => 'MEDIUMINT(8) UNSIGNED',
'allow_null' => false,
'default' => '0'
),
'last_post' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => true
),
'last_post_id' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => true
),
'last_poster' => array(
'datatype' => 'VARCHAR(200)',
'allow_null' => true
),
'sort_by' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'disp_position' => array(
'datatype' => 'INT(10)',
'allow_null' => false,
'default' => '0'
),
'cat_id' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '0'
)
),
'PRIMARY KEY' => array('id')
);
$db->create_table('forums', $schema) or error('Unable to create forums table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'g_id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'g_title' => array(
'datatype' => 'VARCHAR(50)',
'allow_null' => false,
'default' => '\'\''
),
'g_user_title' => array(
'datatype' => 'VARCHAR(50)',
'allow_null' => true
),
'g_promote_min_posts' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '0'
),
'g_promote_next_group' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '0'
),
'g_moderator' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_mod_edit_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_mod_rename_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_mod_change_passwords' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_mod_ban_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_mod_promote_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'g_read_board' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_view_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_post_replies' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_post_topics' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_edit_posts' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_delete_posts' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_delete_topics' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_post_links' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_set_title' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_search' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_search_users' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_send_email' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '1'
),
'g_post_flood' => array(
'datatype' => 'SMALLINT(6)',
'allow_null' => false,
'default' => '30'
),
'g_search_flood' => array(
'datatype' => 'SMALLINT(6)',
'allow_null' => false,
'default' => '30'
),
'g_email_flood' => array(
'datatype' => 'SMALLINT(6)',
'allow_null' => false,
'default' => '60'
),
'g_report_flood' => array(
'datatype' => 'SMALLINT(6)',
'allow_null' => false,
'default' => '60'
)
),
'PRIMARY KEY' => array('g_id')
);
$db->create_table('groups', $schema) or error('Unable to create groups table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'user_id' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '1'
),
'ident' => array(
'datatype' => 'VARCHAR(200)',
'allow_null' => false,
'default' => '\'\''
),
'logged' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => false,
'default' => '0'
),
'idle' => array(
'datatype' => 'TINYINT(1)',
'allow_null' => false,
'default' => '0'
),
'last_post' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => true
),
'last_search' => array(
'datatype' => 'INT(10) UNSIGNED',
'allow_null' => true
),
),
'UNIQUE KEYS' => array(
'user_id_ident_idx' => array('user_id', 'ident')
),
'INDEXES' => array(
'ident_idx' => array('ident'),
'logged_idx' => array('logged')
)
);
if ($db_type == 'mysql' || $db_type == 'mysqli' || $db_type == 'mysql_innodb' || $db_type == 'mysqli_innodb')
{
$schema['UNIQUE KEYS']['user_id_ident_idx'] = array('user_id', 'ident(25)');
$schema['INDEXES']['ident_idx'] = array('ident(25)');
}
if ($db_type == 'mysql_innodb' || $db_type == 'mysqli_innodb')
$schema['ENGINE'] = 'InnoDB';
$db->create_table('online', $schema) or error('Unable to create online table', __FILE__, __LINE__, $db->error());
$schema = array(
'FIELDS' => array(
'id' => array(
'datatype' => 'SERIAL',
'allow_null' => false
),
'poster' => array(