-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.php
1468 lines (1275 loc) · 54.3 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) 2002-2005 Rickard Andersson ([email protected])
This file is part of PunBB.
PunBB is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.
PunBB is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston,
MA 02111-1307 USA
************************************************************************/
// The PunBB version this script installs
// 1.2.12 Fix
// punbb 1.2.13 security update, see http://www.punbb.org/download/hdiff/hdiff-1.2.12_to_1.2.13.html
// punbb 1.2.14 update see http://www.punbb.org/download/hdiff/hdiff-1.2.13_to_1.2.14.html
// punbb 1.2.15 security update see http://www.punbb.org/download/hdiff/hdiff-1.2.14_to_1.2.15.html
// punbb 1.2.16 update see http://punbb.org/download/hdiff/hdiff-1.2.15_to_1.2.16.html and http://punbb.org/download/changelogs/1.2.15_to_1.2.16.txt
// punbb 1.2.17 update see http://punbb.org/download/hdiff/hdiff-1.2.16_to_1.2.17.html and http://punbb.org/forums/viewtopic.php?id=18460
// punbb 1.2.19 update see http://punbb.informer.com/download/hdiff/hdiff-1.2.17_to_1.2.19.html and http://punbb.informer.com/forums/topic/19539/punbb-1219/
// punbb 1.2.22 update see http://punbb.informer.com/download/hdiff/hdiff-1.2.21_to_1.2.22.html
// punbb 1.2.23 update see http://punbb.informer.com/download/hdiff/hdiff-1.2.22_to_1.2.23.html
$punbb_version = '1.2.23';
$mybestbb_version = '2.0.4';
define('PUN_ROOT', './');
if (file_exists(PUN_ROOT.'config.php'))
exit('The file \'config.php\' already exists which would mean that PunBB is already installed. You should go <a href="index.php">here</a> instead.');
// Make sure we are running at least PHP 4.1.0
if (intval(str_replace('.', '', phpversion())) < 410)
exit('You are running PHP version '.PHP_VERSION.'. PunBB requires at least PHP 4.1.0 to run properly. You must upgrade your PHP installation before you can continue.');
// Disable error reporting for uninitialized variables
error_reporting(E_ALL);
// Turn off PHP time limit
@set_time_limit(0);
if (!isset($_POST['form_sent']))
{
// Determine available database extensions
$dual_mysql = false;
$db_extensions = array();
if (function_exists('mysqli_connect'))
$db_extensions[] = array('mysqli', 'MySQL Improved');
if (function_exists('mysql_connect'))
{
$db_extensions[] = array('mysql', 'MySQL Standard');
if (count($db_extensions) > 1)
$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))
exit('This PHP environment does not have support for any of the databases that PunBB supports. PHP needs to have support for either MySQL, PostgreSQL or SQLite in order for PunBB to be installed.');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PunBB Installation</title>
<link rel="stylesheet" type="text/css" href="style/Oxygen.css" />
<script type="text/javascript">
<!--
function process_form(the_form)
{
var element_names = new Object()
element_names["req_db_type"] = "Database type"
element_names["req_db_host"] = "Database server hostname"
element_names["req_db_name"] = "Database name"
element_names["db_prefix"] = "Table prefix"
element_names["req_username"] = "Administrator username"
element_names["req_password1"] = "Administrator password 1"
element_names["req_password2"] = "Administrator password 2"
element_names["req_email"] = "Administrator's e-mail"
element_names["req_base_url"] = "Base URL"
if (document.all || document.getElementById)
{
for (i = 0; i < the_form.length; ++i)
{
var elem = the_form.elements[i]
if (elem.name && elem.name.substring(0, 4) == "req_")
{
if (elem.type && (elem.type=="text" || elem.type=="textarea" || elem.type=="password" || elem.type=="file") && elem.value=='')
{
alert("\"" + element_names[elem.name] + "\" is a required field in this form.")
elem.focus()
return false
}
}
}
}
return true
}
// -->
</script>
</head>
<body onload="document.getElementById('install').req_db_type.focus()">
<div id="puninstall" style="margin: auto 10% auto 10%">
<div class="pun">
<div class="block">
<h2><span>PunBB Installation</span></h2>
<div class="box">
<div class="inbox">
<p>Welcome to PunBB installation! You are about to install PunBB. In order to install PunBB you must complete the form set out below. If you encounter any difficulties with the installation, please refer to the documentation.</p>
</div>
</div>
</div>
<div class="blockform">
<h2><span>Install PunBB 1.2</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" /></div>
<div class="inform">
<div class="forminfo">
<h3>Database setup</h3>
<p>Please enter the requested information in order to setup your database for PunBB. You must know all the information asked for before proceeding with the installation.</p>
</div>
<fieldset>
<legend>Select your database type</legend>
<div class="infldset">
<p>PunBB currently supports MySQL, PostgreSQL and SQLite. If your database of choice is missing from the drop-down menu below, it means this PHP environment does not have support for that particular database. More information regarding support for particular versions of each database can be found in the FAQ.</p>
<?php if ($dual_mysql): ?> <p>PunBB has detected that your PHP environment supports two different ways of communicating with MySQL. The two options are called standard and improved. If you are uncertain which one to use, start by trying improved and if that fails, try standard.</p>
<?php endif; ?> <label><strong>Database type</strong>
<br /><select name="req_db_type">
<?php
foreach ($db_extensions as $db_type)
echo "\t\t\t\t\t\t\t".'<option value="'.$db_type[0].'">'.$db_type[1].'</option>'."\n";
?>
</select>
<br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter your database server hostname</legend>
<div class="infldset">
<p>The address of the database server (example: localhost, db.myhost.com or 192.168.0.15). You can specify a custom port number if your database doesn't run on the default port (example: localhost:3580). For SQLite support, just enter anything or leave it at 'localhost'.</p>
<label><strong>Database server hostname</strong><br /><input type="text" name="req_db_host" value="localhost" size="50" maxlength="100" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter then name of your database</legend>
<div class="infldset">
<p>The name of the database that PunBB will be installed into. The database must exist. For SQLite, this is the relative path to the database file. If the SQLite database file does not exist, PunBB will attempt to create it.</p>
<label for="req_db_name"><strong>Database name</strong><br /><input id="req_db_name" type="text" name="req_db_name" size="30" maxlength="50" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter your database username and password</legend>
<div class="infldset">
<p>Enter the username and password with which you connect to the database. Ignore for SQLite.</p>
<label class="conl">Database username<br /><input type="text" name="db_username" size="30" maxlength="50" /><br /></label>
<label class="conl">Database password<br /><input type="text" name="db_password" size="30" maxlength="50" /><br /></label>
<div class="clearer"></div>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter database table prefix</legend>
<div class="infldset">
<p>If you like you can specify a table prefix. This way you can run multiple copies of PunBB in the same database (example: foo_).</p>
<label>Table prefix<br /><input id="db_prefix" type="text" name="db_prefix" size="20" maxlength="30" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<div class="forminfo">
<h3>Administration setup</h3>
<p>Please enter the requested information in order to setup an administrator for your PunBB installation</p>
</div>
<fieldset>
<legend>Enter Administrators username</legend>
<div class="infldset">
<p>The username of the forum administrator. You can later create more administrators and moderators. Usernames can be between 2 and 25 characters long.</p>
<label><strong>Administrator username</strong><br /><input type="text" name="req_username" size="25" maxlength="25" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter and confirm Administrator password</legend>
<div class="infldset">
<p>Passwords can be between 4 and 16 characters long. Passwords are case sensitive.</p>
<label class="conl"><strong>Password</strong><br /><input id="req_password1" type="text" name="req_password1" size="16" /><br /></label>
<label class="conl"><strong>Confirm password</strong><br /><input type="text" name="req_password2" size="16" /><br /></label>
<div class="clearer"></div>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter Administrator's e-mail</legend>
<div class="infldset">
<p>The e-mail address of the forum administrator.</p>
<label for="req_email"><strong>Administrator's e-mail</strong><br /><input id="req_email" type="text" name="req_email" size="50" maxlength="50" /><br /></label>
</div>
</fieldset>
</div>
<div class="inform">
<fieldset>
<legend>Enter the Base URL of your PunBB installation</legend>
<div class="infldset">
<p>The URL (without trailing slash) of your PunBB forum (example: http://forum.myhost.com or http://myhost.com/~myuser). This <strong>must</strong> be correct or administrators and moderators will not be able to submit any forms. Please note that the preset value below is just an educated guess by PunBB.</p>
<label><strong>Base URL</strong><br /><input type="text" name="req_base_url" value="http://<?php echo $_SERVER['SERVER_NAME'].str_replace('\\', '/', dirname($_SERVER['SCRIPT_NAME'])) ?>" size="60" maxlength="100" /><br /></label>
</div>
</fieldset>
</div>
<p><input type="submit" name="start" value="Start install" /></p>
</form>
</div>
</div>
</div>
</div>
</body>
</html>
<?php
}
else
{
//
// Strip slashes only if magic_quotes_gpc is on.
//
function unescape($str)
{
return (get_magic_quotes_gpc() == 1) ? stripslashes($str) : $str;
}
//
// Compute a hash of $str.
// Uses sha1() if available. If not, SHA1 through mhash() if available. If not, fall back on md5().
//
function pun_hash($str)
{
if (function_exists('sha1')) // Only in PHP 4.3.0+
return sha1($str);
else if (function_exists('mhash')) // Only if Mhash library is loaded
return bin2hex(mhash(MHASH_SHA1, $str));
else
return md5($str);
}
//
// A temporary replacement for the full error handler found in functions.php.
// It's here because a function called error() must be callable in the database abstraction layer.
//
function error($message, $file = false, $line = false, $db_error = false)
{
if ($file !== false && $line !== false)
echo '<strong style="color: A00000">An error occured on line '.$line.' in file '.$file.'.</strong><br /><br />';
else
echo '<strong style="color: A00000">An error occured.</strong><br /><br />';
echo '<strong>PunBB reported:</strong> '.htmlspecialchars($message).'<br /><br />';
if ($db_error !== false)
echo '<strong>Database reported:</strong> '.htmlspecialchars($db_error['error_msg']).(($db_error['error_no']) ? ' (Errno: '.$db_error['error_no'].')' : '');
exit;
}
$db_type = $_POST['req_db_type'];
$db_host = trim($_POST['req_db_host']);
$db_name = trim($_POST['req_db_name']);
$db_username = unescape(trim($_POST['db_username']));
$db_password = unescape(trim($_POST['db_password']));
$db_prefix = trim($_POST['db_prefix']);
$username = unescape(trim($_POST['req_username']));
$email = strtolower(trim($_POST['req_email']));
$password1 = unescape(trim($_POST['req_password1']));
$password2 = unescape(trim($_POST['req_password2']));
// Make sure base_url doesn't end with a slash
if (substr($_POST['req_base_url'], -1) == '/')
$base_url = substr($_POST['req_base_url'], 0, -1);
else
$base_url = $_POST['req_base_url'];
// Validate username and passwords
if (strlen($username) < 2)
error('Usernames must be at least 2 characters long. Please go back and correct.');
if (strlen($password1) < 4)
error('Passwords must be at least 4 characters long. Please go back and correct.');
if ($password1 != $password2)
error('Passwords do not match. Please go back and correct.');
if (!strcasecmp($username, 'Guest'))
error('The username guest is reserved. Please go back and correct.');
if (preg_match('/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/', $username))
error('Usernames may not be in the form of an IP address. Please go back and correct.');
if (preg_match('#\[b\]|\[/b\]|\[u\]|\[/u\]|\[i\]|\[/i\]|\[color|\[/color\]|\[quote\]|\[/quote\]|\[code\]|\[/code\]|\[img\]|\[/img\]|\[url|\[/url\]|\[email|\[/email\]#i', $username))
error('Usernames may not contain any of the text formatting tags (BBCode) that the forum uses. Please go back and correct.');
if (strlen($email) > 50 || !preg_match('/^(([^<>()[\]\\.,;:\s@"\']+(\.[^<>()[\]\\.,;:\s@"\']+)*)|("[^"\']+"))@((\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\])|(([a-zA-Z\d\-]+\.)+[a-zA-Z]{2,}))$/', $email))
error('The administrator e-mail address you entered is invalid. Please go back and correct.');
// Load the appropriate DB layer class
switch ($db_type)
{
case 'mysql':
require PUN_ROOT.'include/dblayer/mysql.php';
break;
case 'mysqli':
require PUN_ROOT.'include/dblayer/mysqli.php';
break;
case 'pgsql':
require PUN_ROOT.'include/dblayer/pgsql.php';
break;
case 'sqlite':
require PUN_ROOT.'include/dblayer/sqlite.php';
break;
default:
error('\''.$db_type.'\' is not a valid database type.');
}
// Create the database object (and connect/select db)
$db = new DBLayer($db_host, $db_username, $db_password, $db_name, $db_prefix, false);
// Do some DB type specific checks
switch ($db_type)
{
case 'mysql':
case 'mysqli':
break;
case 'pgsql':
// Make sure we are running at least PHP 4.3.0 (needed only for PostgreSQL)
if (version_compare(PHP_VERSION, '4.3.0', '<'))
error('You are running PHP version '.PHP_VERSION.'. PunBB requires at least PHP 4.3.0 to run properly when using PostgreSQL. You must upgrade your PHP installation or use a different database before you can continue.');
break;
case 'sqlite':
if (strtolower($db_prefix) == 'sqlite_')
error('The table prefix \'sqlite_\' is reserved for use by the SQLite engine. Please choose a different prefix.');
break;
}
// Make sure PunBB isn't already installed
$result = $db->query('SELECT 1 FROM '.$db_prefix.'users WHERE id=1');
if ($db->num_rows($result))
error('A table called "'.$db_prefix.'users" is already present in the database "'.$db_name.'". This could mean that PunBB is already installed or that another piece of software is installed and is occupying one or more of the table names PunBB requires. If you want to install multiple copies of PunBB in the same database, you must choose a different table prefix.');
// Create all tables
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."bans (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
username VARCHAR(200),
ip VARCHAR(255),
email VARCHAR(50),
message VARCHAR(255),
expire INT(10) UNSIGNED,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$db->start_transaction();
$sql = 'CREATE TABLE '.$db_prefix."bans (
id SERIAL,
username VARCHAR(200),
ip VARCHAR(255),
email VARCHAR(50),
message VARCHAR(255),
expire INT,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$db->start_transaction();
$sql = 'CREATE TABLE '.$db_prefix."bans (
id INTEGER NOT NULL,
username VARCHAR(200),
ip VARCHAR(255),
email VARCHAR(50),
message VARCHAR(255),
expire INTEGER,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'bans. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."categories (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
cat_name VARCHAR(80) NOT NULL DEFAULT 'New Category',
disp_position INT(10) NOT NULL DEFAULT 0,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."categories (
id SERIAL,
cat_name VARCHAR(80) NOT NULL DEFAULT 'New Category',
disp_position INT NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."categories (
id INTEGER NOT NULL,
cat_name VARCHAR(80) NOT NULL DEFAULT 'New Category',
disp_position INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'categories. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."censoring (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
search_for VARCHAR(60) NOT NULL DEFAULT '',
replace_with VARCHAR(60) NOT NULL DEFAULT '',
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."censoring (
id SERIAL,
search_for VARCHAR(60) NOT NULL DEFAULT '',
replace_with VARCHAR(60) NOT NULL DEFAULT '',
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."censoring (
id INTEGER NOT NULL,
search_for VARCHAR(60) NOT NULL DEFAULT '',
replace_with VARCHAR(60) NOT NULL DEFAULT '',
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'censoring. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."config (
conf_name VARCHAR(255) NOT NULL DEFAULT '',
conf_value TEXT,
PRIMARY KEY (conf_name)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."config (
conf_name VARCHAR(255) NOT NULL DEFAULT '',
conf_value TEXT,
PRIMARY KEY (conf_name)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."config (
conf_name VARCHAR(255) NOT NULL DEFAULT '',
conf_value TEXT,
PRIMARY KEY (conf_name)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'config. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."forum_perms (
group_id INT(10) NOT NULL DEFAULT 0,
forum_id INT(10) NOT NULL DEFAULT 0,
read_forum TINYINT(1) NOT NULL DEFAULT 1,
post_replies TINYINT(1) NOT NULL DEFAULT 1,
post_topics TINYINT(1) NOT NULL DEFAULT 1,
PRIMARY KEY (group_id, forum_id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."forum_perms (
group_id INT NOT NULL DEFAULT 0,
forum_id INT NOT NULL DEFAULT 0,
read_forum SMALLINT NOT NULL DEFAULT 1,
post_replies SMALLINT NOT NULL DEFAULT 1,
post_topics SMALLINT NOT NULL DEFAULT 1,
PRIMARY KEY (group_id, forum_id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."forum_perms (
group_id INTEGER NOT NULL DEFAULT 0,
forum_id INTEGER NOT NULL DEFAULT 0,
read_forum INTEGER NOT NULL DEFAULT 1,
post_replies INTEGER NOT NULL DEFAULT 1,
post_topics INTEGER NOT NULL DEFAULT 1,
PRIMARY KEY (group_id, forum_id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'forum_perms. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."forums (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
forum_name VARCHAR(80) NOT NULL DEFAULT 'New forum',
forum_desc TEXT,
redirect_url VARCHAR(100),
moderators TEXT,
num_topics MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
num_posts MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
last_post INT(10) UNSIGNED,
last_post_id INT(10) UNSIGNED,
last_poster VARCHAR(200),
sort_by TINYINT(1) NOT NULL DEFAULT 0,
disp_position INT(10) NOT NULL DEFAULT 0,
cat_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."forums (
id SERIAL,
forum_name VARCHAR(80) NOT NULL DEFAULT 'New forum',
forum_desc TEXT,
redirect_url VARCHAR(100),
moderators TEXT,
num_topics INT NOT NULL DEFAULT 0,
num_posts INT NOT NULL DEFAULT 0,
last_post INT,
last_post_id INT,
last_poster VARCHAR(200),
sort_by SMALLINT NOT NULL DEFAULT 0,
disp_position INT NOT NULL DEFAULT 0,
cat_id INT NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."forums (
id INTEGER NOT NULL,
forum_name VARCHAR(80) NOT NULL DEFAULT 'New forum',
forum_desc TEXT,
redirect_url VARCHAR(100),
moderators TEXT,
num_topics INTEGER NOT NULL DEFAULT 0,
num_posts INTEGER NOT NULL DEFAULT 0,
last_post INTEGER,
last_post_id INTEGER,
last_poster VARCHAR(200),
sort_by INTEGER NOT NULL DEFAULT 0,
disp_position INTEGER NOT NULL DEFAULT 0,
cat_id INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'forums. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."groups (
g_id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
g_title VARCHAR(50) NOT NULL DEFAULT '',
g_user_title VARCHAR(50),
g_read_board TINYINT(1) NOT NULL DEFAULT 1,
g_post_replies TINYINT(1) NOT NULL DEFAULT 1,
g_post_topics TINYINT(1) NOT NULL DEFAULT 1,
g_post_polls TINYINT(1) NOT NULL DEFAULT 1,
g_edit_posts TINYINT(1) NOT NULL DEFAULT 1,
g_delete_posts TINYINT(1) NOT NULL DEFAULT 1,
g_delete_topics TINYINT(1) NOT NULL DEFAULT 1,
g_set_title TINYINT(1) NOT NULL DEFAULT 1,
g_search TINYINT(1) NOT NULL DEFAULT 1,
g_search_users TINYINT(1) NOT NULL DEFAULT 1,
g_edit_subjects_interval SMALLINT(6) NOT NULL DEFAULT 300,
g_post_flood SMALLINT(6) NOT NULL DEFAULT 30,
g_search_flood SMALLINT(6) NOT NULL DEFAULT 30,
PRIMARY KEY (g_id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."groups (
g_id SERIAL,
g_title VARCHAR(50) NOT NULL DEFAULT '',
g_user_title VARCHAR(50),
g_read_board SMALLINT NOT NULL DEFAULT 1,
g_post_replies SMALLINT NOT NULL DEFAULT 1,
g_post_topics SMALLINT NOT NULL DEFAULT 1,
g_post_polls SMALLINT NOT NULL DEFAULT 1,
g_edit_posts SMALLINT NOT NULL DEFAULT 1,
g_delete_posts SMALLINT NOT NULL DEFAULT 1,
g_delete_topics SMALLINT NOT NULL DEFAULT 1,
g_set_title SMALLINT NOT NULL DEFAULT 1,
g_search SMALLINT NOT NULL DEFAULT 1,
g_search_users SMALLINT NOT NULL DEFAULT 1,
g_edit_subjects_interval SMALLINT NOT NULL DEFAULT 300,
g_post_flood SMALLINT NOT NULL DEFAULT 30,
g_search_flood SMALLINT NOT NULL DEFAULT 30,
PRIMARY KEY (g_id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."groups (
g_id INTEGER NOT NULL,
g_title VARCHAR(50) NOT NULL DEFAULT '',
g_user_title VARCHAR(50),
g_read_board INTEGER NOT NULL DEFAULT 1,
g_post_replies INTEGER NOT NULL DEFAULT 1,
g_post_topics INTEGER NOT NULL DEFAULT 1,
g_post_polls INTEGER NOT NULL DEFAULT 1,
g_edit_posts INTEGER NOT NULL DEFAULT 1,
g_delete_posts INTEGER NOT NULL DEFAULT 1,
g_delete_topics INTEGER NOT NULL DEFAULT 1,
g_set_title INTEGER NOT NULL DEFAULT 1,
g_search INTEGER NOT NULL DEFAULT 1,
g_search_users INTEGER NOT NULL DEFAULT 1,
g_edit_subjects_interval INTEGER NOT NULL DEFAULT 300,
g_post_flood INTEGER NOT NULL DEFAULT 30,
g_search_flood INTEGER NOT NULL DEFAULT 30,
PRIMARY KEY (g_id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'groups. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."online (
user_id INT(10) UNSIGNED NOT NULL DEFAULT 1,
ident VARCHAR(200) NOT NULL DEFAULT '',
logged INT(10) UNSIGNED NOT NULL DEFAULT 0,
idle TINYINT(1) NOT NULL DEFAULT 0
) ENGINE=HEAP;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."online (
user_id INT NOT NULL DEFAULT 1,
ident VARCHAR(200) NOT NULL DEFAULT '',
logged INT NOT NULL DEFAULT 0,
idle SMALLINT NOT NULL DEFAULT 0
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."online (
user_id INTEGER NOT NULL DEFAULT 1,
ident VARCHAR(200) NOT NULL DEFAULT '',
logged INTEGER NOT NULL DEFAULT 0,
idle INTEGER NOT NULL DEFAULT 0
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'online. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
// punbb 1.2.14 update see http://www.punbb.org/download/hdiff/hdiff-1.2.13_to_1.2.14.html
// message TEXT NOT NULL DEFAULT '', -> message TEXT,
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."posts (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
poster VARCHAR(200) NOT NULL DEFAULT '',
poster_id INT(10) UNSIGNED NOT NULL DEFAULT 1,
poster_ip VARCHAR(15),
poster_email VARCHAR(50),
message TEXT,
hide_smilies TINYINT(1) NOT NULL DEFAULT 0,
posted INT(10) UNSIGNED NOT NULL DEFAULT 0,
edited INT(10) UNSIGNED,
edited_by VARCHAR(200),
topic_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."posts (
id SERIAL,
poster VARCHAR(200) NOT NULL DEFAULT '',
poster_id INT NOT NULL DEFAULT 1,
poster_ip VARCHAR(15),
poster_email VARCHAR(50),
message TEXT,
hide_smilies SMALLINT NOT NULL DEFAULT 0,
posted INT NOT NULL DEFAULT 0,
edited INT,
edited_by VARCHAR(200),
topic_id INT NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."posts (
id INTEGER NOT NULL,
poster VARCHAR(200) NOT NULL DEFAULT '',
poster_id INTEGER NOT NULL DEFAULT 1,
poster_ip VARCHAR(15),
poster_email VARCHAR(50),
message TEXT,
hide_smilies INTEGER NOT NULL DEFAULT 0,
posted INTEGER NOT NULL DEFAULT 0,
edited INTEGER,
edited_by VARCHAR(200),
topic_id INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'posts. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."ranks (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
rank VARCHAR(50) NOT NULL DEFAULT '',
min_posts MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."ranks (
id SERIAL,
rank VARCHAR(50) NOT NULL DEFAULT '',
min_posts INT NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."ranks (
id INTEGER NOT NULL,
rank VARCHAR(50) NOT NULL DEFAULT '',
min_posts INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'titles. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."reports (
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
post_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
topic_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
forum_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
reported_by INT(10) UNSIGNED NOT NULL DEFAULT 0,
created INT(10) UNSIGNED NOT NULL DEFAULT 0,
message TEXT,
zapped INT(10) UNSIGNED,
zapped_by INT(10) UNSIGNED,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."reports (
id SERIAL,
post_id INT NOT NULL DEFAULT 0,
topic_id INT NOT NULL DEFAULT 0,
forum_id INT NOT NULL DEFAULT 0,
reported_by INT NOT NULL DEFAULT 0,
created INT NOT NULL DEFAULT 0,
message TEXT,
zapped INT,
zapped_by INT,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."reports (
id INTEGER NOT NULL,
post_id INTEGER NOT NULL DEFAULT 0,
topic_id INTEGER NOT NULL DEFAULT 0,
forum_id INTEGER NOT NULL DEFAULT 0,
reported_by INTEGER NOT NULL DEFAULT 0,
created INTEGER NOT NULL DEFAULT 0,
message TEXT,
zapped INTEGER,
zapped_by INTEGER,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'reports. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
// punbb 1.2.14 update
// search_data TEXT NOT NULL DEFAULT '', -> search_data TEXT,
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."search_cache (
id INT(10) UNSIGNED NOT NULL DEFAULT 0,
ident VARCHAR(200) NOT NULL DEFAULT '',
search_data TEXT,
PRIMARY KEY (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."search_cache (
id INT NOT NULL DEFAULT 0,
ident VARCHAR(200) NOT NULL DEFAULT '',
search_data TEXT,
PRIMARY KEY (id)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."search_cache (
id INTEGER NOT NULL DEFAULT 0,
ident VARCHAR(200) NOT NULL DEFAULT '',
search_data TEXT,
PRIMARY KEY (id)
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'search_cache. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."search_matches (
post_id INT(10) UNSIGNED NOT NULL DEFAULT 0,
word_id MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
subject_match TINYINT(1) NOT NULL DEFAULT 0
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."search_matches (
post_id INT NOT NULL DEFAULT 0,
word_id INT NOT NULL DEFAULT 0,
subject_match SMALLINT NOT NULL DEFAULT 0
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."search_matches (
post_id INTEGER NOT NULL DEFAULT 0,
word_id INTEGER NOT NULL DEFAULT 0,
subject_match INTEGER NOT NULL DEFAULT 0
)";
break;
}
$db->query($sql) or error('Unable to create table '.$db_prefix.'search_matches. Please check your settings and try again.', __FILE__, __LINE__, $db->error());
switch ($db_type)
{
case 'mysql':
case 'mysqli':
$sql = 'CREATE TABLE '.$db_prefix."search_words (
id MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
word VARCHAR(20) BINARY NOT NULL DEFAULT '',
PRIMARY KEY (word),
KEY ".$db_prefix."search_words_id_idx (id)
) ENGINE=MyISAM;";
break;
case 'pgsql':
$sql = 'CREATE TABLE '.$db_prefix."search_words (
id SERIAL,
word VARCHAR(20) NOT NULL DEFAULT '',
PRIMARY KEY (word)
)";
break;
case 'sqlite':
$sql = 'CREATE TABLE '.$db_prefix."search_words (
id INTEGER NOT NULL,