1
+ − 1
<?php
+ − 2
47
+ − 3
/* PowerAdmin, a friendly web-based admin tool for PowerDNS.
+ − 4
* See <https://rejo.zenger.nl/poweradmin> for more details.
+ − 5
*
+ − 6
* Copyright 2007, 2008 Rejo Zenger <rejo@zenger.nl>
+ − 7
*
+ − 8
* This program is free software: you can redistribute it and/or modify
+ − 9
* it under the terms of the GNU General Public License as published by
+ − 10
* the Free Software Foundation, either version 3 of the License, or
+ − 11
* (at your option) any later version.
+ − 12
*
+ − 13
* This program is distributed in the hope that it will be useful,
+ − 14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
+ − 15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ − 16
* GNU General Public License for more details.
+ − 17
*
+ − 18
* You should have received a copy of the GNU General Public License
+ − 19
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ − 20
*/
1
+ − 21
+ − 22
include_once ( "inc/header.inc.php" );
+ − 23
require_once ( "inc/config.inc.php" );
+ − 24
require_once ( "inc/database.inc.php" );
+ − 25
+ − 26
// Initialize variables
+ − 27
global $db ;
+ − 28
$bad_array = array ();
+ − 29
$check_tables = array ( 'zones' , 'users' , 'records' , 'domains' );
+ − 30
+ − 31
function error ()
+ − 32
{
+ − 33
return true ;
+ − 34
}
+ − 35
+ − 36
PEAR :: setErrorHandling ( PEAR_ERROR_CALLBACK , 'error' );
+ − 37
+ − 38
foreach ( $check_tables as $table )
+ − 39
{
+ − 40
if ( DB :: isError ( $db -> query ( "select * from $table " )))
+ − 41
{
+ − 42
$bad_array [] = $table ;
+ − 43
}
+ − 44
}
+ − 45
+ − 46
$bad = ( count ( $bad_array ) == 0 ) ? false : true ;
+ − 47
+ − 48
// Start error or message output
+ − 49
+ − 50
echo "<P>" ;
+ − 51
+ − 52
if ( $bad )
+ − 53
{
2
+ − 54
?> <TABLE CLASS="error"><TR><TD CLASS="error"><H2> <? echo _ ( 'Not all tables are ok!' ); ?> </H2> <?
1
+ − 55
}
+ − 56
else
+ − 57
{
2
+ − 58
?> <TABLE CLASS="messagetable"><TR><TD CLASS="message"><H2> <? echo _ ( 'Successful!' ); ?> </H2> <?
1
+ − 59
}
+ − 60
?>
+ − 61
<BR>
+ − 62
<FONT STYLE="font-weight: Bold">
+ − 63
<?
+ − 64
if ( $bad )
+ − 65
{
2
+ − 66
echo _ ( 'Sorry, but there are error(s) found in the following table(s):' );
1
+ − 67
foreach ( $bad_array as $table )
+ − 68
{
+ − 69
echo " ' $table '" ;
+ − 70
}
2
+ − 71
?> .</P><P> <? echo _ ( 'Please fix these errors and run the script again.' ); ?> </P> <?
1
+ − 72
}
+ − 73
else
+ − 74
{
3
+ − 75
echo _ ( 'Successful! Everything is set up ok, you can rumble!' );
1
+ − 76
}
+ − 77
?>
+ − 78
<BR></TD></TR></TABLE></P>
+ − 79
<?
+ − 80
include_once ( "inc/footer.inc.php" );
+ − 81
?>