Update po files
[phpmyadmin.git] / index.php
blobc18aeb13ad062bf63e38b03aca47239da5c65962
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Main loader script
6 * @package PhpMyAdmin
7 */
9 /**
10 * Gets some core libraries and displays a top message if required
12 require_once 'libraries/common.inc.php';
14 /**
15 * display Git revision if requested
17 require_once 'libraries/display_git_revision.lib.php';
19 /**
20 * pass variables to child pages
22 $drops = array(
23 'lang',
24 'server',
25 'collation_connection',
26 'db',
27 'table'
29 foreach ($drops as $each_drop) {
30 if (array_key_exists($each_drop, $_GET)) {
31 unset($_GET[$each_drop]);
34 unset($drops, $each_drop);
36 // If we have a valid target, let's load that script instead
37 if (! empty($_REQUEST['target'])
38 && is_string($_REQUEST['target'])
39 && ! preg_match('/^index/', $_REQUEST['target'])
40 && in_array($_REQUEST['target'], $goto_whitelist)
41 ) {
42 include $_REQUEST['target'];
43 exit;
46 /**
47 * Check if it is an ajax request to reload the recent tables list.
49 require_once 'libraries/RecentTable.class.php';
50 if ($GLOBALS['is_ajax_request'] && ! empty($_REQUEST['recent_table'])) {
51 $response = PMA_Response::getInstance();
52 $response->addJSON(
53 'options',
54 PMA_RecentTable::getInstance()->getHtmlSelectOption()
56 exit;
59 if ($GLOBALS['PMA_Config']->isGitRevision()) {
60 if (isset($_REQUEST['git_revision']) && $GLOBALS['is_ajax_request'] == true) {
61 PMA_printGitRevision();
62 exit;
64 echo '<div id="is_git_revision"></div>';
67 // Handles some variables that may have been sent by the calling script
68 $GLOBALS['db'] = '';
69 $GLOBALS['table'] = '';
70 $show_query = '1';
72 // Any message to display?
73 if (! empty($message)) {
74 echo PMA_Util::getMessage($message);
75 unset($message);
78 $common_url_query = PMA_URL_getCommon('', '');
80 // when $server > 0, a server has been chosen so we can display
81 // all MySQL-related information
82 if ($server > 0) {
83 include 'libraries/server_common.inc.php';
84 include 'libraries/StorageEngine.class.php';
86 // Use the verbose name of the server instead of the hostname
87 // if a value is set
88 $server_info = '';
89 if (! empty($cfg['Server']['verbose'])) {
90 $server_info .= htmlspecialchars($cfg['Server']['verbose']);
91 if ($GLOBALS['cfg']['ShowServerInfo']) {
92 $server_info .= ' (';
95 if ($GLOBALS['cfg']['ShowServerInfo'] || empty($cfg['Server']['verbose'])) {
96 $server_info .= $GLOBALS['dbi']->getHostInfo();
98 if (! empty($cfg['Server']['verbose']) && $GLOBALS['cfg']['ShowServerInfo']) {
99 $server_info .= ')';
101 $mysql_cur_user_and_host = $GLOBALS['dbi']->fetchValue('SELECT USER();');
103 // should we add the port info here?
104 $short_server_info = (!empty($GLOBALS['cfg']['Server']['verbose'])
105 ? $GLOBALS['cfg']['Server']['verbose']
106 : $GLOBALS['cfg']['Server']['host']);
109 echo '<div id="maincontainer">' . "\n";
110 echo '<div id="main_pane_left">';
111 if ($server > 0 || count($cfg['Servers']) > 1
113 if ($cfg['DBG']['demo']) {
114 echo '<div class="group">';
115 echo '<h2>' . __('phpMyAdmin Demo Server') . '</h2>';
116 echo '<p style="margin: 0.5em 1em 0.5em 1em">';
117 printf(
119 'You are using the demo server. You can do anything here, but '
120 . 'please do not change root, debian-sys-maint and pma users. '
121 . 'More information is available at %s.'
123 '<a href="http://demo.phpmyadmin.net/">demo.phpmyadmin.net</a>'
125 echo '</p>';
126 echo '</div>';
128 echo '<div class="group">';
129 echo '<h2>' . __('General Settings') . '</h2>';
130 echo '<ul>';
133 * Displays the MySQL servers choice form
135 if ($cfg['ServerDefault'] == 0
136 || (! $cfg['NavigationDisplayServers']
137 && (count($cfg['Servers']) > 1
138 || ($server == 0 && count($cfg['Servers']) == 1)))
140 echo '<li id="li_select_server" class="no_bullets" >';
141 include_once 'libraries/select_server.lib.php';
142 echo PMA_Util::getImage('s_host.png') . " " . PMA_selectServer(true, true);
143 echo '</li>';
147 * Displays the mysql server related links
149 if ($server > 0 && ! PMA_DRIZZLE) {
150 include_once 'libraries/check_user_privileges.lib.php';
152 // Logout for advanced authentication
153 if ($cfg['Server']['auth_type'] != 'config') {
154 if ($cfg['ShowChgPassword']) {
155 $conditional_class = 'ajax';
156 PMA_printListItem(
157 PMA_Util::getImage('s_passwd.png') . " " . __('Change password'),
158 'li_change_password',
159 'user_password.php?' . $common_url_query,
160 null,
161 null,
162 'change_password_anchor',
163 "no_bullets",
164 $conditional_class
167 } // end if
168 echo ' <li id="li_select_mysql_collation" class="no_bullets" >';
169 echo ' <form method="post" action="index.php">' . "\n"
170 . PMA_URL_getHiddenInputs(null, null, 4, 'collation_connection')
171 . ' <label for="select_collation_connection">' . "\n"
172 . ' '. PMA_Util::getImage('s_asci.png') . " "
173 . __('Server connection collation') . "\n"
174 // put the doc link in the form so that it appears on the same line
175 . PMA_Util::showMySQLDocu('Charset-connection')
176 . ': ' . "\n"
177 . ' </label>' . "\n"
179 . PMA_generateCharsetDropdownBox(
180 PMA_CSDROPDOWN_COLLATION,
181 'collation_connection',
182 'select_collation_connection',
183 $collation_connection,
184 true,
186 true
188 . ' </form>' . "\n"
189 . ' </li>' . "\n";
190 } // end of if ($server > 0 && !PMA_DRIZZLE)
191 echo '</ul>';
192 echo '</div>';
195 echo '<div class="group">';
196 echo '<h2>' . __('Appearance Settings') . '</h2>';
197 echo ' <ul>';
199 // Displays language selection combo
200 if (empty($cfg['Lang']) && count($GLOBALS['available_languages']) > 1) {
201 echo '<li id="li_select_lang" class="no_bullets">';
202 include_once 'libraries/display_select_lang.lib.php';
203 echo PMA_Util::getImage('s_lang.png') . " " . PMA_getLanguageSelectorHtml();
204 echo '</li>';
207 // ThemeManager if available
209 if ($GLOBALS['cfg']['ThemeManager']) {
210 echo '<li id="li_select_theme" class="no_bullets">';
211 echo PMA_Util::getImage('s_theme.png') . " "
212 . $_SESSION['PMA_Theme_Manager']->getHtmlSelectBox();
213 echo '</li>';
215 echo '<li id="li_select_fontsize">';
216 echo PMA_Config::getFontsizeForm();
217 echo '</li>';
219 echo '</ul>';
221 // User preferences
223 if ($server > 0) {
224 echo '<ul>';
225 PMA_printListItem(
226 PMA_Util::getImage('b_tblops.png')." " .__('More settings'),
227 'li_user_preferences',
228 'prefs_manage.php?' . $common_url_query,
229 null,
230 null,
231 null,
232 "no_bullets"
234 echo '</ul>';
237 echo '</div>';
240 echo '</div>';
241 echo '<div id="main_pane_right">';
244 if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
246 echo '<div class="group">';
247 echo '<h2>' . __('Database server') . '</h2>';
248 echo '<ul>' . "\n";
249 PMA_printListItem(
250 __('Server:') . ' ' . $server_info,
251 'li_server_info'
253 PMA_printListItem(
254 __('Server type:') . ' ' . PMA_Util::getServerType(),
255 'li_server_type'
257 PMA_printListItem(
258 __('Server version:')
259 . ' '
260 . PMA_MYSQL_STR_VERSION . ' - ' . PMA_MYSQL_VERSION_COMMENT,
261 'li_server_version'
263 PMA_printListItem(
264 __('Protocol version:') . ' ' . $GLOBALS['dbi']->getProtoInfo(),
265 'li_mysql_proto'
267 PMA_printListItem(
268 __('User:') . ' ' . htmlspecialchars($mysql_cur_user_and_host),
269 'li_user_info'
272 echo ' <li id="li_select_mysql_charset">';
273 echo ' ' . __('Server charset:') . ' '
274 . ' <span lang="en" dir="ltr">'
275 . ' ' . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']]
276 . ' (' . $mysql_charset_map['utf-8'] . ')'
277 . ' </span>'
278 . ' </li>'
279 . ' </ul>'
280 . ' </div>';
283 if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
284 echo '<div class="group">';
285 echo '<h2>' . __('Web server') . '</h2>';
286 echo '<ul>';
287 if ($GLOBALS['cfg']['ShowServerInfo']) {
288 PMA_printListItem($_SERVER['SERVER_SOFTWARE'], 'li_web_server_software');
290 if ($server > 0) {
291 $client_version_str = $GLOBALS['dbi']->getClientInfo();
292 if (preg_match('#\d+\.\d+\.\d+#', $client_version_str)
293 && in_array(
294 $GLOBALS['cfg']['Server']['extension'],
295 array('mysql', 'mysqli')
298 $client_version_str = 'libmysql - ' . $client_version_str;
300 PMA_printListItem(
301 __('Database client version:') . ' ' . $client_version_str,
302 'li_mysql_client_version'
305 $php_ext_string = __('PHP extension:') . ' '
306 . $GLOBALS['cfg']['Server']['extension'] . ' '
307 . PMA_Util::showPHPDocu(
308 'book.' . $GLOBALS['cfg']['Server']['extension'] . '.php'
310 PMA_printListItem(
311 $php_ext_string,
312 'li_used_php_extension'
317 if ($cfg['ShowPhpInfo']) {
318 PMA_printListItem(
319 __('Show PHP information'),
320 'li_phpinfo',
321 'phpinfo.php?' . $common_url_query,
322 null,
323 '_blank'
326 echo ' </ul>';
327 echo ' </div>';
330 echo '<div class="group pmagroup">';
331 echo '<h2>phpMyAdmin</h2>';
332 echo '<ul>';
333 $class = null;
334 // We rely on CSP to allow access to http://www.phpmyadmin.net, but IE lacks
335 // support here and does not allow request to http once using https.
336 if ($GLOBALS['cfg']['VersionCheck']
337 && (! $GLOBALS['PMA_Config']->get('is_https') || PMA_USR_BROWSER_AGENT != 'IE')
339 $class = 'jsversioncheck';
341 PMA_printListItem(
342 __('Version information:') . ' ' . PMA_VERSION,
343 'li_pma_version',
344 null,
345 null,
346 null,
347 null,
348 $class
350 PMA_printListItem(
351 __('Documentation'),
352 'li_pma_docs',
353 PMA_Util::getDocuLink('index'),
354 null,
355 '_blank'
357 PMA_printListItem(
358 __('Wiki'),
359 'li_pma_wiki',
360 PMA_linkURL('http://wiki.phpmyadmin.net/'),
361 null,
362 '_blank'
365 // does not work if no target specified, don't know why
366 PMA_printListItem(
367 __('Official Homepage'),
368 'li_pma_homepage',
369 PMA_linkURL('http://www.phpMyAdmin.net/'),
370 null,
371 '_blank'
373 PMA_printListItem(
374 __('Contribute'),
375 'li_pma_contribute',
376 PMA_linkURL('http://www.phpmyadmin.net/home_page/improve.php'),
377 null,
378 '_blank'
380 PMA_printListItem(
381 __('Get support'),
382 'li_pma_support',
383 PMA_linkURL('http://www.phpmyadmin.net/home_page/support.php'),
384 null,
385 '_blank'
387 PMA_printListItem(
388 __('List of changes'),
389 'li_pma_changes',
390 PMA_linkURL('changelog.php'),
391 null,
392 '_blank'
394 echo ' </ul>';
395 echo ' </div>';
397 echo '</div>';
399 echo '</div>';
402 * Warning if using the default MySQL privileged account
404 if ($server != 0
405 && $cfg['Server']['user'] == 'root'
406 && $cfg['Server']['password'] == ''
408 trigger_error(
410 'Your configuration file contains settings (root with no password)'
411 . ' that correspond to the default MySQL privileged account.'
412 . ' Your MySQL server is running with this default, is open to'
413 . ' intrusion, and you really should fix this security hole by'
414 . ' setting a password for user \'root\'.'
416 E_USER_WARNING
421 * As we try to handle charsets by ourself, mbstring overloads just
422 * break it, see bug 1063821.
424 if (@extension_loaded('mbstring') && @ini_get('mbstring.func_overload') > 1) {
425 trigger_error(
427 'You have enabled mbstring.func_overload in your PHP '
428 . 'configuration. This option is incompatible with phpMyAdmin '
429 . 'and might cause some data to be corrupted!'
431 E_USER_WARNING
436 * mbstring is used for handling multibyte inside parser, so it is good
437 * to tell user something might be broken without it, see bug #1063149.
439 if (! @extension_loaded('mbstring')) {
440 trigger_error(
442 'The mbstring PHP extension was not found and you seem to be using'
443 . ' a multibyte charset. Without the mbstring extension phpMyAdmin'
444 . ' is unable to split strings correctly and it may result in'
445 . ' unexpected results.'
447 E_USER_WARNING
452 * Check whether session.gc_maxlifetime limits session validity.
454 $gc_time = (int)@ini_get('session.gc_maxlifetime');
455 if ($gc_time < $GLOBALS['cfg']['LoginCookieValidity'] ) {
456 trigger_error(
457 __('Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie validity configured in phpMyAdmin, because of this, your login will expire sooner than configured in phpMyAdmin.'),
458 E_USER_WARNING
463 * Check whether LoginCookieValidity is limited by LoginCookieStore.
465 if ($GLOBALS['cfg']['LoginCookieStore'] != 0
466 && $GLOBALS['cfg']['LoginCookieStore'] < $GLOBALS['cfg']['LoginCookieValidity']
468 trigger_error(
469 __('Login cookie store is lower than cookie validity configured in phpMyAdmin, because of this, your login will expire sooner than configured in phpMyAdmin.'),
470 E_USER_WARNING
475 * Check if user does not have defined blowfish secret and it is being used.
477 if (! empty($_SESSION['auto_blowfish_secret'])
478 && empty($GLOBALS['cfg']['blowfish_secret'])
480 trigger_error(
481 __('The configuration file now needs a secret passphrase (blowfish_secret).'),
482 E_USER_WARNING
487 * Check for existence of config directory which should not exist in
488 * production environment.
490 if (file_exists('config')) {
491 trigger_error(
492 __('Directory [code]config[/code], which is used by the setup script, still exists in your phpMyAdmin directory. It is strongly recommended to remove it once phpMyAdmin has been configured. Otherwise the security of your server may be compromised by unauthorized people downloading your configuration.'),
493 E_USER_WARNING
497 if ($server > 0) {
498 $cfgRelation = PMA_getRelationsParam();
499 if (! $cfgRelation['allworks']
500 && $cfg['PmaNoRelation_DisableWarning'] == false
502 $msg = PMA_Message::notice(__('The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click %shere%s.'));
503 $msg->addParam(
504 '<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php?'
505 . $common_url_query . '">',
506 false
508 $msg->addParam('</a>', false);
509 /* Show error if user has configured something, notice elsewhere */
510 if (!empty($cfg['Servers'][$server]['pmadb'])) {
511 $msg->isError(true);
513 $msg->display();
514 } // end if
518 * Warning about different MySQL library and server version
519 * (a difference on the third digit does not count).
520 * If someday there is a constant that we can check about mysqlnd,
521 * we can use it instead of strpos().
522 * If no default server is set, $GLOBALS['dbi'] is not defined yet.
523 * Drizzle can speak MySQL protocol, so don't warn about version mismatch for
524 * Drizzle servers.
526 if (isset($GLOBALS['dbi'])
527 && !PMA_DRIZZLE
528 && $cfg['ServerLibraryDifference_DisableWarning'] == false
530 $_client_info = $GLOBALS['dbi']->getClientInfo();
531 if ($server > 0
532 && strpos($_client_info, 'mysqlnd') === false
533 && substr(PMA_MYSQL_CLIENT_API, 0, 3) != substr(PMA_MYSQL_INT_VERSION, 0, 3)
535 trigger_error(
536 PMA_sanitize(
537 sprintf(
538 __('Your PHP MySQL library version %s differs from your MySQL server version %s. This may cause unpredictable behavior.'),
539 $_client_info,
540 substr(
541 PMA_MYSQL_STR_VERSION,
543 strpos(PMA_MYSQL_STR_VERSION . '-', '-')
547 E_USER_NOTICE
550 unset($_client_info);
554 * Warning about Suhosin only if its simulation mode is not enabled
556 if ($cfg['SuhosinDisableWarning'] == false
557 && @ini_get('suhosin.request.max_value_length')
558 && @ini_get('suhosin.simulation') == '0'
560 trigger_error(
561 sprintf(
562 __('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
563 '[doc@faq1-38]',
564 '[/doc]'
566 E_USER_WARNING
571 * Warning about mcrypt.
573 if (! function_exists('mcrypt_encrypt')
574 && ! $GLOBALS['cfg']['McryptDisableWarning']
576 PMA_warnMissingExtension('mcrypt');
580 * Warning about incomplete translations.
582 * The data file is created while creating release by ./scripts/remove-incomplete-mo
584 if (file_exists('libraries/language_stats.inc.php')) {
585 include 'libraries/language_stats.inc.php';
587 * This message is intentionally not translated, because we're
588 * handling incomplete translations here and focus on english
589 * speaking users.
591 if (isset($GLOBALS['language_stats'][$lang])
592 && $GLOBALS['language_stats'][$lang] < $cfg['TranslationWarningThreshold']
594 trigger_error(
595 'You are using an incomplete translation, please help to make it '
596 . 'better by [a@http://www.phpmyadmin.net/home_page/improve.php'
597 . '#translate@_blank]contributing[/a].',
598 E_USER_NOTICE
604 * prints list item for main page
606 * @param string $name displayed text
607 * @param string $id id, used for css styles
608 * @param string $url make item as link with $url as target
609 * @param string $mysql_help_page display a link to MySQL's manual
610 * @param string $target special target for $url
611 * @param string $a_id id for the anchor,
612 * used for jQuery to hook in functions
613 * @param string $class class for the li element
614 * @param string $a_class class for the anchor element
616 * @return void
618 function PMA_printListItem($name, $id = null, $url = null,
619 $mysql_help_page = null, $target = null, $a_id = null, $class = null,
620 $a_class = null
622 echo '<li id="' . $id . '"';
623 if (null !== $class) {
624 echo ' class="' . $class . '"';
626 echo '>';
627 if (null !== $url) {
628 echo '<a href="' . $url . '"';
629 if (null !== $target) {
630 echo ' target="' . $target . '"';
632 if (null != $a_id) {
633 echo ' id="' . $a_id .'"';
635 if (null != $a_class) {
636 echo ' class="' . $a_class .'"';
638 echo '>';
641 echo $name;
643 if (null !== $url) {
644 echo '</a>' . "\n";
646 if (null !== $mysql_help_page) {
647 echo PMA_Util::showMySQLDocu($mysql_help_page);
649 echo '</li>';