Translated using Weblate (Armenian)
[phpmyadmin.git] / index.php
blobb377fbc76b580df5d04dc1d8db2c0617eff1afb7
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);
37 * Black list of all scripts to which front-end must submit data.
38 * Such scripts must not be loaded on home page.
41 $target_blacklist = array (
42 'import.php', 'export.php'
45 // If we have a valid target, let's load that script instead
46 if (! empty($_REQUEST['target'])
47 && is_string($_REQUEST['target'])
48 && ! preg_match('/^index/', $_REQUEST['target'])
49 && ! in_array($_REQUEST['target'], $target_blacklist)
50 && in_array($_REQUEST['target'], $goto_whitelist)
51 ) {
52 include $_REQUEST['target'];
53 exit;
56 if (isset($_REQUEST['ajax_request']) && ! empty($_REQUEST['access_time'])) {
57 exit;
60 // See FAQ 1.34
61 if (! empty($_REQUEST['db'])) {
62 $page = null;
63 if (! empty($_REQUEST['table'])) {
64 $page = PMA_Util::getScriptNameForOption(
65 $GLOBALS['cfg']['DefaultTabTable'], 'table'
67 } else {
68 $page = PMA_Util::getScriptNameForOption(
69 $GLOBALS['cfg']['DefaultTabDatabase'], 'database'
72 include $page;
73 exit;
76 /**
77 * Check if it is an ajax request to reload the recent tables list.
79 require_once 'libraries/RecentFavoriteTable.class.php';
80 if ($GLOBALS['is_ajax_request'] && ! empty($_REQUEST['recent_table'])) {
81 $response = PMA_Response::getInstance();
82 $response->addJSON(
83 'list',
84 PMA_RecentFavoriteTable::getInstance('recent')->getHtmlList()
86 exit;
89 if ($GLOBALS['PMA_Config']->isGitRevision()) {
90 if (isset($_REQUEST['git_revision']) && $GLOBALS['is_ajax_request'] == true) {
91 PMA_printGitRevision();
92 exit;
94 echo '<div id="is_git_revision"></div>';
97 // Handles some variables that may have been sent by the calling script
98 $GLOBALS['db'] = '';
99 $GLOBALS['table'] = '';
100 $show_query = '1';
102 // Any message to display?
103 if (! empty($message)) {
104 echo PMA_Util::getMessage($message);
105 unset($message);
108 $common_url_query = PMA_URL_getCommon();
109 $mysql_cur_user_and_host = '';
111 // when $server > 0, a server has been chosen so we can display
112 // all MySQL-related information
113 if ($server > 0) {
114 include 'libraries/server_common.inc.php';
115 include 'libraries/StorageEngine.class.php';
117 // Use the verbose name of the server instead of the hostname
118 // if a value is set
119 $server_info = '';
120 if (! empty($cfg['Server']['verbose'])) {
121 $server_info .= htmlspecialchars($cfg['Server']['verbose']);
122 if ($GLOBALS['cfg']['ShowServerInfo']) {
123 $server_info .= ' (';
126 if ($GLOBALS['cfg']['ShowServerInfo'] || empty($cfg['Server']['verbose'])) {
127 $server_info .= $GLOBALS['dbi']->getHostInfo();
129 if (! empty($cfg['Server']['verbose']) && $GLOBALS['cfg']['ShowServerInfo']) {
130 $server_info .= ')';
132 $mysql_cur_user_and_host = $GLOBALS['dbi']->fetchValue('SELECT USER();');
134 // should we add the port info here?
135 $short_server_info = (!empty($GLOBALS['cfg']['Server']['verbose'])
136 ? $GLOBALS['cfg']['Server']['verbose']
137 : $GLOBALS['cfg']['Server']['host']);
140 echo '<div id="maincontainer">' . "\n";
141 // Anchor for favorite tables synchronization.
142 echo PMA_RecentFavoriteTable::getInstance('favorite')->getHtmlSyncFavoriteTables();
143 echo '<div id="main_pane_left">';
144 if ($server > 0 || count($cfg['Servers']) > 1
146 if ($cfg['DBG']['demo']) {
147 echo '<div class="group">';
148 echo '<h2>' . __('phpMyAdmin Demo Server') . '</h2>';
149 echo '<p style="margin: 0.5em 1em 0.5em 1em">';
150 printf(
152 'You are using the demo server. You can do anything here, but '
153 . 'please do not change root, debian-sys-maint and pma users. '
154 . 'More information is available at %s.'
156 '<a href="http://demo.phpmyadmin.net/">demo.phpmyadmin.net</a>'
158 echo '</p>';
159 echo '</div>';
161 echo '<div class="group">';
162 echo '<h2>' . __('General Settings') . '</h2>';
163 echo '<ul>';
166 * Displays the MySQL servers choice form
168 if ($cfg['ServerDefault'] == 0
169 || (! $cfg['NavigationDisplayServers']
170 && (count($cfg['Servers']) > 1
171 || ($server == 0 && count($cfg['Servers']) == 1)))
173 echo '<li id="li_select_server" class="no_bullets" >';
174 include_once 'libraries/select_server.lib.php';
175 echo PMA_Util::getImage('s_host.png') . " " . PMA_selectServer(true, true);
176 echo '</li>';
180 * Displays the mysql server related links
182 if ($server > 0 && ! PMA_DRIZZLE) {
183 include_once 'libraries/check_user_privileges.lib.php';
185 // Logout for advanced authentication
186 if ($cfg['Server']['auth_type'] != 'config') {
187 if ($cfg['ShowChgPassword']) {
188 $conditional_class = 'ajax';
189 PMA_printListItem(
190 PMA_Util::getImage('s_passwd.png') . " " . __('Change password'),
191 'li_change_password',
192 'user_password.php' . $common_url_query,
193 null,
194 null,
195 'change_password_anchor',
196 "no_bullets",
197 $conditional_class
200 } // end if
201 echo ' <li id="li_select_mysql_collation" class="no_bullets" >';
202 echo ' <form method="post" action="index.php">' . "\n"
203 . PMA_URL_getHiddenInputs(null, null, 4, 'collation_connection')
204 . ' <label for="select_collation_connection">' . "\n"
205 . ' ' . PMA_Util::getImage('s_asci.png') . " "
206 . __('Server connection collation') . "\n"
207 // put the doc link in the form so that it appears on the same line
208 . PMA_Util::showMySQLDocu('Charset-connection')
209 . ': ' . "\n"
210 . ' </label>' . "\n"
212 . PMA_generateCharsetDropdownBox(
213 PMA_CSDROPDOWN_COLLATION,
214 'collation_connection',
215 'select_collation_connection',
216 $collation_connection,
217 true,
218 true
220 . ' </form>' . "\n"
221 . ' </li>' . "\n";
222 } // end of if ($server > 0 && !PMA_DRIZZLE)
223 echo '</ul>';
224 echo '</div>';
227 echo '<div class="group">';
228 echo '<h2>' . __('Appearance Settings') . '</h2>';
229 echo ' <ul>';
231 // Displays language selection combo
232 if (empty($cfg['Lang']) && count($GLOBALS['available_languages']) > 1) {
233 echo '<li id="li_select_lang" class="no_bullets">';
234 include_once 'libraries/display_select_lang.lib.php';
235 echo PMA_Util::getImage('s_lang.png') . " " . PMA_getLanguageSelectorHtml();
236 echo '</li>';
239 // ThemeManager if available
241 if ($GLOBALS['cfg']['ThemeManager']) {
242 echo '<li id="li_select_theme" class="no_bullets">';
243 echo PMA_Util::getImage('s_theme.png') . " "
244 . $_SESSION['PMA_Theme_Manager']->getHtmlSelectBox();
245 echo '</li>';
247 echo '<li id="li_select_fontsize">';
248 echo PMA_Config::getFontsizeForm();
249 echo '</li>';
251 echo '</ul>';
253 // User preferences
255 if ($server > 0) {
256 echo '<ul>';
257 PMA_printListItem(
258 PMA_Util::getImage('b_tblops.png') . " " . __('More settings'),
259 'li_user_preferences',
260 'prefs_manage.php' . $common_url_query,
261 null,
262 null,
263 null,
264 "no_bullets"
266 echo '</ul>';
269 echo '</div>';
272 echo '</div>';
273 echo '<div id="main_pane_right">';
276 if ($server > 0 && $GLOBALS['cfg']['ShowServerInfo']) {
278 echo '<div class="group">';
279 echo '<h2>' . __('Database server') . '</h2>';
280 echo '<ul>' . "\n";
281 PMA_printListItem(
282 __('Server:') . ' ' . $server_info,
283 'li_server_info'
285 PMA_printListItem(
286 __('Server type:') . ' ' . PMA_Util::getServerType(),
287 'li_server_type'
289 PMA_printListItem(
290 __('Server version:')
291 . ' '
292 . PMA_MYSQL_STR_VERSION . ' - ' . PMA_MYSQL_VERSION_COMMENT,
293 'li_server_version'
295 PMA_printListItem(
296 __('Protocol version:') . ' ' . $GLOBALS['dbi']->getProtoInfo(),
297 'li_mysql_proto'
299 PMA_printListItem(
300 __('User:') . ' ' . htmlspecialchars($mysql_cur_user_and_host),
301 'li_user_info'
304 echo ' <li id="li_select_mysql_charset">';
305 echo ' ' . __('Server charset:') . ' '
306 . ' <span lang="en" dir="ltr">';
307 if (! PMA_DRIZZLE) {
308 echo ' '
309 . $mysql_charsets_descriptions[$mysql_charset_map['utf-8']];
311 echo ' (' . $mysql_charset_map['utf-8'] . ')'
312 . ' </span>'
313 . ' </li>'
314 . ' </ul>'
315 . ' </div>';
318 if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) {
319 echo '<div class="group">';
320 echo '<h2>' . __('Web server') . '</h2>';
321 echo '<ul>';
322 if ($GLOBALS['cfg']['ShowServerInfo']) {
323 PMA_printListItem($_SERVER['SERVER_SOFTWARE'], 'li_web_server_software');
325 if ($server > 0) {
326 $client_version_str = $GLOBALS['dbi']->getClientInfo();
327 if (preg_match('#\d+\.\d+\.\d+#', $client_version_str)) {
328 $client_version_str = 'libmysql - ' . $client_version_str;
330 PMA_printListItem(
331 __('Database client version:') . ' ' . $client_version_str,
332 'li_mysql_client_version'
335 $php_ext_string = __('PHP extension:') . ' ';
336 if (PMA_DatabaseInterface::checkDbExtension('mysqli')) {
337 $extension = 'mysqli';
338 } else {
339 $extension = 'mysql';
341 $php_ext_string .= $extension . ' '
342 . PMA_Util::showPHPDocu('book.' . $extension . '.php');
344 PMA_printListItem(
345 $php_ext_string,
346 'li_used_php_extension'
349 $php_version_string = __('PHP version:') . ' ' . phpversion();
351 PMA_printListItem(
352 $php_version_string,
353 'li_used_php_version'
358 if ($cfg['ShowPhpInfo']) {
359 PMA_printListItem(
360 __('Show PHP information'),
361 'li_phpinfo',
362 'phpinfo.php' . $common_url_query,
363 null,
364 '_blank'
367 echo ' </ul>';
368 echo ' </div>';
371 echo '<div class="group pmagroup">';
372 echo '<h2>phpMyAdmin</h2>';
373 echo '<ul>';
374 $class = null;
375 // We rely on CSP to allow access to http://www.phpmyadmin.net, but IE lacks
376 // support here and does not allow request to http once using https.
377 if ($GLOBALS['cfg']['VersionCheck']
378 && (! $GLOBALS['PMA_Config']->get('is_https') || PMA_USR_BROWSER_AGENT != 'IE')
380 $class = 'jsversioncheck';
382 PMA_printListItem(
383 __('Version information:') . ' <span class="version">' . PMA_VERSION . '</span>',
384 'li_pma_version',
385 null,
386 null,
387 null,
388 null,
389 $class
391 PMA_printListItem(
392 __('Documentation'),
393 'li_pma_docs',
394 PMA_Util::getDocuLink('index'),
395 null,
396 '_blank'
398 PMA_printListItem(
399 __('Wiki'),
400 'li_pma_wiki',
401 PMA_linkURL('http://wiki.phpmyadmin.net/'),
402 null,
403 '_blank'
406 // does not work if no target specified, don't know why
407 PMA_printListItem(
408 __('Official Homepage'),
409 'li_pma_homepage',
410 PMA_linkURL('http://www.phpMyAdmin.net/'),
411 null,
412 '_blank'
414 PMA_printListItem(
415 __('Contribute'),
416 'li_pma_contribute',
417 PMA_linkURL('https://www.phpmyadmin.net/contribute/'),
418 null,
419 '_blank'
421 PMA_printListItem(
422 __('Get support'),
423 'li_pma_support',
424 PMA_linkURL('https://www.phpmyadmin.net/support/'),
425 null,
426 '_blank'
428 PMA_printListItem(
429 __('List of changes'),
430 'li_pma_changes',
431 'changelog.php' . PMA_URL_getCommon(),
432 null,
433 '_blank'
435 echo ' </ul>';
436 echo ' </div>';
438 echo '</div>';
440 echo '</div>';
443 * Warning if using the default MySQL privileged account
445 if ($server != 0
446 && $cfg['Server']['user'] == 'root'
447 && $cfg['Server']['password'] == ''
449 trigger_error(
451 'You are connected as \'root\' with no password, which'
452 . ' corresponds to the default MySQL privileged account.'
453 . ' Your MySQL server is running with this default, is open to'
454 . ' intrusion, and you really should fix this security hole by'
455 . ' setting a password for user \'root\'.'
457 E_USER_WARNING
462 * As we try to handle charsets by ourself, mbstring overloads just
463 * break it, see bug 1063821.
465 if (@extension_loaded('mbstring') && @ini_get('mbstring.func_overload') > 1) {
466 trigger_error(
468 'You have enabled mbstring.func_overload in your PHP '
469 . 'configuration. This option is incompatible with phpMyAdmin '
470 . 'and might cause some data to be corrupted!'
472 E_USER_WARNING
477 * mbstring is used for handling multibytes inside parser, so it is good
478 * to tell user something might be broken without it, see bug #1063149.
480 if (! @extension_loaded('mbstring')) {
481 trigger_error(
483 'The mbstring PHP extension was not found and you seem to be using'
484 . ' a multibyte charset. Without the mbstring extension phpMyAdmin'
485 . ' is unable to split strings correctly and it may result in'
486 . ' unexpected results.'
488 E_USER_WARNING
492 if ($cfg['LoginCookieValidityDisableWarning'] == false) {
494 * Check whether session.gc_maxlifetime limits session validity.
496 $gc_time = (int)@ini_get('session.gc_maxlifetime');
497 if ($gc_time < $GLOBALS['cfg']['LoginCookieValidity'] ) {
498 trigger_error(
500 'Your PHP parameter [a@http://php.net/manual/en/session.' .
501 'configuration.php#ini.session.gc-maxlifetime@_blank]session.' .
502 'gc_maxlifetime[/a] is lower than cookie validity configured ' .
503 'in phpMyAdmin, because of this, your login might expire sooner ' .
504 'than configured in phpMyAdmin.'
506 E_USER_WARNING
512 * Check whether LoginCookieValidity is limited by LoginCookieStore.
514 if ($GLOBALS['cfg']['LoginCookieStore'] != 0
515 && $GLOBALS['cfg']['LoginCookieStore'] < $GLOBALS['cfg']['LoginCookieValidity']
517 trigger_error(
519 'Login cookie store is lower than cookie validity configured in ' .
520 'phpMyAdmin, because of this, your login will expire sooner than ' .
521 'configured in phpMyAdmin.'
523 E_USER_WARNING
528 * Check if user does not have defined blowfish secret and it is being used.
530 if (! empty($_SESSION['encryption_key'])
531 && empty($GLOBALS['cfg']['blowfish_secret'])
533 trigger_error(
535 'The configuration file now needs a secret passphrase (blowfish_secret).'
537 E_USER_WARNING
542 * Check for existence of config directory which should not exist in
543 * production environment.
545 if (file_exists('config')) {
546 trigger_error(
548 'Directory [code]config[/code], which is used by the setup script, ' .
549 'still exists in your phpMyAdmin directory. It is strongly ' .
550 'recommended to remove it once phpMyAdmin has been configured. ' .
551 'Otherwise the security of your server may be compromised by ' .
552 'unauthorized people downloading your configuration.'
554 E_USER_WARNING
558 if ($server > 0) {
559 $cfgRelation = PMA_getRelationsParam();
560 if (! $cfgRelation['allworks']
561 && $cfg['PmaNoRelation_DisableWarning'] == false
563 $msg_text = __(
564 'The phpMyAdmin configuration storage is not completely '
565 . 'configured, some extended features have been deactivated. '
566 . '%sFind out why%s. '
568 if ($cfg['ZeroConf'] == true) {
569 $msg_text .= '<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' .
571 'Or alternately go to \'Operations\' tab of any database '
572 . 'to set it up there.'
575 $msg = PMA_Message::notice($msg_text);
576 $msg->addParam(
577 '<a href="' . $cfg['PmaAbsoluteUri'] . 'chk_rel.php'
578 . $common_url_query . '">',
579 false
581 $msg->addParam('</a>', false);
582 /* Show error if user has configured something, notice elsewhere */
583 if (!empty($cfg['Servers'][$server]['pmadb'])) {
584 $msg->isError(true);
586 $msg->display();
587 } // end if
591 * Warning about different MySQL library and server version
592 * (a difference on the third digit does not count).
593 * If someday there is a constant that we can check about mysqlnd,
594 * we can use it instead of strpos().
595 * If no default server is set, $GLOBALS['dbi'] is not defined yet.
596 * Drizzle can speak MySQL protocol, so don't warn about version mismatch for
597 * Drizzle servers.
598 * We also do not warn if MariaDB is detected, as it has its own version
599 * numbering.
601 if (isset($GLOBALS['dbi'])
602 && !PMA_DRIZZLE
603 && $cfg['ServerLibraryDifference_DisableWarning'] == false
605 /** @var PMA_String $pmaString */
606 $pmaString = $GLOBALS['PMA_String'];
608 $_client_info = $GLOBALS['dbi']->getClientInfo();
609 if ($server > 0
610 && /*overload*/mb_strpos($_client_info, 'mysqlnd') === false
611 && /*overload*/mb_strpos(PMA_MYSQL_STR_VERSION, 'MariaDB') === false
612 && substr(PMA_MYSQL_CLIENT_API, 0, 3) != substr(
613 PMA_MYSQL_INT_VERSION, 0, 3
616 trigger_error(
617 PMA_sanitize(
618 sprintf(
620 'Your PHP MySQL library version %s differs from your ' .
621 'MySQL server version %s. This may cause unpredictable behavior.'
623 $_client_info,
624 substr(
625 PMA_MYSQL_STR_VERSION,
627 strpos(PMA_MYSQL_STR_VERSION . '-', '-')
631 E_USER_NOTICE
634 unset($_client_info);
638 * Warning about Suhosin only if its simulation mode is not enabled
640 if ($cfg['SuhosinDisableWarning'] == false
641 && @ini_get('suhosin.request.max_value_length')
642 && @ini_get('suhosin.simulation') == '0'
644 trigger_error(
645 sprintf(
647 'Server running with Suhosin. Please refer to %sdocumentation%s ' .
648 'for possible issues.'
650 '[doc@faq1-38]',
651 '[/doc]'
653 E_USER_WARNING
658 * Warning about incomplete translations.
660 * The data file is created while creating release by ./scripts/remove-incomplete-mo
662 if (file_exists('libraries/language_stats.inc.php')) {
663 include 'libraries/language_stats.inc.php';
665 * This message is intentionally not translated, because we're
666 * handling incomplete translations here and focus on english
667 * speaking users.
669 if (isset($GLOBALS['language_stats'][$lang])
670 && $GLOBALS['language_stats'][$lang] < $cfg['TranslationWarningThreshold']
672 trigger_error(
673 'You are using an incomplete translation, please help to make it '
674 . 'better by [a@https://www.phpmyadmin.net/translate/'
675 . '@_blank]contributing[/a].',
676 E_USER_NOTICE
682 * prints list item for main page
684 * @param string $name displayed text
685 * @param string $listId id, used for css styles
686 * @param string $url make item as link with $url as target
687 * @param string $mysql_help_page display a link to MySQL's manual
688 * @param string $target special target for $url
689 * @param string $a_id id for the anchor,
690 * used for jQuery to hook in functions
691 * @param string $class class for the li element
692 * @param string $a_class class for the anchor element
694 * @return void
696 function PMA_printListItem($name, $listId = null, $url = null,
697 $mysql_help_page = null, $target = null, $a_id = null, $class = null,
698 $a_class = null
700 echo '<li id="' . $listId . '"';
701 if (null !== $class) {
702 echo ' class="' . $class . '"';
704 echo '>';
705 if (null !== $url) {
706 echo '<a href="' . $url . '"';
707 if (null !== $target) {
708 echo ' target="' . $target . '"';
710 if (null !== $a_id) {
711 echo ' id="' . $a_id . '"';
713 if (null !== $a_class) {
714 echo ' class="' . $a_class . '"';
716 echo '>';
719 echo $name;
721 if (null !== $url) {
722 echo '</a>' . "\n";
724 if (null !== $mysql_help_page) {
725 echo PMA_Util::showMySQLDocu($mysql_help_page);
727 echo '</li>';