<span class="corners-top"><span></span></span>
				<div class="panel">
					<div id="content">
						<div class="install-body" style="padding:20px; padding-top: 0px;" >
							<a name="maincontent"></a>

						
<?php 
if (!$process) {
    echo $user->lang['CONTENTS_PRT'];
    exit;
}
if ($user->data['is_registered'] && $auth->acl_get('a_')) {
    // Read config data from the config file
    $data = array('dbhost', 'dbname', 'dbuser', 'dbpasswd', 'table_prefix');
    $data = get_config_data();
    /*
    //Manual input
    // replace with your info and un-comment the following items...
    $data['dbms'] = '';
    $data['dbhost'] = 'localhost';
    $data['dbname'] = '';
    $data['dbuser'] = '';
    $data['dbpasswd'] = '';
    $data['table_prefix'] = 'phpbb_';
    */
    echo '<span>';
    echo '<br /><b>Collecting information...</b><hr />';
    echo '<br />Database type: [';
    echo $data['dbms'];
    echo ']<br />Database name: [';
Beispiel #2
0
db_error();
while ($row = $result->fetch(PDO::FETCH_NUM)) {
    if ($row[0] == "configuration") {
        $gotconfigtbl = 1;
    }
    if ($row[0] == "hosts") {
        $gothoststbl = 1;
    }
}
if (!isset($gotconfigtbl)) {
    include "configtbl.sql.php";
}
if (!isset($gothoststbl)) {
    include "hoststbl.sql.php";
}
$config = get_config_data();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Anubis: hank</title>

<?php 
require 'stylesheets.inc.php';
?>

<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/ddsmoothmenu.js">

Beispiel #3
0
		</td>
	</tr>
	<tr>
		<td><?php 
                echo $lang['rpd_info'];
                ?>
</td>
	</tr>
<?php 
                break;
            case 'rcd':
                // Reset cookie data
                // Get cookie information
                $cookie_domain = get_config_data('cookie_domain');
                $cookie_name = get_config_data('cookie_name');
                $cookie_path = get_config_data('cookie_path');
                ?>
	<tr>
		<td>
			<table border="0" cellspacing="2" cellpadding="0">
				<tr>
					<td><b><?php 
                echo $lang['Cookie_domain'];
                ?>
</b></td>
					<td><input type="input" name="cookie_domain" value="<?php 
                echo htmlspecialchars($cookie_domain);
                ?>
" maxlength="255" size="40" class="post" /></td>
				</tr>
				<tr>