-
Notifications
You must be signed in to change notification settings - Fork 13
/
AP_DB_management.php
908 lines (843 loc) · 25.3 KB
/
AP_DB_management.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
<?php
/**
* This plugin can be used to make database backups and to restore from these
* backups. Furthermore, it allows you to run queries and to perform simple
* database maintenance.
*
* Copyright (C) 2005 Connor Dunn ([email protected])
* License: http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
*/
// Make sure no one attempts to run this script "directly"
if (!defined('PUN'))
exit;
// Tell admin_loader.php that this is indeed a plugin and that it is loaded
define('PUN_PLUGIN_LOADED', 1);
define('PLUGIN_VERSION',1.3);
//
// Adapted from various sources including: Phpbb, Phpbbmyadmin, Phpmyadmin
//
//
// Increase maximum execution time, but don't complain about it if it isn't
// allowed.
//
@set_time_limit(0);
function gzip_PrintFourChars($Val)
{
for ($i = 0; $i < 4; $i ++)
{
$return = chr($Val % 256);
$Val = floor($Val / 256);
}
return $return;
}
//db functions (not in punbb dblayer)
function field_name($offset, $query_id = 0)
{
global $db_type;
if(!$query_id)
{
$query_id = $this->query_result;
}
if($query_id)
{
switch($db_type)
{
case 'mysql':
$result = @mysql_field_name($query_id, $offset);
break;
case 'mysqli':
$finfo = @mysqli_fetch_field_direct($query_id, $offset);
$result = $finfo->name;
}
return $result;
}
else
return false;
}
function num_fields($query_id = 0)
{
global $db_type;
if (!$query_id)
$query_id = $this->query_result;
switch($db_type)
{
case 'mysql':
return ($query_id) ? @mysql_num_fields($query_id) : false;
break;
case 'mysqli':
return ($query_id) ? @mysqli_num_fields($query_id) : false;
}
}
//
// This function returns the "CREATE TABLE" syntax for mysql dbms...
//
function get_table_def_mysql($table, $crlf)
{
global $drop, $db;
$schema_create = "";
$field_query = "SHOW FIELDS FROM $table";
$key_query = "SHOW KEYS FROM $table";
$schema_create = "DROP TABLE IF EXISTS $table;$crlf";
$schema_create .= "CREATE TABLE $table($crlf";
//
// Ok lets grab the fields...
//
$result = $db->query($field_query);
if(!$result)
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Failed to get field list');
}
while ($row = $db->fetch_assoc($result))
{
$schema_create .= ' ' . $row['Field'] . ' ' . $row['Type'];
if(!empty($row['Default']))
{
$schema_create .= ' DEFAULT \'' . $row['Default'] . '\'';
}
if($row['Null'] != "YES")
{
$schema_create .= ' NOT NULL';
}
if($row['Extra'] != "")
{
$schema_create .= ' ' . $row['Extra'];
}
$schema_create .= ",$crlf";
}
//
// Drop the last ',$crlf' off ;)
//
$schema_create = ereg_replace(',' . $crlf . '$', "", $schema_create);
//
// Get any Indexed fields from the database...
//
$result = $db->query($key_query);
if(!$result)
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Failed to get Indexed Fields');
}
while($row = $db->fetch_assoc($result))
{
$kname = $row['Key_name'];
if(($kname != 'PRIMARY') && ($row['Non_unique'] == 0))
{
$kname = "UNIQUE|$kname";
}
if (!isset($index[$kname]))
$index[$kname] = array();
$index[$kname][] = $row['Column_name'];
}
while(list($x, $columns) = @each($index))
{
$schema_create .= ", $crlf";
if($x == 'PRIMARY')
{
$schema_create .= ' PRIMARY KEY (' . implode($columns, ', ') . ')';
}
elseif (substr($x,0,6) == 'UNIQUE')
{
$schema_create .= ' UNIQUE ' . substr($x,7) . ' (' . implode($columns, ', ') . ')';
}
else
{
$schema_create .= " KEY $x (" . implode($columns, ', ') . ')';
}
}
$schema_create .= "$crlf);";
if(get_magic_quotes_runtime())
{
return(stripslashes($schema_create));
}
else
{
return($schema_create);
}
} // End get_table_def_mysql
//
// This function is for getting the data from a mysql table.
//
function get_table_content_mysql($table, $handler)
{
global $db;
// Grab the data from the table.
if (!($result = $db->query("SELECT * FROM $table")))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Failed to get table content');
}
// Loop through the resulting rows and build the sql statement.
if ($row = $db->fetch_assoc($result))
{
$handler("\n#\n# Table Data for $table\n#\n");
$field_names = array();
// Grab the list of field names.
$num_fields = num_fields($result);
$table_list = '(';
for ($j = 0; $j < $num_fields; $j++)
{
$field_names[$j] = field_name($j, $result);
$table_list .= (($j > 0) ? ', ' : '') . $field_names[$j];
}
$table_list .= ')';
do
{
// Start building the SQL statement.
$schema_insert = "INSERT INTO $table $table_list VALUES(";
// Loop through the rows and fill in data for each column
for ($j = 0; $j < $num_fields; $j++)
{
$schema_insert .= ($j > 0) ? ', ' : '';
if(!isset($row[$field_names[$j]]))
{
//
// If there is no data for the column set it to null.
// There was a problem here with an extra space causing the
// sql file not to reimport if the last column was null in
// any table. Should be fixed now :) JLH
//
$schema_insert .= 'NULL';
}
elseif ($row[$field_names[$j]] != '')
{
$schema_insert .= '\'' . addslashes($row[$field_names[$j]]) . '\'';
}
else
{
$schema_insert .= '\'\'';
}
}
$schema_insert .= ');';
// Go ahead and send the insert statement to the handler function.
$handler(trim($schema_insert));
}
while ($row = $db->fetch_assoc($result));
}
return(true);
}
function output_table_content($content)
{
global $tempfile;
//fwrite($tempfile, $content . "\n");
//$backup_sql .= $content . "\n";
echo $content ."\n";
return;
}
function remove_remarks($sql)
{
$lines = explode("\n", $sql);
// try to keep mem. use down
$sql = "";
$linecount = count($lines);
$output = "";
for ($i = 0; $i < $linecount; $i++)
{
if ((($i != ($linecount - 1)) || (strlen($lines[$i]) > 0)) and $lines[$i])
{
if ($lines[$i][0] != "#")
{
$output .= $lines[$i] . "\n";
// Trading a bit of speed for lower mem. use here.
$lines[$i] = "";
}
}
}
return $output;
}
function split_sql_file($sql, $delimiter)
{
// Split up our string into "possible" SQL statements.
$tokens = explode($delimiter, $sql);
// try to save mem.
$sql = "";
$output = array();
// we don't actually care about the matches preg gives us.
$matches = array();
// this is faster than calling count($oktens) every time thru the loop.
$token_count = count($tokens);
for ($i = 0; $i < $token_count; $i++)
{
// Don't wanna add an empty string as the last thing in the array.
if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0)))
{
// This is the total number of single quotes in the token.
$total_quotes = preg_match_all("/'/", $tokens[$i], $matches);
// Counts single quotes that are preceded by an odd number of backslashes,
// which means they're escaped quotes.
$escaped_quotes = preg_match_all("/(?<!\\\\)(\\\\\\\\)*\\\\'/", $tokens[$i], $matches);
$unescaped_quotes = $total_quotes - $escaped_quotes;
// If the number of unescaped quotes is even, then the delimiter did NOT occur inside a string literal.
if (($unescaped_quotes % 2) == 0)
{
// It's a complete sql statement.
$output[] = $tokens[$i];
// save memory.
$tokens[$i] = "";
}
else
{
// incomplete sql statement. keep adding tokens until we have a complete one.
// $temp will hold what we have so far.
$temp = $tokens[$i] . $delimiter;
// save memory..
$tokens[$i] = "";
// Do we have a complete statement yet?
$complete_stmt = false;
for ($j = $i + 1; (!$complete_stmt && ($j < $token_count)); $j++)
{
// This is the total number of single quotes in the token.
$total_quotes = preg_match_all("/'/", $tokens[$j], $matches);
// Counts single quotes that are preceded by an odd number of backslashes,
// which means they're escaped quotes.
$escaped_quotes = preg_match_all("/(?<!\\\\)(\\\\\\\\)*\\\\'/", $tokens[$j], $matches);
$unescaped_quotes = $total_quotes - $escaped_quotes;
if (($unescaped_quotes % 2) == 1)
{
// odd number of unescaped quotes. In combination with the previous incomplete
// statement(s), we now have a complete statement. (2 odds always make an even)
$output[] = $temp . $tokens[$j];
// save memory.
$tokens[$j] = "";
$temp = "";
// exit the loop.
$complete_stmt = true;
// make sure the outer loop continues at the right point.
$i = $j;
}
else
{
// even number of unescaped quotes. We still don't have a complete statement.
// (1 odd and 1 even always make an odd)
$temp .= $tokens[$j] . $delimiter;
// save memory.
$tokens[$j] = "";
}
} // for..
} // else
}
}
return $output;
}
//
// End Functions
// -------------
//
// Begin program proper
//
//Check this is a mysql punbb setup
switch($db_type)
{
case 'mysql':
case 'mysqli':
break;
default:
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Sorry your database type is not yet supported');
}
//Start actual db stuff
if (isset($_POST['backupstart'])) {
//output sql dump
$tables = array('bans', 'categories', 'censoring', 'config', 'forum_perms', 'forums', 'groups', 'online', 'posts', 'ranks', 'reports', 'search_cache', 'search_matches', 'search_words', 'subscriptions', 'topics', 'users');
$additional_tables = (isset($_POST['additional_tables'])) ? $_POST['additional_tables'] : ( (isset($HTTP_GET_VARS['additional_tables'])) ? $HTTP_GET_VARS['additional_tables'] : "" );
$backup_type = (isset($_POST['backup_type'])) ? $_POST['backup_type'] : ( (isset($HTTP_GET_VARS['backup_type'])) ? $HTTP_GET_VARS['backup_type'] : "" );
$gzipcompress = (!empty($_POST['gzipcompress'])) ? $_POST['gzipcompress'] : ( (!empty($HTTP_GET_VARS['gzipcompress'])) ? $HTTP_GET_VARS['gzipcompress'] : 0 );
$drop = (!empty($_POST['drop'])) ? intval($_POST['drop']) : ( (!empty($HTTP_GET_VARS['drop'])) ? intval($HTTP_GET_VARS['drop']) : 0 );
if(!empty($additional_tables))
{
if(ereg(",", $additional_tables))
{
$additional_tables = split(",", $additional_tables);
for($i = 0; $i < count($additional_tables); $i++)
{
$tables[] = trim($additional_tables[$i]);
}
}
else
{
$tables[] = trim($additional_tables);
}
}
if(!empty($_POST["additional_tables_check"]))
{
$additional_tables_check = $_POST["additional_tables_check"];
for($i = 0; $i < count($additional_tables_check); $i++)
{
$tables[] = trim($additional_tables_check[$i]);
}
}
header("Pragma: no-cache");
$do_gzip_compress = FALSE;
if( $gzipcompress )
{
$phpver = phpversion();
if($phpver >= "4.0")
{
if(extension_loaded("zlib"))
{
$do_gzip_compress = TRUE;
}
}
}
if($do_gzip_compress)
{
@ob_start();
@ob_implicit_flush(0);
header("Content-Type: application/x-gzip; name=\"punbb_db_backup." . gmdate("Y-m-d") . ".sql.gz\"");
header("Content-disposition: attachment; filename=punbb_db_backup." . gmdate("Y-m-d") . ".sql.gz");
}
else
{
header("Content-Type: text/x-delimtext; name=\"punbb_db_backup." . gmdate("Y-m-d") . ".sql\"");
header("Content-disposition: attachment; filename=punbb_db_backup." . gmdate("Y-m-d") . ".sql");
}
//
// Build the sql script file...
//
echo "#\n";
echo "# Punbb Backup Script\n";
echo "# Dump of tables for $db_name\n";
echo "#\n# DATE : " . gmdate("d-m-Y H:i:s", time()) . " GMT\n";
echo "#\n";
for($i = 0; $i < count($tables); $i++)
{
$table_name = $tables[$i];
$table_def_function = "get_table_def_mysql";
$table_content_function = "get_table_content_mysql";
if($backup_type != 'data')
{
echo "\n#\n# TABLE: " . $db->prefix . $table_name . "\n#\n\n";
echo $table_def_function($db->prefix . $table_name, "\n") . "\n";
}
if($backup_type != 'structure')
{
$table_content_function($db->prefix . $table_name, "output_table_content");
}
}
if($do_gzip_compress)
{
$Size = ob_get_length();
$Crc = crc32(ob_get_contents());
$contents = gzcompress(ob_get_contents());
ob_end_clean();
echo "\x1f\x8b\x08\x00\x00\x00\x00\x00".substr($contents, 0, strlen($contents) - 4).gzip_PrintFourChars($Crc).gzip_PrintFourChars($Size);
}
exit;
}
elseif ( isset($_POST['restore_start']) ) {
// Restore SQL Dump
//
// Handle the file upload ....
// If no file was uploaded report an error...
//
$backup_file_name = (!empty($HTTP_POST_FILES['backup_file']['name'])) ? $HTTP_POST_FILES['backup_file']['name'] : "";
$backup_file_tmpname = ($HTTP_POST_FILES['backup_file']['tmp_name'] != "none") ? $HTTP_POST_FILES['backup_file']['tmp_name'] : "";
$backup_file_type = (!empty($HTTP_POST_FILES['backup_file']['type'])) ? $HTTP_POST_FILES['backup_file']['type'] : "";
if($backup_file_tmpname == "" || $backup_file_name == "")
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('No file was uploaed or the upload failed, the database was not restored');
}
if( preg_match("/^(text\/[a-zA-Z]+)|(application\/(x\-)?gzip(\-compressed)?)|(application\/octet-stream)$/is", $backup_file_type) )
{
if( preg_match("/\.gz$/is",$backup_file_name) )
{
$do_gzip_compress = FALSE;
$phpver = phpversion();
if($phpver >= "4.0")
{
if(extension_loaded("zlib"))
{
$do_gzip_compress = TRUE;
}
}
if($do_gzip_compress)
{
$gz_ptr = gzopen($backup_file_tmpname, 'rb');
$sql_query = "";
while( !gzeof($gz_ptr) )
{
$sql_query .= gzgets($gz_ptr, 100000);
}
}
else
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Sorry the database could not be restored');
}
}
else
{
$sql_query = fread(fopen($backup_file_tmpname, 'r'), filesize($backup_file_tmpname));
}
}
else
{
message('Error the file name or file format caused an error, the database was not restored');
}
if($sql_query != "")
{
// Strip out sql comments...
$sql_query = remove_remarks($sql_query);
$pieces = split_sql_file($sql_query, ";");
if(defined('PUN_DEBUG'))
{
generate_admin_menu($plugin);
?>
<div class="block">
<h2><span>Debug info</span></h2>
<div class="box">
<div class="inbox">
<p>
<?php
}
$sql_count = count($pieces);
for($i = 0; $i < $sql_count; $i++)
{
$sql = trim($pieces[$i]);
if(!empty($sql))
{
if(defined('PUN_DEBUG'))
{
echo "Executing: $sql\n<br>";
flush();
}
$result = $db->query($sql);
if(!$result)
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Error imported backup file, the database probably has not been restored');
}
}
}
if(defined('PUN_DEBUG'))
{
?>
</p>
</div>
</div>
</div>
<?php
}
}
if(defined('PUN_DEBUG'))
{
?>
<div class="block">
<h2 class="block2"><span>Restore complete</span></h2>
<div class="box">
<div class="inbox">
<p>
<a href="admin_loader.php?plugin=AP_DB_management.php">Back</a>
</p>
</div>
</div>
</div>
<?php
} else {
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Restore Complete');
}
}
elseif (isset($_POST['repairall'])) {
//repair all tables
// Retrieve table list:
$sql = 'SHOW TABLE STATUS';
if (!$result = $db->query($sql))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
// This makes no sense, the board would be dead... :P
message('Tables error, repair failed');
}
$tables = array();
$counter = 0;
while ($row = $db->fetch_assoc($result))
{
$counter++;
$tables[$counter] = $row['Name'];
}
$tablecount = $counter;
// Repair All
for ($i = 1; $i <= $tablecount; $i++)
{
$sql = 'REPAIR TABLE ' . $tables[$i];
if (!$result = $db->query($sql))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('SQL error, repair failed');
}
}
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('All tables repaired');
}
elseif (isset($_POST['optimizeall'])) {
// Retrieve table list:
$sql = 'SHOW TABLE STATUS';
if (!$result = $db->query($sql))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
// This makes no sense, the board would be dead... :P
message('Tables error, optimise failed');
}
$tables = array();
$counter = 0;
while ($row = $db->fetch_assoc($result))
{
$counter++;
$tables[$counter] = $row['Name'];
}
$tablecount = $counter;
// Optimize All
for ($i = 1; $i <= $tablecount; $i++)
{
$sql = 'OPTIMIZE TABLE ' . $tables[$i];
if (!$result = $db->query($sql))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('SQL error, optimise failed');
}
}
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('All tables optimised');
}
elseif (isset($_POST['submit'])) {
//fix for no admin menu
echo "<div>";
$this_query = $_POST['this_query'];
if (empty($this_query))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
//no query error
message('No Query Duh!');
}
// Add a semi-colon to the end if there isn't one:
if ((!strrpos($this_query, ";")) || (substr($this_query, -1) != ';'))
{
$this_query .= ";";
}
$this_query = str_replace(' #__',' '.$db->prefix,$this_query);
// Cut into multiple queries:
$this_query = remove_remarks($this_query);
$queries = split_sql_file($this_query, ";");
$queries = array_map('trim', $queries);
//old query splitter (seems less reliable)
//$queries = explode(';', $this_query, (count(explode(';', $this_query)) - 1));
// For the final normal die message:
$queriesdone = "";
foreach($queries as $query)
{
if (!$query)
continue;
// Add a semi-colon to the end if there isn't one:
if (!strrpos($query, ";"))
{
$query .= ";";
}
$result = $db->query($query);
if (!$result)
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
//query error
message('SQL Error');
}
$queriesdone .= $query."\n";
// Handle output of SELECT statements
$query_words = explode(" ", $query);
if ($db->num_rows($result))
{
if ($db->num_rows($result) > 500) {
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Query result too long to be displayed');
}
// Remember the number of fields (aka columns) and the number of rows:
$field_count = num_fields($result);
$row_count = $db->num_rows($result);
echo '<div><div class="linkst"><div class="inbox"><div><a href="javascript:history.go(-1)" />Go back</a></div></div></div>';
echo '<div class="blocktable"><h2 class="block2"><span>';
echo pun_htmlspecialchars($query);
echo '</span></h2><div class="box"><div class="inbox"><div class="scrollbox" style="max-height: 500px"><table cellspacing="0"><thead><tr>';
// The field header:
for ($i = 0; $i < $field_count; $i++)
{
$field[$i] = field_name($i, $result);
echo '<th>';
echo pun_htmlspecialchars($field[$i]);
echo '</th>';
}
echo '</tr></thead><tbody>';
// OK, we have the data... let's put it out to a thingy!
while ($row = $db->fetch_assoc($result))
{
echo '<tr>';
for ($i = 0; $i < $field_count; $i++)
{
echo '<td>';
$temp = isset($row[$field[$i]]) ? pun_htmlspecialchars($row[$field[$i]]) : ' ';
echo $temp;
echo '</td>';
}
echo "</tr>";
}
echo '</tbody></table></div></div></div></div>';
}
elseif (substr(trim($query), 0, 6) == 'SELECT') {
echo '<div><div class="linkst"><div class="inbox"><div><a href="javascript:history.go(-1)" />Go back</a></div></div></div>';
echo '<div class="block"><h2 class="block2"><span>'.pun_htmlspecialchars($query).'</span></h2><div class="box"><div class="inbox"><p>';
echo "No data found";
echo '</p></div></div></div>';
}
}
echo '<div class="block"><h2 class="block2"><span>Queries Done</span></h2><div class="box"><div class="inbox"><p>';
echo nl2br(pun_htmlspecialchars($queriesdone));
echo '</p></div></div></div>';
echo '<div><div class="linkst"><div class="inbox"><div><a href="javascript:history.go(-1)" />Go back</a></div></div></div>';
}
else {
generate_admin_menu($plugin);
?>
<div id="exampleplugin" class="plugin blockform">
<h2><span>Database management - v<?php echo PLUGIN_VERSION ?></span></h2>
<div class="box">
<div class="inbox">
<p>Lets you perform commonly used database functions<br />Created by: Connorhd<br />Code mainly inspired from: phpbb and phpmyadmin</p>
</div>
</div>
</div>
<div class="blockform">
<h2 class="block2"><span>Backup/Restore</span></h2>
<div class="box">
<form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>">
<div class="inform">
<fieldset>
<legend>Backup options</legend>
<div class="infldset">
<p>Here you can back up all your PunBB-related data. If your server supports it you may also gzip-compress the file to reduce its size before download.</p>
<table cellspacing="0">
<tr>
<th scope="row">Backup type</th>
<td>
<input type="radio" name="backup_type" value="full" checked="checked" /> Full <input type="radio" name="backup_type" value="structure" /> Structure Only <input type="radio" name="backup_type" value="data" /> Data Only
<span>The type of backup, full will backup all of the data and table structure, whereas structure only and data only will only backup structure or data, a full backup is recommended</span>
</td>
</tr>
<tr>
<th scope="row">Additional tables</th>
<td>
<span><?php
$sql = 'SHOW TABLE STATUS';
if (!$result = $db->query($sql))
{
// Display the admin navigation menu
generate_admin_menu( $plugin );
message('Tables error');
}
$pun_tables = array('bans', 'categories', 'censoring', 'config', 'forum_perms', 'forums', 'groups', 'online', 'posts', 'ranks', 'reports', 'search_cache', 'search_matches', 'search_words', 'subscriptions', 'topics', 'users');
$tables = array();
$counter = 0;
while ($row = $db->fetch_assoc($result))
{
$counter++;
$tables[$counter] = $row['Name'];
}
$tablecount = $counter;
$table_count = 0;
if (($tablecount < 32) || ($db->prefix)) {
for ($i = 1; $i <= $tablecount; $i++)
{
if ((substr($tables[$i], 0, strlen($db->prefix)) == $db->prefix) && ($table_count < 32)) {
$table_count = $table_count + 1;
$cur_table = substr($tables[$i], strlen($db->prefix), strlen($tables[$i]));
if (!in_array($cur_table ,$pun_tables))
echo '<input name="additional_tables_check[]" type="checkbox" value="'.$cur_table.'"> '.$cur_table.'<br />';
}
}
if ($table_count == 17) {
echo 'None detected';
}
}
else {
?>
<input class="post" type="text" name="additional_tables" />
<span>Enter table names comma separated, excluding table prefix.
<?php
}
?> </span>
</td>
</tr>
<tr>
<th scope="row">Gzip compress file</th>
<td><input type="radio" name="gzipcompress" value="1" /> <strong>Yes</strong> <input type="radio" name="gzipcompress" value="0" checked="checked" /> <strong>No</strong></td>
</tr>
</table>
</div>
</fieldset>
</div>
<p class="submittop"><input type="submit" name="backupstart" value="Start backup" class="mainoption" /></p>
</form>
<form enctype="multipart/form-data" method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>">
<div class="inform">
<fieldset>
<legend>Restore options</legend>
<div class="infldset">
<p>This will perform a full restore of all PunBB tables from a saved file. If your server supports it, you may upload a gzip-compressed text file and it will automatically be decompressed. <b>WARNING</b>: This will overwrite any existing data. The restore may take a long time to process, so please do not move from this page until it is complete.</p>
<table cellspacing="1">
<tr>
<th scope="row">Restore from file</th>
<td><input type="file" name="backup_file" /></td>
</tr>
</table>
</div>
</fieldset>
</div>
<p class="submittop"><input type="submit" name="restore_start" value="Start restore" class="mainoption" /></p>
</form>
</div>
<h2 class="block2"><span>Additional options</span></h2>
<div class="box">
<form action="<?php echo $_SERVER['REQUEST_URI'] ?>" method="post">
<div class="inform">
<fieldset>
<legend>Run SQL query</legend>
<div class="infldset">
<p>This allows you to run basically any command you want on the database (useful for fixing things you messed up), use #__ for your database prefix (e.g. "SELECT * FROM #__online") also use a ; at the end of each query when running multiple queries, linebreaks are irrelevant. WARNING: only use this if you know what you are doing, messing with it could trash your database!</p>
<table cellspacing="1">
<tr>
<th scope="row">SQL query</th>
<td><textarea name="this_query" rows="5" cols="50"></textarea></td>
</tr>
</table>
</div>
</fieldset>
</div>
<div class="inform">
<p class="submittop"><input type="submit" name="submit" value="Run query" /></p>
<fieldset>
<legend>Additional Functions</legend>
<div class="infldset">
<p>Additional features to help run a database, optimise and repair both do what they say</p>
<input type="submit" name="repairall" value="Repair all tables" /> <input type="submit" name="optimizeall" value="Optimise all tables" />
</div>
</fieldset>
</div>
</form>
</div>
</div>
<?php
}