5 * @package phpMyAdmin-setup
8 if (!defined('PHPMYADMIN')) {
15 require_once './libraries/display_select_lang.lib.php';
16 require_once './libraries/config/FormDisplay.class.php';
17 require_once './setup/lib/index.lib.php';
19 // prepare unfiltered language list
20 $all_languages = PMA_langList();
21 uasort($all_languages, 'PMA_language_cmp');
23 $cf = ConfigFile
::getInstance();
24 $separator = PMA_get_arg_separator('html');
30 // Check phpMyAdmin version
32 if (isset($_GET['version_check'])) {
37 // Perform various security, compatibility and consistency checks
39 perform_config_checks();
42 // Check whether we can read/write configuration
44 $config_readable = false;
45 $config_writable = false;
46 $config_exists = false;
47 check_config_rw($config_readable, $config_writable, $config_exists);
48 if (!$config_writable ||
!$config_readable) {
49 messages_set('error', 'config_rw', __('Cannot load or save configuration'),
50 PMA_lang(__('Please create web server writable folder [em]config[/em] in phpMyAdmin top level directory as described in [a@Documentation.html#setup_script]documentation[/a]. Otherwise you will be only able to download or display it.')));
53 // Check https connection
55 $is_https = !empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on';
57 $text = __('You are not using a secure connection; all data (including potentially sensitive information, like passwords) is transferred unencrypted!');
59 if (!empty($_SERVER['REQUEST_URI']) && !empty($_SERVER['HTTP_HOST'])) {
60 $strInsecureConnectionMsg2 = __('If your server is also configured to accept HTTPS requests follow [a@%s]this link[/a] to use a secure connection.');
61 $text .= ' ' . PMA_lang($strInsecureConnectionMsg2,
62 'https://' . htmlspecialchars($_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']));
64 messages_set('notice', 'no_https', __('Insecure connection'), $text);
68 <form id
="select_lang" method
="post" action
="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']) ?>">
69 <?php
echo PMA_generate_common_hidden_inputs() ?
>
70 <bdo xml
:lang
="en" dir
="ltr"><label
for="lang">
71 <?php
echo __('Language') . (__('Language') != 'Language' ?
' - Language' : '') ?
>
73 <select id
="lang" name
="lang" onchange
="this.form.submit();" xml
:lang
="en" dir
="ltr">
75 // create language list
77 foreach ($all_languages as $each_lang_key => $each_lang) {
78 $lang_name = PMA_langName($each_lang);
79 //Is current one active?
80 $selected = ($GLOBALS['lang'] == $each_lang_key) ?
' selected="selected"' : '';
81 echo '<option value="' . $each_lang_key . '"' . $selected . '>' . $lang_name
88 <h2
><?php
echo __('Overview') ?
></h2
>
96 <a href
="#" id
="show_hidden_messages" style
="display:none"><?php
echo __('Show hidden messages (#MSG_COUNT)') ?
></a
>
98 <h3
><?php
echo __('Servers') ?
></h3
>
101 // Display server list
103 display_form_top('index.php', 'get', array(
109 <?php
if ($cf->getServerCount() > 0): ?
>
110 <table cellspacing
="0" class="datatable" style
="table-layout: fixed">
113 <th
><?php
echo __('Name') ?
></th
>
114 <th
><?php
echo __('Authentication type') ?
></th
>
115 <th colspan
="2">DSN
</th
>
117 <?php
foreach ($cf->getServers() as $id => $server): ?
>
119 <td
><?php
echo $id ?
></td
>
120 <td
><?php
echo htmlspecialchars($cf->getServerName($id)) ?
></td
>
121 <td
><?php
echo htmlspecialchars($cf->getValue("Servers/$id/auth_type")) ?
></td
>
122 <td
><?php
echo htmlspecialchars($cf->getServerDSN($id)) ?
></td
>
123 <td style
="white-space: nowrap">
125 <a href
="<?php echo "?page
=servers
{$separator}mode
=edit
{$separator}id
=$id" ?>"><?php
echo __('Edit') ?
></a
>
126 |
<a href
="<?php echo "?page
=servers
{$separator}mode
=remove
{$separator}id
=$id" ?>"><?php
echo __('Delete') ?
></a
>
136 <i
><?php
echo __('There are no configured servers') ?
></i
>
143 <td
class="lastrow" style
="text-align: left">
144 <input type
="submit" name
="submit" value
="<?php echo __('New server') ?>" />
150 display_form_bottom();
153 <h3
><?php
echo __('Configuration file') ?
></h3
>
156 // Display config file settings and load/save form
158 $form_display = new FormDisplay();
160 display_form_top('config.php');
161 display_fieldset_top('', '', null, array('class' => 'simple'));
163 // Display language list
165 'doc' => $form_display->getDocLink('DefaultLang'),
166 'wiki' => $form_display->getWikiLink('DefaultLang'),
168 'values_escaped' => true);
169 foreach ($all_languages as $each_lang_key => $each_lang) {
170 $lang_name = PMA_langName($each_lang);
171 $opts['values'][$each_lang_key] = $lang_name;
173 display_input('DefaultLang', __('Default language'), '', 'select',
174 $cf->getValue('DefaultLang'), true, $opts);
176 // Display server list
178 'doc' => $form_display->getDocLink('ServerDefault'),
179 'wiki' => $form_display->getWikiLink('ServerDefault'),
181 'values_disabled' => array());
182 if ($cf->getServerCount() > 0) {
183 $opts['values']['0'] = __('let the user choose');
184 $opts['values']['-'] = '------------------------------';
185 if ($cf->getServerCount() == 1) {
186 $opts['values_disabled'][] = '0';
188 $opts['values_disabled'][] = '-';
190 foreach ($cf->getServers() as $id => $server) {
191 $opts['values'][(string)$id] = $cf->getServerName($id) . " [$id]";
194 $opts['values']['1'] = __('- none -');
195 $opts['values_escaped'] = true;
197 display_input('ServerDefault', __('Default server'), '', 'select',
198 $cf->getValue('ServerDefault'), true, $opts);
203 'unix' => 'UNIX / Linux (\n)',
204 'win' => 'Windows (\r\n)'),
205 'values_escaped' => true);
206 $eol = PMA_ifSetOr($_SESSION['eol'], (PMA_IS_WINDOWS ?
'win' : 'unix'));
207 display_input('eol', __('End of line'), '', 'select',
211 <td colspan
="2" class="lastrow" style
="text-align: left">
212 <input type
="submit" name
="submit_display" value
="<?php echo __('Display') ?>" />
213 <input type
="submit" name
="submit_download" value
="<?php echo __('Download') ?>" />
215 <input type
="submit" name
="submit_save" value
="<?php echo __('Save') ?>"<?php
if (!$config_writable) echo ' disabled="disabled"' ?
> />
216 <input type
="submit" name
="submit_load" value
="<?php echo __('Load') ?>"<?php
if (!$config_exists) echo ' disabled="disabled"' ?
> />
217 <input type
="submit" name
="submit_delete" value
="<?php echo __('Delete') ?>"<?php
if (!$config_exists ||
!$config_writable) echo ' disabled="disabled"' ?
> />
219 <input type
="submit" name
="submit_clear" value
="<?php echo __('Clear') ?>" class="red" />
223 display_fieldset_bottom_simple();
224 display_form_bottom();
227 <a href
="http://phpmyadmin.net"><?php
echo __('phpMyAdmin homepage') ?
></a
>
228 <a href
="http://sourceforge.net/donate/index.php?group_id=23067"><?php
echo __('Donate') ?
></a
>
229 <a href
="?version_check=1<?php echo "{$separator}token
=" . $_SESSION[' PMA_token '] ?>"><?php
echo __('Check for latest version') ?
></a
>