Mention wiki.
[phpmyadmin/crack.git] / main.php
blob3b54009d231f926dbfa009c342ede53362ee89d8
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
5 /**
6 * Don't display the page heading
7 */
8 if (!defined('PMA_DISPLAY_HEADING')) {
9 define('PMA_DISPLAY_HEADING', 0);
12 /**
13 * Gets some core libraries and displays a top message if required
15 require_once './libraries/common.lib.php';
17 // Handles some variables that may have been sent by the calling script
18 if (isset($db)) {
19 unset($db);
21 if (isset($table)) {
22 unset($table);
24 $show_query = '1';
25 require_once './libraries/header.inc.php';
27 // Any message to display?
28 if (! empty($message)) {
29 PMA_showMessage($message);
30 unset($message);
33 $common_url_query = PMA_generate_common_url('', '');
35 // this div is required for containing divs can be 50%
36 echo '<div id="maincontainer">' . "\n";
38 /**
39 * Displays the mysql server related links
41 if ($server > 0) {
43 require_once './libraries/check_user_privileges.lib.php';
44 // why this? a non-priv user should be able to change his
45 // password if the configuration permits
46 //$cfg['ShowChgPassword'] = $is_superuser = PMA_isSuperuser();
47 $is_superuser = PMA_isSuperuser();
49 if ($cfg['Server']['auth_type'] == 'config') {
50 $cfg['ShowChgPassword'] = false;
55 <div id="mysqlmaininformation">
56 <?php
57 if ($server > 0) {
58 // robbat2: Use the verbose name of the server instead of the hostname
59 // if a value is set
60 $server_info = '';
61 if (!empty($cfg['Server']['verbose'])) {
62 $server_info .= $cfg['Server']['verbose'];
63 $server_info .= ' (';
65 $server_info .= PMA_DBI_get_host_info();
67 if (!empty($cfg['Server']['verbose'])) {
68 $server_info .= ')';
70 // loic1: skip this because it's not a so good idea to display sockets
71 // used to everybody
72 // if (!empty($cfg['Server']['socket']) && PMA_PHP_INT_VERSION >= 30010) {
73 // $server_info .= ':' . $cfg['Server']['socket'];
74 // }
75 $mysql_cur_user_and_host = PMA_DBI_fetch_value('SELECT USER();');
78 // should we add the port info here?
79 $short_server_info = (!empty($GLOBALS['cfg']['Server']['verbose'])
80 ? $GLOBALS['cfg']['Server']['verbose']
81 : $GLOBALS['cfg']['Server']['host']);
82 echo '<h1 xml:lang="en" dir="ltr">' . $short_server_info .'</h1>' . "\n";
83 unset($short_server_info);
84 } else {
85 // Case when no server selected
86 //echo '<h1 xml:lang="en" dir="ltr">MySQL</h1>' . "\n";
89 if ($server > 0) {
90 echo '<ul>' . "\n";
92 PMA_printListItem($strServerVersion . ': ' . PMA_MYSQL_STR_VERSION, 'li_server_info');
93 PMA_printListItem($strProtocolVersion . ': ' . PMA_DBI_get_proto_info(),
94 'li_mysql_proto');
95 PMA_printListItem($strServer . ': ' . $server_info, 'li_server_info');
96 PMA_printListItem($strUser . ': ' . htmlspecialchars($mysql_cur_user_and_host),
97 'li_user_info');
99 if ($cfg['AllowAnywhereRecoding'] && $allow_recoding && PMA_MYSQL_INT_VERSION < 40100) {
100 echo '<li id="li_select_mysql_charset">';
102 <form method="post" action="index.php" target="_parent">
103 <input type="hidden" name="server" value="<?php echo $server; ?>" />
104 <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
105 <?php echo $strMySQLCharset;?>:
106 <select name="convcharset" xml:lang="en" dir="ltr"
107 onchange="this.form.submit();">
108 <?php
109 foreach ($cfg['AvailableCharsets'] as $tmpcharset) {
110 if ($convcharset == $tmpcharset) {
111 $selected = ' selected="selected"';
112 } else {
113 $selected = '';
115 echo ' '
116 . '<option value="' . $tmpcharset . '"' . $selected . '>' . $tmpcharset . '</option>' . "\n";
119 </select>
120 <noscript><input type="submit" value="<?php echo $strGo;?>" /></noscript>
121 </form>
122 </li>
123 <?php
124 } elseif (PMA_MYSQL_INT_VERSION >= 40100) {
125 echo ' <li id="li_select_mysql_charset">';
126 echo ' ' . $strMySQLCharset . ': '
127 . ' <strong xml:lang="en" dir="ltr">'
128 . ' ' . $mysql_charsets_descriptions[$mysql_charset_map[strtolower($charset)]] . "\n"
129 . ' (' . $mysql_charset_map[strtolower($charset)] . ')' . "\n"
130 . ' </strong>' . "\n"
131 . ' </li>' . "\n"
132 . ' <li id="li_select_mysql_collation">';
133 echo ' <form method="post" action="index.php" target="_parent">' . "\n"
134 . PMA_generate_common_hidden_inputs(null, null, 4, 'collation_connection')
135 . ' <label for="select_collation_connection">' . "\n"
136 . ' ' . $strMySQLConnectionCollation . ': ' . "\n"
137 . ' </label>' . "\n"
138 . PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION, 'collation_connection', 'select_collation_connection', $collation_connection, true, 4, true)
139 . ' <noscript><input type="submit" value="' . $strGo . '" /></noscript>' . "\n"
140 // put the doc link in the form so that it appears on the same line
141 . PMA_showMySQLDocu('MySQL_Database_Administration', 'Charset-connection') . "\n"
142 . ' </form>' . "\n"
143 . ' </li>' . "\n";
146 if ($cfg['ShowCreateDb']) {
147 echo '<li id="li_create_database">';
148 require './libraries/display_create_database.lib.php';
149 echo '</li>' . "\n";
152 PMA_printListItem($strMySQLShowStatus, 'li_mysql_status',
153 './server_status.php?' . $common_url_query);
154 PMA_printListItem($strMySQLShowVars, 'li_mysql_variables',
155 './server_variables.php?' . $common_url_query, 'show-variables');
156 PMA_printListItem($strProcesses, 'li_mysql_processes',
157 './server_processlist.php?' . $common_url_query, 'show-processlist');
159 if (PMA_MYSQL_INT_VERSION >= 40100) {
160 PMA_printListItem($strCharsetsAndCollations, 'li_mysql_collations',
161 './server_collations.php?' . $common_url_query);
164 PMA_printListItem($strStorageEngines, 'li_mysql_engines',
165 './server_engines.php?' . $common_url_query);
167 if ($is_reload_priv) {
168 PMA_printListItem($strReloadPrivileges, 'li_flush_privileges',
169 './server_privileges.php?flush_privileges=1&amp;' . $common_url_query, 'flush');
172 if ($is_superuser) {
173 PMA_printListItem($strPrivileges, 'li_mysql_privilegs',
174 './server_privileges.php?' . $common_url_query);
177 $binlogs = PMA_DBI_try_query('SHOW MASTER LOGS', null, PMA_DBI_QUERY_STORE);
178 if ($binlogs) {
179 if (PMA_DBI_num_rows($binlogs) > 0) {
180 PMA_printListItem($strBinaryLog, 'li_mysql_binlogs',
181 './server_binlog.php?' . $common_url_query);
183 PMA_DBI_free_result($binlogs);
185 unset($binlogs);
187 PMA_printListItem($strDatabases, 'li_mysql_databases',
188 './server_databases.php?' . $common_url_query);
189 PMA_printListItem($strExport, 'li_export',
190 './server_export.php?' . $common_url_query);
191 PMA_printListItem($strImport, 'li_import',
192 './server_import.php?' . $common_url_query);
195 * Change password
197 * @todo ? needs another message
199 if ($cfg['ShowChgPassword']) {
200 PMA_printListItem($strChangePassword, 'li_change_password',
201 './user_password.php?' . $common_url_query);
202 } // end if
204 // Logout for advanced authentication
205 if ($cfg['Server']['auth_type'] != 'config') {
206 $http_logout = ($cfg['Server']['auth_type'] == 'http')
207 ? '<a href="./Documentation.html#login_bug" target="documentation">'
208 . ($cfg['ReplaceHelpImg'] ? '<img class="icon" src="' . $pmaThemeImage . 'b_info.png" width="11" height="11" alt="Info" />' : '(*)') . '</a>'
209 : '';
210 PMA_printListItem('<strong>' . $strLogout . '</strong> ' . $http_logout,
211 'li_log_out',
212 './index.php?' . $common_url_query . '&amp;old_usr=' . urlencode($PHP_AUTH_USER), null, '_parent');
213 } // end if
215 echo '</ul>';
216 } // end of if ($server > 0)
218 </div>
219 <div id="pmamaininformation">
220 <?php
222 echo '<h1 xml:lang="en" dir="ltr">phpMyAdmin - ' . PMA_VERSION . '</h1>'
223 . "\n";
225 echo '<ul>' . "\n";
228 * Displays the MySQL servers choice form
230 if (!$cfg['LeftDisplayServers'] && (count($cfg['Servers']) > 1 || $server == 0 && count($cfg['Servers']) == 1)) {
231 echo '<li id="li_select_server">';
232 require_once './libraries/select_server.lib.php';
233 PMA_select_server(true, true);
234 echo '</li>';
237 if ($server > 0) {
238 PMA_printListItem($strMysqlClientVersion . ': ' . PMA_DBI_get_client_info(),
239 'li_mysql_client_version');
240 PMA_printListItem($strUsedPhpExtensions . ': ' . $GLOBALS['cfg']['Server']['extension'],
241 'li_used_php_extension');
244 // Displays language selection combo
245 if (empty($cfg['Lang'])) {
246 echo '<li id="li_select_lang">';
247 require_once './libraries/display_select_lang.lib.php';
248 PMA_select_language();
249 echo '</li>';
253 if (isset($cfg['AllowAnywhereRecoding']) && $cfg['AllowAnywhereRecoding']
254 && $server != 0 && $allow_recoding && PMA_MYSQL_INT_VERSION < 40100) {
255 echo '<li id="li_select_charset">';
257 <form method="post" action="index.php" target="_parent">
258 <input type="hidden" name="server" value="<?php echo $server; ?>" />
259 <input type="hidden" name="lang" value="<?php echo $lang; ?>" />
260 <?php echo $strMySQLCharset;?>:
261 <select name="convcharset" xml:lang="en" dir="ltr"
262 onchange="this.form.submit();">
263 <?php
264 foreach ($cfg['AvailableCharsets'] AS $id => $tmpcharset) {
265 if ($convcharset == $tmpcharset) {
266 $selected = ' selected="selected"';
267 } else {
268 $selected = '';
270 echo ' '
271 . '<option value="' . $tmpcharset . '"' . $selected . '>' . $tmpcharset . '</option>' . "\n";
274 </select>
275 <noscript><input type="submit" value="<?php echo $strGo;?>" /></noscript>
276 </form>
277 </li>
278 <?php
281 // added by Michael Keck <mail_at_michaelkeck_dot_de>
282 // ThemeManager if available
284 if ($GLOBALS['cfg']['ThemeManager']) {
285 echo '<li id="li_select_theme">';
286 echo $_SESSION['PMA_Theme_Manager']->getHtmlSelectBox();
287 echo '</li>';
289 echo '<li id="li_select_fontsize">';
290 echo PMA_Config::getFontsizeForm();
291 echo '</li>';
292 PMA_printListItem($strPmaDocumentation, 'li_pma_docs', 'Documentation.html');
294 if ($cfg['ShowPhpInfo']) {
295 PMA_printListItem($strShowPHPInfo, 'li_phpinfo', './phpinfo.php?' . $common_url_query);
298 // does not work if no target specified, don't know why
299 PMA_printListItem($strHomepageOfficial, 'li_pma_homepage', 'http://www.phpMyAdmin.net/', null, '_blank');
301 <li><bdo xml:lang="en" dir="ltr">
302 [<a href="changelog.php" target="_blank">ChangeLog</a>]
303 [<a href="http://phpmyadmin.cvs.sourceforge.net/phpmyadmin/"
304 target="_blank">CVS</a>]
305 [<a href="http://sourceforge.net/mail/?group_id=23067"
306 target="_blank">Lists</a>]
307 </bdo>
308 </li>
309 </ul>
310 </div>
311 <?php
313 * BUG: MSIE needs two <br /> here, otherwise it will not extend the outer div to the
314 * full height of the inner divs
317 <br class="clearfloat" />
318 <br class="clearfloat" />
319 </div>
321 <?php
322 if (! empty($GLOBALS['PMA_errors']) && is_array($GLOBALS['PMA_errors'])) {
323 foreach ($GLOBALS['PMA_errors'] as $error) {
324 echo '<div class="error">' . $error . '</div>' . "\n";
329 * Removed the "empty $cfg['PmaAbsoluteUri']" warning on 2005-08-23
330 * See https://sourceforge.net/tracker/index.php?func=detail&aid=1257134&group_id=23067&atid=377411
334 * Warning if using the default MySQL privileged account
335 * modified: 2004-05-05 mkkeck
337 if ($server != 0
338 && $cfg['Server']['user'] == 'root'
339 && $cfg['Server']['password'] == '') {
340 echo '<div class="warning">' . $strInsecureMySQL . '</div>' . "\n";
344 * Warning for PHP 4.2.3
345 * modified: 2004-05-05 mkkeck
348 if (PMA_PHP_INT_VERSION == 40203 && @extension_loaded('mbstring')) {
349 echo '<div class="warning">' . $strPHP40203 . '</div>' . "\n";
353 * Nijel: As we try to hadle charsets by ourself, mbstring overloads just
354 * break it, see bug 1063821.
357 if (@extension_loaded('mbstring') && @ini_get('mbstring.func_overload') > 1) {
358 echo '<div class="warning">' . $strMbOverloadWarning . '</div>' . "\n";
362 * Nijel: mbstring is used for handling multibyte inside parser, so it is good
363 * to tell user something might be broken without it, see bug #1063149.
365 if ($GLOBALS['using_mb_charset'] && !@extension_loaded('mbstring')) {
366 echo '<div class="warning">' . $strMbExtensionMissing . '</div>' . "\n";
370 * Warning for old PHP version
371 * modified: 2004-05-05 mkkeck
374 if (PMA_PHP_INT_VERSION < 40100) {
375 echo '<div class="warning">' . sprintf($strUpgrade, 'PHP', '4.1.0') . '</div>' . "\n";
379 * Warning for old MySQL version
380 * modified: 2004-05-05 mkkeck
382 // not yet defined before the server choice
383 if (defined('PMA_MYSQL_INT_VERSION') && PMA_MYSQL_INT_VERSION < 32332) {
384 echo '<div class="warning">' . sprintf($strUpgrade, 'MySQL', '3.23.32') . '</div>' . "\n";
388 * prints list item for main page
390 * @param string $name displayed text
391 * @param string $id id, used for css styles
392 * @param string $url make item as link with $url as target
393 * @param string $mysql_help_page display a link to MySQL's manual
394 * @param string $target special target for $url
396 function PMA_printListItem($name, $id = null, $url = null, $mysql_help_page = null, $target = null)
398 echo '<li id="' . $id . '">';
399 if (null !== $url) {
400 echo '<a href="' . $url . '"';
401 if (null !== $target) {
402 echo ' target="' . $target . '"';
404 echo '>';
407 echo $name;
409 if (null !== $url) {
410 echo '</a>' . "\n";
412 if (null !== $mysql_help_page) {
413 echo PMA_showMySQLDocu('', $mysql_help_page);
415 echo '</li>';
419 * Displays the footer
421 require_once './libraries/footer.inc.php';