3.1.2 release
[phpmyadmin/crack.git] / Documentation.html
blob28649ae5dc2b3a93ae509316822efff5ef084c43
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
4 version="-//W3C//DTD XHTML 1.1//EN" dir="ltr">
5 <!-- $Id$ -->
6 <!--
7 vim: expandtab ts=4 sw=4 sts=4 tw=78
8 -->
10 <head>
11 <link rel="icon" href="./favicon.ico" type="image/x-icon" />
12 <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
13 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
14 <title>phpMyAdmin 3.1.2 - Documentation</title>
15 <link rel="stylesheet" type="text/css" href="docs.css" />
16 </head>
18 <body id="top">
20 <!-- TOP MENU -->
21 <ul class="header">
22 <li><a href="#top">Top</a></li>
23 <li><a href="#require">Requirements</a></li>
24 <li><a href="#intro">Introduction</a></li>
25 <li><a href="#setup">Installation</a></li>
26 <li><a href="#setup_script">Setup script</a></li>
27 <li><a href="#config">Configuration</a></li>
28 <li><a href="#transformations">Transformations</a></li>
29 <li><a href="#faq"><abbr title="Frequently Asked Questions">FAQ</abbr></a></li>
30 <li><a href="#developers">Developers</a></li>
31 <li><a href="#credits">Credits</a></li>
32 <li><a href="translators.html">Translators</a></li>
33 <li><a href="#glossary">Glossary</a></li>
34 </ul>
36 <h1>phpMyAdmin 3.1.2 Documentation</h1>
38 <ul><li><a href="http://www.phpmyadmin.net/">
39 phpMyAdmin homepage</a></li>
40 <li><a href="https://sf.net/projects/phpmyadmin/">
41 SourceForge phpMyAdmin project page</a></li>
42 <li><a href="http://wiki.cihar.com">
43 Official phpMyAdmin wiki</a></li>
44 <li>Local documents:
45 <ul><li>Version history: <a href="changelog.php">ChangeLog</a></li>
46 <li>General notes: <a href="readme.php">README</a></li>
47 <li>License: <a href="license.php">LICENSE</a></li>
48 </ul>
49 </li>
50 <li>Documentation version:
51 <i>$Id$</i>
52 </li>
53 </ul>
55 <!-- REQUIREMENTS -->
56 <h2 id="require">Requirements</h2>
58 <ul><li><b>PHP</b>
59 <ul><li>You need PHP 5.2.0 or newer, with <tt>session</tt> support
60 (<a href="#faq1_31">see
61 <abbr title="Frequently Asked Questions">FAQ</abbr> 1.31</a>)
62 and the Standard PHP Library (SPL) extension.
63 </li>
64 <li>To support uploading of ZIP files, you need the PHP <tt>zip</tt> extension.</li>
65 <li>For proper support of multibyte strings (eg. UTF-8, which is
66 currently default), you should install mbstring and ctype
67 extensions.
68 </li>
69 <li>You need GD2 support in PHP to display inline
70 thumbnails of JPEGs (&quot;image/jpeg: inline&quot;) with their
71 original aspect ratio</li>
72 <li>When using the &quot;cookie&quot;
73 <a href="#authentication_modes">authentication method</a>, the
74 <a href="http://www.php.net/mcrypt"><tt>mcrypt</tt></a> extension
75 is strongly suggested for most users and is <b>required</b> for
76 64&#8211;bit machines. Not using mcrypt will cause phpMyAdmin to
77 load pages significantly slower.
78 </li>
79 </ul>
80 </li>
81 <li><b>MySQL</b> 5.0 or newer (<a href="#faq1_17">details</a>);</li>
82 <li><b>Web browser</b> with cookies enabled.</li>
83 </ul>
85 <!-- INTRODUCTION -->
86 <h2 id="intro">Introduction</h2>
88 <p> phpMyAdmin can manage a whole MySQL server (needs a super-user) as well as
89 a single database. To accomplish the latter you'll need a properly set up
90 MySQL user who can read/write only the desired database. It's up to you to
91 look up the appropriate part in the MySQL manual.
92 </p>
94 <h3>Currently phpMyAdmin can:</h3>
96 <ul><li>browse and drop databases, tables, views, fields and indexes</li>
97 <li>create, copy, drop, rename and alter databases, tables, fields and
98 indexes</li>
99 <li>maintenance server, databases and tables, with proposals on server
100 configuration</li>
101 <li>execute, edit and bookmark any
102 <abbr title="structured query language">SQL</abbr>-statement, even
103 batch-queries</li>
104 <li>load text files into tables</li>
105 <li>create<a href="#footnote_1"><sup>1</sup></a> and read dumps of tables
106 </li>
107 <li>export<a href="#footnote_1"><sup>1</sup></a> data to various formats:
108 <abbr title="comma separated values">CSV</abbr>,
109 <abbr title="Extensible Markup Language">XML</abbr>,
110 <abbr title="Portable Document Format">PDF</abbr>,
111 <abbr title="International Standards Organisation">ISO</abbr>/<abbr
112 title="International Electrotechnical Commission">IEC</abbr> 26300 -
113 OpenDocument Text and Spreadsheet,
114 <abbr title="Microsoft Word 2000">Word</abbr>,
115 <abbr title="Microsoft Excel 2000">Excel</abbr> and L<sup>A</sup>T<sub><big>E</big></sub>X formats
116 </li>
117 <li>administer multiple servers</li>
118 <li>manage MySQL users and privileges</li>
119 <li>check referential integrity in MyISAM tables</li>
120 <li>using Query-by-example (QBE), create complex queries automatically
121 connecting required tables</li>
122 <li>create <abbr title="Portable Document Format">PDF</abbr> graphics of
123 your Database layout</li>
124 <li>search globally in a database or a subset of it</li>
125 <li>transform stored data into any format using a set of predefined
126 functions, like displaying BLOB-data as image or download-link
127 </li>
128 <li>support InnoDB tables and foreign keys <a href="#faq3_6">(see
129 <abbr title="Frequently Asked Questions">FAQ</abbr> 3.6)</a></li>
130 <li>support mysqli, the improved MySQL extension <a href="#faq1_17">
131 (see <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17)</a></li>
132 <li>communicate in <a href="./translators.html">55 different languages</a>
133 </li>
134 </ul>
136 <h4>A word about users:</h4>
137 <p> Many people have difficulty
138 understanding the concept of user management with regards to phpMyAdmin. When
139 a user logs in to phpMyAdmin, that username and password are passed directly
140 to MySQL. phpMyAdmin does no account management on its own (other than
141 allowing one to manipulate the MySQL user account information); all users
142 must be valid MySQL users.</p>
144 <p class="footnote" id="footnote_1">
145 <sup>1)</sup> phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats)
146 dumps and <abbr title="comma separated values">CSV</abbr> exports if you use
147 PHP with Zlib support (<tt>--with-zlib</tt>) and/or Bzip2 support
148 (<tt>--with-bz2</tt>). Proper support may also need changes in
149 <tt>php.ini</tt>.</p>
151 <!-- INSTALLATION -->
152 <h2 id="setup">Installation</h2>
154 <ol><li><a href="#quick_install">Quick Install</a></li>
155 <li><a href="#setup_script">Setup script usage</a></li>
156 <li><a href="#linked-tables">Linked-tables infrastructure</a></li>
157 <li><a href="#upgrading">Upgrading from an older version</a></li>
158 <li><a href="#authentication_modes">Using authentication modes</a></li>
159 </ol>
161 <p class="important">
162 phpMyAdmin does not apply any special security methods to the MySQL database
163 server. It is still the system administrator's job to grant permissions on
164 the MySQL databases properly. phpMyAdmin's &quot;Privileges&quot; page can
165 be used for this.
166 </p>
168 <p class="important">
169 Warning for <acronym title="Apple Macintosh">Mac</acronym> users:<br />
170 if you are on a <acronym title="Apple Macintosh">Mac</acronym>
171 <abbr title="operating system">OS</abbr> version before
172 <abbr title="operating system">OS</abbr> X, StuffIt unstuffs with
173 <acronym title="Apple Macintosh">Mac</acronym> formats.<br />
174 So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin scripts
175 before uploading them to your server, as PHP seems not to like
176 <acronym title="Apple Macintosh">Mac</acronym>-style end of lines character
177 (&quot;<tt>\r</tt>&quot;).</p>
179 <h3 id="quick_install">Quick Install</h3>
180 <ol><li>Choose an appropriate distribution kit from the phpmyadmin.net
181 Downloads page. Some kits contain only the English messages,
182 others contain all languages in UTF-8 format (this should be fine
183 in most situations), others contain all
184 languages and all character sets. We'll assume you chose a kit whose
185 name looks like <tt>phpMyAdmin-x.x.x-all-languages.tar.gz</tt>.
186 </li>
187 <li>Untar or unzip the distribution (be sure to unzip the subdirectories):
188 <tt>tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> in your webserver's
189 document root. If you don't have direct access to your document root,
190 put the files in a directory on your local machine, and, after step 4,
191 transfer the directory on your web server using, for example, ftp.</li>
192 <li>Ensure that all the scripts have the appropriate owner (if PHP is
193 running in safe mode, having some scripts with an owner different
194 from the owner of other scripts will be a
195 problem). See <a href="#faq4_2">
196 <abbr title="Frequently Asked Questions">FAQ</abbr> 4.2</a> and
197 <a href="#faq1_26"><abbr title="Frequently Asked Questions">FAQ</abbr>
198 1.26</a> for suggestions.</li>
199 <li>Now you must configure your installation. There are two methods that
200 can be used. Traditionally, users have hand-edited a copy of
201 <tt>config.inc.php</tt>, but now a wizard-style setup script is
202 provided for those who prefer a graphical installation. Creating a
203 <tt>config.inc.php</tt> is still a quick way to get started and needed for some advanced features.
204 <ul><li>To manually create the file, simply use your text editor to
205 create the file <tt>config.inc.php</tt> (you can copy
206 <tt>config.sample.inc.php</tt> to get minimal configuration
207 file) in the main (top-level) phpMyAdmin directory (the one
208 that contains <tt>index.php</tt>). phpMyAdmin first loads
209 <tt>libraries/config.default.php</tt> and then overrides those
210 values with anything found in <tt>config.inc.php</tt>. If the
211 default value is okay for a particular setting, there is no
212 need to include it in <tt>config.inc.php</tt>. You'll need a
213 few directives to get going, a simple configuration may look
214 like this:
215 <pre>
216 &lt;?php
217 $cfg['blowfish_secret'] = 'ba17c1ec07d65003'; // use here a value of your choice
219 $i=0;
220 $i++;
221 $cfg['Servers'][$i]['auth_type'] = 'cookie';
222 ?&gt;
223 </pre>
224 Or, if you prefer to not be prompted every time you log in:
225 <pre>
226 &lt;?php
228 $i=0;
229 $i++;
230 $cfg['Servers'][$i]['user'] = 'root';
231 $cfg['Servers'][$i]['password'] = 'cbb74bc'; // use here your password
232 ?&gt;
233 </pre>
234 For a full explanation of possible configuration values, see the
235 <a href="#config">Configuration Section</a> of this document.</li>
236 <li id="setup_script">Instead of manually editing
237 <tt>config.inc.php</tt>, you can use the
238 <a href="setup/">Setup Script</a>. First you must
239 manually create a folder <tt>config</tt> in the phpMyAdmin
240 directory. This is a security measure. On a Linux/Unix system you
241 can use the following commands:
242 <pre>
243 cd phpMyAdmin
244 mkdir config # create directory for saving
245 chmod o+rw config # give it world writable permissions
246 </pre>
247 And to edit an existing configuration, copy it over first:
248 <pre>
249 cp config.inc.php config/ # copy current configuration for editing
250 chmod o+w config/config.inc.php # give it world writable permissions
251 </pre>
252 On other platforms, simply create the folder and ensure that your
253 web server has read and write access to it. <a href="#faq1_26">FAQ
254 1.26</a> can help with this.<br /><br />
256 Next, open <tt><a href="setup/">setup/</a>
257 </tt>in your browser. Note that <strong>changes are not saved to
258 disk until explicitly choose <tt>Save</tt></strong> from the
259 <i>Configuration</i> area of the screen. Normally the script saves
260 the new config.inc.php to the <tt>config/</tt> directory, but if
261 the webserver does not have the proper permissions you may see the
262 error "Cannot load or save configuration." Ensure that the <tt>
263 config/</tt> directory exists and has the proper permissions -
264 or use the <tt>Download</tt> link to save the config file locally
265 and upload (via FTP or some similar means) to the proper location.<br /><br />
267 Once the file has been saved, it must be moved out of the <tt>
268 config/</tt> directory and the permissions must be reset, again
269 as a security measure:
270 <pre>
271 mv config/config.inc.php . # move file to current directory
272 chmod o-rw config.inc.php # remove world read and write permissions
273 </pre>
274 Now the file is ready to be used. You can choose to review or edit
275 the file with your favorite editor, if you prefer to set some
276 advanced options which the setup script does not provide.</li></ul></li>
277 <li>If you are using the
278 <tt>auth_type</tt> &quot;config&quot;, it is suggested that you
279 protect the phpMyAdmin installation directory because using
280 config does not require a user to
281 enter a password to access the phpMyAdmin installation. Use of an alternate
282 authentication method is recommended, for example with
283 HTTP&#8211;AUTH in a <a href="#glossary"><i>.htaccess</i></a> file or switch to using
284 <tt>auth_type</tt> cookie or http. See the
285 <a href="#faqmultiuser"> multi&#8211;user sub&#8211;section</a> of this
286 <abbr title="Frequently Asked Questions">FAQ</abbr> for additional
287 information, especially <a href="#faq4_4">
288 <abbr title="Frequently Asked Questions">FAQ</abbr> 4.4</a>.</li>
289 <li>Open the <a href="index.php">main phpMyAdmin directory</a>
290 in your browser. phpMyAdmin should now display a welcome screen
291 and your databases, or a login dialog if using
292 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
293 authentication mode.</li>
294 <li>You should deny access to the <tt>./libraries</tt> subfolder in your
295 webserver configuration. For Apache you can use supplied .htaccess file
296 in that folder, for other webservers, you should configure this yourself.
297 Such configuration prevents from possible path exposure and cross side
298 scripting vulnerabilities that might happen to be found in that code.</li>
299 </ol>
301 <h3 id="linked-tables">Linked-tables infrastructure</h3>
303 <p> For a whole set of new features (bookmarks, comments,
304 <abbr title="structured query language">SQL</abbr>-history,
305 <abbr title="Portable Document Format">PDF</abbr>-generation, field contents
306 transformation, etc.) you need to create a set of special tables. Those
307 tables can be located in your own database, or in a central database for a
308 multi-user installation (this database would then be accessed by the
309 controluser, so no other user should have rights to it).</p>
311 <p> Please look at your <tt>./scripts/</tt> directory, where you should find a
312 file called <i>create_tables.sql</i>. (If you are using a Windows server, pay
313 special attention to <a href="#faq1_23">
314 <abbr title="Frequently Asked Questions">FAQ</abbr> 1.23</a>).</p>
316 <p> If you already had this infrastructure and upgraded to MySQL 4.1.2
317 or newer, please use <i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i>.</p>
319 <p> You can use your phpMyAdmin to create the tables for you. Please be aware
320 that you may need special (administrator) privileges to create the database
321 and tables, and that the script may need some tuning, depending on the
322 database name.</p>
324 <p> After having imported the <i>./scripts/create_tables.sql</i> file, you
325 should specify the table names in your <i>./config.inc.php</i> file. The
326 directives used for that can be found in the <a href="#config">Configuration
327 section</a>. You will also need to have a controluser with the proper rights
328 to those tables (see section <a href="#authentication_modes">Using
329 authentication modes</a> below).</p>
331 <h3 id="upgrading">Upgrading from an older version</h3>
333 <p> Simply copy <i>./config.inc.php</i> from your previous installation into the newly
334 unpacked one. Configuration files from very old versions (2.3.0 or before) may
335 require some tweaking as some options have been changed or removed.
336 For compatibility with PHP 6, remove a <tt>set_magic_quotes_runtime(0);</tt>
337 statement that you might find near the end of your configuration file.</p>
339 <p> You should <strong>not</strong> copy <tt>libraries/config.default.php</tt>
340 over <tt>config.inc.php</tt> because the default configuration file
341 is version-specific.</p>
343 <p> If you have upgraded your MySQL server from a version previous to 4.1.2 to
344 version 4.1.2 or newer and if you use the pmadb/linked table infrastructure,
345 you should run the SQL script found in
346 <tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>.</p>
348 <h3 id="authentication_modes">Using authentication modes</h3>
350 <ul><li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie
351 authentication modes are recommended in a <b>multi-user environment</b>
352 where you want to give users access to their own database and don't want
353 them to play around with others.<br />
354 Nevertheless be aware that MS Internet Explorer seems to be really buggy
355 about cookies, at least till version 6, and PHP 4.1.1 is also a bit buggy
356 in this area!<br />
357 Even in a <b>single-user environment</b>, you might prefer to use
358 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie mode so
359 that your user/password pair are not in clear in the configuration file.
360 </li>
362 <li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie
363 authentication modes are more secure: the MySQL login information does
364 not need to be set in the phpMyAdmin configuration file (except possibly
365 for the <a href="#controluser">controluser</a>).<br />
366 However, keep in mind that the password travels in plain text, unless
367 you are using the HTTPS protocol.<br />
368 In cookie mode, the password is stored, encrypted with the blowfish
369 algorithm, in a temporary cookie.</li>
371 <li>Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
372 your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
374 For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
375 modes, phpMyAdmin needs a controluser that has <b>only</b> the
376 <tt>SELECT</tt> privilege on the <i>`mysql`.`user` (all columns except
377 `Password`)</i>, <i>`mysql`.`db` (all columns)</i>, <i>`mysql`.`host`
378 (all columns)</i> and <i>`mysql`.`tables_priv` (all columns except
379 `Grantor` and `Timestamp`)</i> tables.<br /> You must specify the details
380 for the <a href="#controluser">controluser</a> in the <tt>config.inc.php</tt>
381 file under the
382 <tt><a href="#cfg_Servers_controluser" class="configrule">
383 $cfg['Servers'][$i]['controluser']</a></tt> and
384 <tt><a href="#cfg_Servers_controlpass" class="configrule">
385 $cfg['Servers'][$i]['controlpass']</a></tt> settings.<br />
386 The following example assumes you want to use <tt>pma</tt> as the
387 controluser and <tt>pmapass</tt> as the controlpass, but <b>this is
388 only an example: use something else in your file!</b> Input these
389 statements from the phpMyAdmin SQL Query window or mysql command&#8211;line
390 client.<br />
391 Of course you have to replace <tt>localhost</tt> with the webserver's host
392 if it's not the same as the MySQL server's one.
394 <pre>
395 GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass';
396 GRANT SELECT (
397 Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv,
398 Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv,
399 File_priv, Grant_priv, References_priv, Index_priv, Alter_priv,
400 Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv,
401 Execute_priv, Repl_slave_priv, Repl_client_priv
402 ) ON mysql.user TO 'pma'@'localhost';
403 GRANT SELECT ON mysql.db TO 'pma'@'localhost';
404 GRANT SELECT ON mysql.host TO 'pma'@'localhost';
405 GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv)
406 ON mysql.tables_priv TO 'pma'@'localhost';</pre>
408 If you want to use the many new relation and bookmark features:
410 <pre>
411 GRANT SELECT, INSERT, UPDATE, DELETE ON &lt;pma_db&gt;.* TO 'pma'@'localhost';
412 </pre>
414 (this of course requires that your <a href="#linked-tables">linked-tables
415 infrastructure</a> be set up).<br /></li>
417 <li>Then each of the <i>true</i> users should be granted a set of privileges
418 on a set of particular databases. Normally you shouldn't give global
419 privileges to an ordinary user, unless you understand the impact of those
420 privileges (for example, you are creating a superuser).<br />
421 For example, to grant the user <i>real_user</i> with all privileges on
422 the database <i>user_base</i>:<br />
424 <pre>
425 GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password';
426 </pre>
428 What the user may now do is controlled entirely by the MySQL user
429 management system.<br />
430 With <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
431 authentication mode, you don't need to fill the user/password fields
432 inside the <a href="#cfg_Servers" class="configrule">$cfg['Servers']</a>
433 array.</li>
434 </ul>
436 <h4>'<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication mode</h4>
438 <ul><li>Uses <abbr title="HyperText Transfer Protocol">HTTP</abbr> Basic authentication
439 method and allows you to log in as any valid MySQL user.</li>
440 <li>Is supported with most PHP configurations. For
441 <abbr title="Internet Information Services">IIS</abbr>
442 (<abbr title="Internet Server Application Programming Interface">ISAPI</abbr>)
443 support using <abbr title="Common Gateway Interface">CGI</abbr> PHP see
444 <a href="#faq1_32"><abbr title="Frequently Asked Questions">FAQ</abbr>
445 1.32</a>, for using with Apache
446 <abbr title="Common Gateway Interface">CGI</abbr> see
447 <a href="#faq1_35"><abbr title="Frequently Asked Questions">FAQ</abbr>
448 1.35</a>.</li>
449 <li>See also <a href="#faq4_4">
450 <abbr title="Frequently Asked Questions">FAQ</abbr> 4.4</a> about not
451 using the <i>.htaccess</i> mechanism along with
452 '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication
453 mode.</li>
454 </ul>
456 <h4>'cookie' authentication mode</h4>
458 <ul><li>You can use this method as a replacement for the
459 <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication
460 (for example, if you're running
461 <abbr title="Internet Information Services">IIS</abbr>).</li>
462 <li>Obviously, the user must enable cookies in the browser, but this is
463 now a requirement for all authentication modes.</li>
464 <li>With this mode, the user can truly log out of phpMyAdmin and log in back
465 with the same username.</li>
466 <li>If you want to log in to arbitrary server see
467 <a href="#AllowArbitraryServer" class="configrule">
468 $cfg['AllowArbitraryServer']</a> directive.</li>
469 <li>As mentioned in the <a href="#require">requirements</a> section, having
470 the <tt>mcrypt</tt> extension will speed up access considerably, but is
471 not required.</li>
472 </ul>
474 <h4>'signon' authentication mode</h4>
476 <ul><li>This mode is a convenient way of using credentials from another
477 application to authenticate to phpMyAdmin.</li>
478 <li>The other application has to store login information into
479 session data.</li>
480 <li>More details in the <a href="#cfg_Servers_auth_type">auth_type</a>
481 section.</li>
482 </ul>
483 <h4>'config' authentication mode</h4>
485 <ul><li>This mode is the less secure one because it requires you to fill the
486 <a href="#servers_user" class="configrule">
487 $cfg['Servers'][$i]['user']</a> and
488 <a href="#servers_user" class="configrule">
489 $cfg['Servers'][$i]['password']</a> fields (and as a result, anyone who
490 can read your config.inc.php can discover your username and password).
491 <br />
492 But you don't need to setup a &quot;controluser&quot; here: using the
493 <a href="#servers_only_db" class="configrule">
494 $cfg['Servers'][$i]['only_db']</a> might be enough.</li>
495 <li>In the <a href="#faqmultiuser">
496 <abbr title="Internet service provider">ISP</abbr>
497 <abbr title="Frequently Asked Questions">FAQ</abbr></a> section, there
498 is an entry explaining how to protect your configuration file.</li>
499 <li>For additional security in this mode, you may wish to consider the Host
500 authentication
501 <a href="#servers_allowdeny_order" class="configrule">
502 $cfg['Servers'][$i]['AllowDeny']['order']</a> and
503 <a href="#servers_allowdeny_rules" class="configrule">
504 $cfg['Servers'][$i]['AllowDeny']['rules']</a> configuration
505 directives.</li>
506 <li>Unlike cookie and http, does not require a user to log in when first
507 loading the phpMyAdmin site. This is by design but could allow any
508 user to access your installation. Use of some restriction method is
509 suggested, perhaps a <a href="#glossary">.htaccess</a> file with the
510 HTTP-AUTH directive or disallowing incoming HTTP requests at
511 one&#8217;s router or firewall will suffice (both of which
512 are beyond the scope of this manual but easily searchable with Google).</li>
513 </ul>
514 <h4 id="swekey">Swekey authentication</h4>
516 The Swekey is a low cost authentication USB key that can be used in
517 web applications.<br /><br />
518 When Swekey authentication is activated, phpMyAdmin requires the
519 users's Swekey to be plugged before entering the login page (currently
520 supported for cookie authentication mode only). Swekey Authentication is
521 disabled by default.<br /><br />
522 To enable it, add the following line to <tt>config.inc.php</tt>:
523 </p>
524 <pre>
525 $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey.conf';
526 </pre>
528 You then have to create the <tt>swekey.conf</tt> file that will associate
529 each user with their Swekey Id. It is important to place this file outside
530 of your web server's document root (in the example, it is located in <tt>/etc</tt>). A self documented sample file is provided
531 in the <tt>contrib</tt> directory. Feel free to use it with your own
532 users' information.<br /><br />
533 If you want to purchase a Swekey please visit
534 <a href="http://phpmyadmin.net/auth_key">http://phpmyadmin.net/auth_key</a>
535 since this link provides funding for phpMyAdmin.
536 </p>
537 <!-- CONFIGURATION -->
538 <h2 id="config">Configuration</h2>
540 <p> <span class="important">Warning for <acronym title="Apple Macintosh">Mac</acronym>
541 users:</span> PHP does not seem to like
542 <acronym title="Apple Macintosh">Mac</acronym> end of lines character
543 (&quot;<tt>\r</tt>&quot;). So ensure you choose the option that allows to use
544 the *nix end of line character (&quot;<tt>\n</tt>&quot;) in your text editor
545 before saving a script you have modified.</p>
547 <p> <span class="important">Configuration note:</span>
548 Almost all configurable data is placed in <tt>config.inc.php</tt>. If this file
549 does not exist, please refer to the <a href="#setup">Quick install</a>
550 section to create one. This file only needs to contain the parameters you want to
551 change from their corresponding default value in
552 <tt>libraries/config.default.php</tt>.</p>
554 <p> The parameters which relate to design (like colors) are placed in
555 <tt>themes/themename/layout.inc.php</tt>. You might also want to create
556 <i>config.footer.inc.php</i> and <i>config.header.inc.php</i> files to add
557 your site specific code to be included on start and end of each page.</p>
559 <dl><dt id="cfg_PmaAbsoluteUri">$cfg['PmaAbsoluteUri'] string</dt>
560 <dd>Sets here the complete <abbr title="Uniform Resource Locator">URL</abbr>
561 (with full path) to your phpMyAdmin installation's directory.
562 E.g. <tt>http://www.your_web.net/path_to_your_phpMyAdmin_directory/</tt>.
563 Note also that the <abbr title="Uniform Resource Locator">URL</abbr> on
564 some web servers are case&#8211;sensitive.
565 Don&#8217;t forget the trailing slash at the end.<br /><br />
567 Starting with version 2.3.0, it is advisable to try leaving this
568 blank. In most cases phpMyAdmin automatically detects the proper
569 setting. Users of port forwarding will need to set PmaAbsoluteUri (<a
570 href="https://sf.net/tracker/index.php?func=detail&amp;aid=1340187&amp;group_id=23067&amp;atid=377409">more info</a>).
571 A good test is to browse a table, edit a row and save it. There should
572 be an error message if phpMyAdmin is having trouble auto&#8211;detecting
573 the correct value. If you get an error that this must be set or if
574 the autodetect code fails to detect your path, please post a bug
575 report on our bug tracker so we can improve the code.</dd>
577 <dt id="cfg_PmaNoRelation_DisableWarning">$cfg['PmaNoRelation_DisableWarning'] boolean</dt>
578 <dd>Starting with version 2.3.0 phpMyAdmin offers a lot of features to work
579 with master / foreign &#8211; tables (see
580 <a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>).
581 <br />
582 If you tried to set this up and it does not work for you, have a look on
583 the &quot;Structure&quot; page of one database where you would like to
584 use it. You will find a link that will analyze why those features have
585 been disabled.<br />
586 If you do not want to use those features set this variable to
587 <tt>TRUE</tt> to stop this message from appearing.</dd>
589 <dt id="cfg_SuhosinDisableWarning">$cfg['SuhosinDisableWarning'] boolean</dt>
590 <dd>A warning is displayed on the main page if Suhosin is detected.
591 You can set this parameter to <tt>TRUE</tt> to stop this message
592 from appearing.</dd>
594 <dt id="cfg_AllowThirdPartyFraming">$cfg['AllowThirdPartyFraming'] boolean</dt>
595 <dd>Setting this to <tt>true</tt> allows a page located on a different
596 domain to call phpMyAdmin inside a frame, and is a potential security
597 hole allowing cross-frame scripting attacks.</dd>
599 <dt id="cfg_blowfish_secret">$cfg['blowfish_secret'] string</dt>
600 <dd>The &quot;cookie&quot; auth_type uses blowfish
601 algorithm to encrypt the password.<br />
602 If you are using the &quot;cookie&quot; auth_type, enter here a random
603 passphrase of your choice. It will be used internally by the blowfish
604 algorithm: you won&#8217;t be prompted for this passphrase. The maximum
605 number of characters for this parameter seems to be 46.<br /><br />
607 Since version 3.1.0 phpMyAdmin can generate this on the fly, but it
608 makes a bit weaker security as this generated secret is stored in
609 session and furthermore it makes impossible to recall user name from
610 cookie.</dd>
612 <dt id="cfg_Servers">$cfg['Servers'] array</dt>
613 <dd>Since version 1.4.2, phpMyAdmin supports the administration of multiple
614 MySQL servers. Therefore, a
615 <a href="#cfg_Servers" class="configrule">$cfg['Servers']</a>-array has
616 been added which contains the login information for the different servers.
617 The first
618 <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a>
619 contains the hostname of the first server, the second
620 <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a>
621 the hostname of the second server, etc. In
622 <tt>./libraries/config.default.php</tt>, there is only one section for
623 server definition, however you can put as many as you need in
624 <tt>./config.inc.php</tt>, copy that block or needed parts (you don't
625 have to define all settings, just those you need to change).</dd>
627 <dt id="cfg_Servers_host">$cfg['Servers'][$i]['host'] string</dt>
628 <dd>The hostname or <abbr title="Internet Protocol">IP</abbr> address of your
629 $i-th MySQL-server. E.g. localhost.</dd>
631 <dt id="cfg_Servers_port">$cfg['Servers'][$i]['port'] string</dt>
632 <dd>The port-number of your $i-th MySQL-server. Default is 3306 (leave
633 blank). If you use &quot;localhost&quot; as the hostname, MySQL
634 ignores this port number and connects with the socket, so if you want
635 to connect to a port different from the default port, use
636 &quot;127.0.0.1&quot; or the real hostname in
637 <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a>.
638 </dd>
640 <dt id="cfg_Servers_socket">$cfg['Servers'][$i]['socket'] string</dt>
641 <dd>The path to the socket to use. Leave blank for default.<br />
642 To determine the correct socket, check your MySQL configuration or, using the
643 <tt>mysql</tt> command&#8211;line client, issue the <tt>status</tt> command.
644 Among the resulting information displayed will be the socket used.</dd>
646 <dt id="cfg_Servers_ssl">$cfg['Servers'][$i]['ssl'] boolean</dt>
647 <dd>Whether to enable SSL for connection to MySQL server.
648 </dd>
650 <dt id="cfg_Servers_connect_type">$cfg['Servers'][$i]['connect_type'] string</dt>
651 <dd>What type connection to use with the MySQL server. Your options are
652 <tt>'socket'</tt> and <tt>'tcp'</tt>. It defaults to 'tcp' as that
653 is nearly guaranteed to be available on all MySQL servers, while
654 sockets are not supported on some platforms.<br /><br />
656 To use the socket mode, your MySQL server must be on the same machine
657 as the Web server.</dd>
659 <dt id="cfg_Servers_extension">$cfg['Servers'][$i]['extension'] string</dt>
660 <dd>What php MySQL extension to use for the connection. Valid options are:
661 <br /><br />
663 <tt><i>mysql</i></tt> :
664 The classic MySQL extension. This is the recommended and default
665 method at this time.<br /><br />
667 <tt><i>mysqli</i></tt> :
668 The improved MySQL extension. This extension became available
669 with php 5.0.0 and is the recommended way to connect to a server
670 running MySQL 4.1.x or newer.</dd>
672 <dt id="cfg_Servers_compress">$cfg['Servers'][$i]['compress'] boolean</dt>
673 <dd>Whether to use a compressed protocol for the MySQL server connection
674 or not (experimental).<br />
675 This feature requires PHP&nbsp;&gt;=&nbsp;4.3.0.</dd>
677 <dt id="controluser">
678 <span id="cfg_Servers_controluser">$cfg['Servers'][$i]['controluser']</span> string<br />
679 <span id="cfg_Servers_controlpass">$cfg['Servers'][$i]['controlpass']</span> string
680 </dt>
681 <dd>This special account is used for 2 distinct purposes: to make possible
682 all relational features (see
683 <a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>)
684 and, for a MySQL server previous to 4.1.2 or running with
685 <tt>--skip-show-database</tt>, to enable a multi-user installation
686 (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie
687 authentication mode).<br /><br />
689 When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or
690 cookie authentication modes (or 'config'
691 authentication mode since phpMyAdmin 2.2.1), you need to supply the
692 details of a MySQL account that has <tt>SELECT</tt> privilege on the
693 <i>mysql.user (all columns except &quot;Password&quot;)</i>,
694 <i>mysql.db (all columns)</i> and <i>mysql.tables_priv (all columns
695 except &quot;Grantor&quot; and &quot;Timestamp&quot;) </i>tables.
696 This account is used to check what databases the user will see at
697 login.<br />
698 Please see the <a href="#setup">install section</a> on
699 &quot;Using authentication modes&quot; for more information.<br /><br />
701 In phpMyAdmin versions before 2.2.5, those were called
702 &quot;stduser/stdpass&quot;.</dd>
704 <dt id="cfg_Servers_auth_type">$cfg['Servers'][$i]['auth_type'] string
705 <tt>['<abbr title="HyperText Transfer Protocol">HTTP</abbr>'|'http'|'cookie'|'config'|'signon']</tt></dt>
706 <dd>Whether config or cookie or
707 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or signon authentication
708 should be used for this server.
709 <ul><li>'config' authentication (<tt>$auth_type&nbsp;=&nbsp;'config'</tt>)
710 is the plain old way: username and password are stored in
711 <i>config.inc.php</i>.</li>
712 <li>'cookie' authentication mode
713 (<tt>$auth_type&nbsp;=&nbsp;'cookie'</tt>) as introduced in
714 2.2.3 allows you to log in as any valid MySQL user with the
715 help of cookies. Username and password are stored in
716 cookies during the session and password is deleted when it
717 ends. This can also allow you to log in in arbitrary server if
718 <tt><a href="#AllowArbitraryServer" class="configrule">$cfg['AllowArbitraryServer']</a></tt> enabled.
719 </li>
720 <li>'<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication (was called 'advanced' in previous versions and can be written also as 'http')
721 (<tt>$auth_type&nbsp;=&nbsp;'<abbr title="HyperText Transfer Protocol">HTTP</abbr>'</tt>) as introduced in 1.3.0
722 allows you to log in as any valid MySQL user via HTTP-Auth.</li>
723 <li>'signon' authentication mode
724 (<tt>$auth_type&nbsp;=&nbsp;'signon'</tt>)
725 as introduced in 2.10.0 allows you to log in from prepared PHP
726 session data. This is useful for implementing single signon
727 from another application. Sample way how to seed session is in
728 signon example: <code>scripts/signon.php</code>. You need to
729 configure <a href="#cfg_Servers_SignonSession"
730 class="configrule">session name</a> and <a
731 href="#cfg_Servers_SignonURL" class="configrule">signon
732 URL</a> to use this authentication method.</li>
733 </ul>
735 Please see the <a href="#setup">install section</a> on &quot;Using authentication modes&quot;
736 for more information.
737 </dd>
738 <dt id="servers_auth_swekey_config">
739 <span id="cfg_Servers_auth_swekey_config">$cfg['Servers'][$i]['auth_swekey_config']</span> string<br />
740 </dt>
741 <dd>
742 The name of the file containing <a href="#swekey">Swekey</a> ids and login
743 names for hardware authentication. Leave empty to deactivate this feature.
744 </dd>
745 <dt id="servers_user">
746 <span id="cfg_Servers_user">$cfg['Servers'][$i]['user']</span> string<br />
747 <span id="cfg_Servers_password">$cfg['Servers'][$i]['password']</span> string
748 </dt>
749 <dd>
750 When using auth_type = 'config', this is the user/password-pair
751 which phpMyAdmin will use to connect to the
752 MySQL server. This user/password pair is not needed when <abbr title="HyperText Transfer Protocol">HTTP</abbr> or
753 cookie authentication is used and should be empty.</dd>
754 <dt id="servers_nopassword">
755 <span
756 id="cfg_Servers_nopassword">$cfg['Servers'][$i]['nopassword']</span> boolean
757 </dt>
758 <dd>
759 Allow attempt to log in without password when a login with password
760 fails. This can be used together with http authentication, when
761 authentication is done some other way and phpMyAdmin gets user name
762 from auth and uses empty password for connecting to MySQL. Password
763 login is still tried first, but as fallback, no password method is
764 tried.</dd>
765 <dt id="servers_only_db">
766 <span id="cfg_Servers_only_db">$cfg['Servers'][$i]['only_db']</span> string or array
767 </dt>
768 <dd>
769 If set to a (an array of) database name(s), only this (these) database(s)
770 will be shown to the user. Since phpMyAdmin 2.2.1, this/these
771 database(s) name(s) may contain MySQL wildcards characters
772 (&quot;_&quot; and &quot;%&quot;): if you want to use literal instances
773 of these characters, escape them (I.E. use <tt>'my\_db'</tt> and not
774 <tt>'my_db'</tt>).<br />
775 This setting is an efficient way to lower the server load since the
776 latter does not need to send MySQL requests to build the available
777 database list. But <span class="important">it does not replace the
778 privileges rules of the MySQL database server</span>. If set, it just
779 means only these databases will be displayed but
780 <span class="important">not that all other databases can't be used.</span>
781 <br /><br />
783 An example of using more that one database:
784 <tt>$cfg['Servers'][$i]['only_db'] = array('db1', 'db2');</tt>
785 <br /><br />
787 As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the
788 databases in the left frame, so that you can individually arrange your databases.<br />
789 If you want to have certain databases at the top, but don't care about the others, you do not
790 need to specify all other databases. Use:
791 <tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt>
792 instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic
793 order.</dd>
795 <dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> string
796 </dt>
797 <dd>Regular expression for hiding some databases. This only hides them
798 from listing, but a user is still able to access them (using, for example,
799 the SQL query area). To limit access, use the MySQL privilege system.
800 <br /><br />
801 For example, to hide all databases starting with the letter &#34;a&#34;, use<br />
802 <pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre>
803 and to hide both &#34;db1&#34; and &#34;db2&#34; use <br />
804 <pre>$cfg['Servers'][$i]['hide_db'] = '(db1|db2)';</pre>
805 More information on regular expressions can be found in the
806 <a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php">
807 PCRE pattern syntax</a> portion of the PHP reference manual.
808 </dd>
810 <dt id="cfg_Servers_verbose">$cfg['Servers'][$i]['verbose'] string</dt>
811 <dd>Only useful when using phpMyAdmin with multiple server entries. If set,
812 this string will be displayed instead of the hostname in the pull-down
813 menu on the main page. This can be useful if you want to show only
814 certain databases on your system, for example. For HTTP auth, all
815 non-US-ASCII characters will be stripped.</dd>
817 <dt id="pmadb">
818 <span id="cfg_Servers_pmadb">$cfg['Servers'][$i]['pmadb']</span> string
819 </dt>
820 <dd>The name of the database containing the linked-tables infrastructure.
821 <br /><br />
823 See the <a href="#linked-tables">Linked-tables infrastructure</a>
824 section in this document to see the benefits of this infrastructure,
825 and for a quick way of creating this database and the needed tables.
826 <br /><br />
828 If you are the only user of this phpMyAdmin installation, you can
829 use your current database to store those special tables; in this
830 case, just put your current database name in
831 <tt>$cfg['Servers'][$i]['pmadb']</tt>. For a multi-user installation,
832 set this parameter to the name of your central database containing
833 the linked-tables infrastructure.</dd>
835 <dt id="bookmark">
836 <span id="cfg_Servers_bookmarktable">$cfg['Servers'][$i]['bookmarktable']</span> string
837 </dt>
838 <dd>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be
839 useful for queries you often run.<br /><br />
841 To allow the usage of this functionality:
842 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables infrastructure</li>
843 <li>enter the table name in
844 <tt>$cfg['Servers'][$i]['bookmarktable']</tt></li>
845 </ul>
846 </dd>
848 <dt id="relation">
849 <span id="cfg_Servers_relation">$cfg['Servers'][$i]['relation']</span> string
850 </dt>
851 <dd>Since release 2.2.4 you can describe, in a special 'relation' table,
852 which field is a key in another table (a foreign key). phpMyAdmin
853 currently uses this to
854 <ul><li>make clickable, when you browse the master table, the data values
855 that point to the foreign table;</li>
856 <li>display in an optional tool-tip the &quot;display field&quot;
857 when browsing the master table, if you move the mouse to a column
858 containing a foreign key (use also the 'table_info' table);<br />
859 (see <a href="#faqdisplay"><abbr title="Frequently Asked Questions">
860 FAQ</abbr> 6.7</a>)</li>
861 <li>in edit/insert mode, display a drop-down list of possible foreign
862 keys (key value and &quot;display field&quot; are shown)<br />
863 (see <a href="#faq6_21"><abbr title="Frequently Asked Questions">
864 FAQ</abbr> 6.21</a>)</li>
865 <li>display links on the table properties page, to check referential
866 integrity (display missing foreign keys) for each described key;
867 </li>
868 <li>in query-by-example, create automatic joins (see <a href="#faq6_6">
869 <abbr title="Frequently Asked Questions">FAQ</abbr> 6.6</a>)</li>
870 <li>enable you to get a <abbr title="Portable Document Format">PDF</abbr>
871 schema of your database (also uses the table_coords table).</li>
872 </ul>
874 The keys can be numeric or character.<br /><br />
876 To allow the usage of this functionality:
878 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
879 infrastructure</li>
880 <li>put the relation table name in
881 <tt>$cfg['Servers'][$i]['relation']</tt></li>
882 <li>now as normal user open phpMyAdmin and for each one of your
883 tables where you want to use this feature, click
884 &quot;Structure/Relation view/&quot; and choose foreign fields.
885 </li>
886 </ul>
888 Please note that in the current version, <tt>master_db</tt>
889 must be the same as <tt>foreign_db</tt>. Those fields have been put in
890 future development of the cross-db relations.
891 </dd>
893 <dt id="table_info">
894 <span id="cfg_Servers_table_info">$cfg['Servers'][$i]['table_info']</span> string
895 </dt>
896 <dd>
897 Since release 2.3.0 you can describe, in a special 'table_info'
898 table, which field is to be displayed as a tool-tip when moving the
899 cursor over the corresponding key.<br />
900 This configuration variable will hold the name of this special
901 table. To allow the usage of this functionality:
902 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables infrastructure</li>
903 <li>put the table name in
904 <tt>$cfg['Servers'][$i]['table_info']</tt></li>
905 <li>then for each table where you want to use this feature,
906 click &quot;Structure/Relation view/Choose field to display&quot;
907 to choose the field.</li>
908 </ul>
909 Usage tip: <a href="#faqdisplay">Display field</a>.
910 </dd>
911 <dt id="table_coords">
912 <span id="cfg_Servers_table_coords">$cfg['Servers'][$i]['table_coords']</span> string<br />
913 <span id="cfg_Servers_pdf_pages">$cfg['Servers'][$i]['pdf_pages']</span> string
914 </dt>
915 <dd>Since release 2.3.0 you can have phpMyAdmin create
916 <abbr title="Portable Document Format">PDF</abbr> pages showing
917 the relations between your tables. To do this it needs two tables
918 &quot;pdf_pages&quot; (storing information about the available
919 <abbr title="Portable Document Format">PDF</abbr>
920 pages) and &quot;table_coords&quot; (storing coordinates where each
921 table will be placed on a <abbr title="Portable Document Format">PDF</abbr>
922 schema output).<br /><br />
924 You must be using the &quot;relation&quot; feature.<br /><br />
926 To allow the usage of this functionality:
928 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
929 infrastructure</li>
930 <li>put the correct table names in
931 <tt>$cfg['Servers'][$i]['table_coords']</tt> and
932 <tt>$cfg['Servers'][$i]['pdf_pages']</tt></li>
933 </ul>
935 Usage tips: <a href="#faqpdf"><abbr title="Portable Document Format">PDF</abbr> output</a>.
936 </dd>
938 <dt id="col_com">
939 <span id="cfg_Servers_column_info">$cfg['Servers'][$i]['column_info']</span> string
940 </dt>
941 <dd><!-- This part requires a content update! -->
942 Since release 2.3.0 you can store comments to describe each column for
943 each table. These will then be shown on the &quot;printview&quot;.
944 <br /><br />
946 Starting with release 2.5.0, comments are consequently used on the table
947 property pages and table browse view, showing up as tool-tips above the
948 column name (properties page) or embedded within the header of table in
949 browse view. They can also be shown in a table dump. Please see the
950 relevant configuration directives later on.<br /><br />
952 Also new in release 2.5.0 is a MIME-transformation system which is also
953 based on the following table structure. See <a href="#transformations">
954 Transformations</a> for further information. To use the
955 MIME-transformation system, your column_info table has to have the three
956 new fields 'mimetype', 'transformation', 'transformation_options'.
957 <br /><br />
959 To allow the usage of this functionality:
960 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
961 infrastructure</li>
962 <li>put the table name in
963 <tt>$cfg['Servers'][$i]['column_info']</tt></li>
964 <li>to update your PRE-2.5.0 Column_comments Table use this:
966 <pre>
967 ALTER TABLE `pma_column_comments`
968 ADD `mimetype` VARCHAR( 255 ) NOT NULL,
969 ADD `transformation` VARCHAR( 255 ) NOT NULL,
970 ADD `transformation_options` VARCHAR( 255 ) NOT NULL;
971 </pre>
973 and remember that the Variable in <i>config.inc.php</i> has been
974 renamed from<br />
975 <tt>$cfg['Servers'][$i]['column_comments']</tt> to
976 <tt>$cfg['Servers'][$i]['column_info']</tt></li>
977 </ul>
978 </dd>
980 <dt id="history">
981 <span id="cfg_Servers_history">$cfg['Servers'][$i]['history']</span> string
982 </dt>
983 <dd>Since release 2.5.0 you can store your
984 <abbr title="structured query language">SQL</abbr> history, which means
985 all queries you entered manually into the phpMyAdmin interface. If you
986 don't want to use a table-based history, you can use the JavaScript-based
987 history. Using that, all your history items are deleted when closing the
988 window.<br /><br />
990 Using
991 <a href="#cfg_QueryHistoryMax" class="configrule">$cfg['QueryHistoryMax']</a>
992 you can specify an amount of history items you want to have on hold. On
993 every login, this list gets cut to the maximum amount.<br /><br />
995 The query history is only available if JavaScript is enabled in your
996 browser.<br /><br />
998 To allow the usage of this functionality:
1000 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
1001 infrastructure</li>
1002 <li>put the table name in <tt>$cfg['Servers'][$i]['history']</tt>
1003 </li>
1004 </ul>
1005 </dd>
1007 <dt id="designer_coords">
1008 <span id="cfg_Servers_designer_coords">$cfg['Servers'][$i]['designer_coords']</span> string
1009 </dt>
1010 <dd>Since release 2.10.0 a Designer interface is available; it permits
1011 to visually manage the relations.
1012 <br /><br />
1014 To allow the usage of this functionality:
1016 <ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
1017 infrastructure</li>
1018 <li>put the table name in <tt>$cfg['Servers'][$i]['designer_coords']</tt>
1019 </li>
1020 </ul>
1021 </dd>
1023 <dt><span id="cfg_Servers_verbose_check">$cfg['Servers'][$i]['verbose_check']</span> boolean
1024 </dt>
1025 <dd>Because release 2.5.0 introduced the new MIME-transformation support, the
1026 column_info table got enhanced with three new fields. If the above variable
1027 is set to <tt>TRUE</tt> (default) phpMyAdmin will check if you have the
1028 latest table structure available. If not, it will emit a warning to the
1029 superuser.<br /><br />
1031 You can disable this checking behavior by setting the variable to false,
1032 which should offer a performance increase.<br /><br />
1034 Recommended to set to FALSE, when you are sure, your table structure is
1035 up to date.</dd>
1036 <dt><span id="cfg_Servers_AllowRoot">$cfg['Servers'][$i]['AllowRoot']</span>
1037 boolean</dt>
1038 <dd>Whether to allow root access. This is just a shortcut for the AllowDeny rules below.
1039 </dd>
1040 <dt><span id="cfg_Servers_AllowNoPasswordRoot">$cfg['Servers'][$i]['AllowNoPasswordRoot']</span>
1041 boolean</dt>
1042 <dd>Whether to allow access to root user without password. The default
1043 value of <tt>false</tt> for this parameter prevents unintended access
1044 to a MySQL server with was left with an empty password for root.
1045 </dd>
1046 <dt id="servers_allowdeny_order">
1047 <span id="cfg_Servers_AllowDeny_order">$cfg['Servers'][$i]['AllowDeny']['order']</span> string
1048 </dt>
1049 <dd>If your rule order is empty, then <abbr title="Internet Protocol">IP</abbr>
1050 authentication is disabled.<br /><br />
1052 If your rule order is set to <tt>'deny,allow'</tt> then the system applies
1053 all deny rules followed by allow rules. Access is allowed by default. Any
1054 client which does not match a Deny command or does match an Allow command
1055 will be allowed access to the server. <br /><br />
1057 If your rule order is set to <tt>'allow,deny'</tt> then the system
1058 applies all allow rules followed by deny rules. Access is denied by
1059 default. Any client which does not match an Allow directive or does
1060 match a Deny directive will be denied access to the server.<br /><br />
1062 If your rule order is set to 'explicit', the authentication is
1063 performed in a similar fashion to rule order 'deny,allow', with the
1064 added restriction that your host/username combination <b>must</b> be
1065 listed in the <i>allow</i> rules, and not listed in the <i>deny</i>
1066 rules. This is the <b>most</b> secure means of using Allow/Deny rules,
1067 and was available in Apache by specifying allow and deny rules without
1068 setting any order.<br /><br />
1070 Please also see <a
1071 href="#cfg_TrustedProxies">$cfg['TrustedProxies']</a> for detecting IP
1072 address behind proxies.
1073 </dd>
1074 <dt id="servers_allowdeny_rules">
1075 <span id="cfg_Servers_AllowDeny_rules">$cfg['Servers'][$i]['AllowDeny']['rules']</span> array of strings
1076 </dt>
1077 <dd>The general format for the rules is as such:
1079 <pre>
1080 &lt;'allow' | 'deny'&gt; &lt;username&gt; [from] &lt;ipmask&gt;
1081 </pre>
1083 If you wish to match all users, it is possible to use a <tt>'%'</tt> as
1084 a wildcard in the <i>username</i> field.<br />
1085 There are a few shortcuts you can use in the <i>ipmask</i> field as
1086 well (please note that those containing SERVER_ADDRESS might not be
1087 available on all webservers):
1088 <pre>
1089 'all' -&gt; 0.0.0.0/0
1090 'localhost' -&gt; 127.0.0.1/8
1091 'localnetA' -&gt; SERVER_ADDRESS/8
1092 'localnetB' -&gt; SERVER_ADDRESS/16
1093 'localnetC' -&gt; SERVER_ADDRESS/24
1094 </pre>
1096 Having an empty rule list is equivalent to either using
1097 <tt>'allow % from all'</tt> if your rule order is set to
1098 <tt>'deny,allow'</tt> or <tt>'deny % from all'</tt> if your rule order
1099 is set to <tt>'allow,deny'</tt> or <tt>'explicit'</tt>.<br /><br />
1101 For the <abbr title="Internet Protocol">IP</abbr> matching system, the
1102 following work:<br />
1103 <tt>xxx.xxx.xxx.xxx</tt> (an exact <abbr title="Internet Protocol">IP</abbr> address)<br />
1104 <tt>xxx.xxx.xxx.[yyy-zzz]</tt> (an <abbr title="Internet Protocol">IP</abbr> address range)<br />
1105 <tt>xxx.xxx.xxx.xxx/nn</tt> (CIDR, Classless Inter-Domain Routing type <abbr title="Internet Protocol">IP</abbr> addresses)<br />
1106 But the following does not work:<br />
1107 <tt>xxx.xxx.xxx.xx[yyy-zzz]</tt> (partial
1108 <abbr title="Internet Protocol">IP</abbr> address range)
1109 </dd>
1110 <dt><span id="cfg_Servers_SignonSession">$cfg['Servers'][$i]['SignonSession']</span> string</dt>
1111 <dd>Name of session which will be used for signon authentication method.
1112 </dd>
1113 <dt><span id="cfg_Servers_SignonURL">$cfg['Servers'][$i]['SignonURL']</span> string</dt>
1114 <dd>URL where user will be redirected to log in for signon authentication method. Should be absolute including protocol.
1115 </dd>
1116 <dt><span id="cfg_Servers_LogoutURL">$cfg['Servers'][$i]['LogoutURL']</span> string</dt>
1117 <dd>URL where user will be redirected after logout (doesn't affect config authentication method). Should be absolute including protocol.
1118 </dd>
1120 <dt id="cfg_ServerDefault">$cfg['ServerDefault'] integer</dt>
1121 <dd>If you have more than one server configured, you can set
1122 <tt>$cfg['ServerDefault']</tt> to any one of them to autoconnect to
1123 that server when phpMyAdmin is started, or set it to 0 to be given a
1124 list of servers without logging in.<br />
1125 If you have only one server configured, <tt>$cfg['ServerDefault']</tt>
1126 MUST be set to that server.</dd>
1128 <dt id="cfg_MaxDbList">$cfg['MaxDbList'] integer</dt>
1129 <dd>The maximum number of database names to be displayed in the
1130 navigation frame and the database list.</dd>
1132 <dt id="cfg_MaxTableList">$cfg['MaxTableList'] integer</dt>
1133 <dd>The maximum number of table names to be displayed in the
1134 main panel's list (except on the Export page). This limit is also enforced in the navigation panel
1135 when in Light mode.</dd>
1137 <dt id="cfg_MaxCharactersInDisplayedSQL">$cfg['MaxCharactersInDisplayedSQL'] integer</dt>
1138 <dd>The maximum number of characters when a SQL query is displayed. The
1139 default limit of 1000 should be correct to avoid the display of tons
1140 of hexadecimal codes that represent BLOBs, but some users have real
1141 SQL queries that are longer than 1000 characters. Also, if a query's
1142 length exceeds this limit, this query is not saved in the history.</dd>
1144 <dt id="cfg_OBGzip">$cfg['OBGzip'] string/boolean</dt>
1145 <dd>Defines whether to use GZip output buffering for increased
1146 speed in <abbr title="HyperText Transfer Protocol">HTTP</abbr> transfers.<br />
1147 Set to true/false for enabling/disabling. When set to 'auto' (string),
1148 phpMyAdmin tries to enable output buffering and will automatically disable
1149 it if your browser has some problems with buffering. IE6 with a certain patch
1150 is known to cause data corruption when having enabled buffering.</dd>
1152 <dt id="cfg_PersistentConnections">$cfg['PersistentConnections'] boolean</dt>
1153 <dd>Whether persistent connections should be used or not (mysql_connect or
1154 mysql_pconnect).</dd>
1156 <dt id="cfg_ForceSSL">$cfg['ForceSSL'] boolean</dt>
1157 <dd>Whether to force using https while accessing phpMyAdmin.</dd>
1159 <dt id="cfg_ExecTimeLimit">$cfg['ExecTimeLimit'] integer [number of seconds]</dt>
1160 <dd>Set the number of seconds a script is allowed to run. If seconds is set
1161 to zero, no time limit is imposed.<br />
1162 This setting is used while importing/exporting dump files but has no
1163 effect when PHP is running in safe mode.</dd>
1165 <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] integer [number of bytes]</dt>
1166 <dd>Set the number of bytes a script is allowed to allocate. If number set
1167 to zero, no limit is imposed.<br />
1168 This setting is used while importing/exporting dump files but has no
1169 effect when PHP is running in safe mode.<br />
1170 You can also use any string as in php.ini, eg. '16M'.</dd>
1172 <dt id="cfg_SkipLockedTables">$cfg['SkipLockedTables'] boolean</dt>
1173 <dd>Mark used tables and make it possible to show databases with locked
1174 tables (since MySQL 3.23.30).</dd>
1176 <dt id="cfg_ShowSQL">$cfg['ShowSQL'] boolean</dt>
1177 <dd>Defines whether <abbr title="structured query language">SQL</abbr> queries
1178 generated by phpMyAdmin should be displayed or not.</dd>
1180 <dt id="cfg_AllowUserDropDatabase">$cfg['AllowUserDropDatabase'] boolean</dt>
1181 <dd>Defines whether normal users (non-administrator) are allowed to
1182 delete their own database or not. If set as FALSE, the link &quot;Drop
1183 Database&quot; will not be shown, and even a &quot;DROP DATABASE
1184 mydatabase&quot; will be rejected. Quite practical for
1185 <abbr title="Internet service provider">ISP</abbr>'s with many
1186 customers.<br />
1187 Please note that this limitation of SQL queries is not as strict as
1188 when using MySQL privileges. This is due to nature of SQL queries
1189 which might be quite complicated. So this choice should be viewed as
1190 help to avoid accidental dropping rather than strict privilege
1191 limitation.</dd>
1193 <dt id="cfg_Confirm">$cfg['Confirm'] boolean</dt>
1194 <dd>Whether a warning (&quot;Are your really sure...&quot;) should be
1195 displayed when you're about to lose data.</dd>
1197 <dt id="cfg_LoginCookieRecall">$cfg['LoginCookieRecall'] boolean</dt>
1198 <dd>Define whether the previous login should be recalled or not in cookie
1199 authentication mode.<br /><br />
1201 This is automatically diabled if you do not have configured
1202 <tt><a href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>.
1203 </dd>
1205 <dt id="cfg_LoginCookieValidity">$cfg['LoginCookieValidity'] integer [number of seconds]</dt>
1206 <dd>Define how long is login cookie valid.</dd>
1208 <dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt>
1209 <dd>Define how long is login cookie should be stored in browser. Default 0
1210 means that it will be kept for existing session. This is recommended
1211 for not trusted environments.</dd>
1213 <dt id="cfg_LoginCookieDeleteAll">$cfg['LoginCookieDeleteAll'] boolean</dt>
1214 <dd>If enabled (default), logout deletes cookies for all servers,
1215 otherwise only for current one. Setting this to false makes it easy to
1216 forget to log out from other server, when you are using more of
1217 them.</dd>
1219 <dt id="cfg_UseDbSearch">$cfg['UseDbSearch'] boolean</dt>
1220 <dd>Define whether the "search string inside database" is enabled or not.</dd>
1222 <dt id="cfg_IgnoreMultiSubmitErrors">$cfg['IgnoreMultiSubmitErrors'] boolean</dt>
1223 <dd>Define whether phpMyAdmin will continue executing a multi-query
1224 statement if one of the queries fails. Default is to abort execution.</dd>
1226 <dt id="cfg_VerboseMultiSubmit">$cfg['VerboseMultiSubmit'] boolean</dt>
1227 <dd>Define whether phpMyAdmin will output the results of each query of a
1228 multi-query statement embedded into the
1229 <abbr title="structured query language">SQL</abbr> output as inline
1230 comments. Defaults to <tt>TRUE</tt>.</dd>
1231 <dt id="AllowArbitraryServer">
1232 <span id="cfg_AllowArbitraryServer">$cfg['AllowArbitraryServer']</span> boolean</dt>
1233 <dd>If enabled allows you to log in to arbitrary servers using cookie auth.
1234 <br /><br />
1236 <b>NOTE:</b> Please use this carefully, as this may allow users access to
1237 MySQL servers behind the firewall where your
1238 <abbr title="HyperText Transfer Protocol">HTTP</abbr> server is placed.
1239 </dd>
1241 <dt id="cfg_LeftFrameLight">$cfg['LeftFrameLight'] boolean</dt>
1242 <dd>Defines whether to use a select-based menu and display only the current
1243 tables in the left frame (smaller page). Only in Non-Lightmode you can
1244 use the feature to display nested folders using
1245 <a href="#cfg_LeftFrameTableSeparator" class="configrule">$cfg['LeftFrameTableSeparator']</a>
1246 </dd>
1248 <dt id="cfg_LeftFrameDBTree">$cfg['LeftFrameDBTree'] boolean</dt>
1249 <dd>In light mode, defines whether to display the names of databases (in the
1250 selector) using a tree, see also
1251 <a href="#cfg_LeftFrameDBSeparator" class="configrule">$cfg['LeftFrameDBSeparator']</a>.
1252 </dd>
1254 <dt id="cfg_LeftFrameDBSeparator">$cfg['LeftFrameDBSeparator'] string</dt>
1255 <dd>The string used to separate the parts of the database name when showing
1256 them in a tree.</dd>
1258 <dt id="cfg_LeftFrameTableSeparator">$cfg['LeftFrameTableSeparator'] string</dt>
1259 <dd>Defines a string to be used to nest table spaces. Defaults to '__'.
1260 This means if you have tables like 'first__second__third' this will be
1261 shown as a three-level hierarchy like: first &gt; second &gt; third.
1262 If set to FALSE or empty, the feature is disabled. NOTE: You should
1263 not use this separator at the beginning or end of a
1264 table name or multiple times after another without any other
1265 characters in between.</dd>
1267 <dt id="cfg_LeftFrameTableLevel">$cfg['LeftFrameTableLevel'] string</dt>
1268 <dd>Defines how many sublevels should be displayed when splitting
1269 up tables by the above separator.</dd>
1271 <dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt>
1272 <dd>Defines whether to display table comment as tool-tip in left frame or
1273 not.</dd>
1275 <dt id="cfg_ShowTooltipAliasDB">$cfg['ShowTooltipAliasDB'] boolean</dt>
1276 <dd>If tool-tips are enabled and a DB comment is set, this will flip the
1277 comment and the real name. That means that if you have a table called
1278 'user0001' and add the comment 'MyName' on it, you will see the name
1279 'MyName' used consequently in the left frame and the tool-tip shows
1280 the real name of the DB.</dd>
1282 <dt id="cfg_ShowTooltipAliasTB">$cfg['ShowTooltipAliasTB'] boolean/string</dt>
1283 <dd>Same as <a href="#cfg_ShowTooltipAliasDB" class="configrule">$cfg['ShowTooltipAliasDB']</a>, except this works for table names.
1285 When setting this to 'nested', the Alias of the Tablename is only used
1286 to split/nest the tables according to the
1287 <a href="#cfg_LeftFrameTableSeparator" class="configrule">$cfg['LeftFrameTableSeparator']</a>
1288 directive. So only the folder is called like the Alias, the tablename itself
1289 stays the real tablename.</dd>
1291 <dt id="cfg_LeftDisplayLogo">$cfg['LeftDisplayLogo'] boolean</dt>
1292 <dd>Defines whether or not to display the phpMyAdmin logo at the top of the left frame.
1293 Defaults to <tt>TRUE</tt>.</dd>
1294 <dt id="cfg_LeftLogoLink">$cfg['LeftLogoLink'] string</dt>
1295 <dd>Enter URL where logo in the navigation frame will point to.
1296 For use especially with self made theme which changes this.
1297 The default value for this is <tt>main.php</tt>.</dd>
1299 <dt id="cfg_LeftLogoLinkWindow">$cfg['LeftLogoLinkWindow'] string</dt>
1300 <dd>Whether to open the linked page in the main window (<tt>main</tt>)
1301 or in a new one (<tt>new</tt>). Note: use <tt>new</tt> if you are
1302 linking to <tt>phpmyadmin.net</tt>.</dd>
1304 <dt id="cfg_LeftDisplayServers">$cfg['LeftDisplayServers'] boolean</dt>
1305 <dd>Defines whether or not to display a server choice at the top of the left frame.
1306 Defaults to FALSE.</dd>
1307 <dt id="cfg_DisplayServersList">$cfg['DisplayServersList'] boolean</dt>
1308 <dd>Defines whether to display this server choice as links instead of in a drop-down.
1309 Defaults to FALSE (drop-down).</dd>
1310 <dt id="cfg_DisplayDatabasesList">$cfg['DisplayDatabasesList'] boolean or text</dt>
1311 <dd>Defines whether to display database choice in light navigation frame as links
1312 instead of in a drop-down. Defaults to 'auto' - on main page list is
1313 shown, when database is selected, only drop down is displayed.</dd>
1315 <dt id="cfg_LeftDefaultTabTable">$cfg['LeftDefaultTabTable'] string</dt>
1316 <dd>Defines the tab displayed by default when clicking the small
1317 icon next to each table name in the navigation panel. Possible
1318 values: &quot;tbl_structure.php&quot;,
1319 &quot;tbl_sql.php&quot;, &quot;tbl_select.php&quot;,
1320 &quot;tbl_change.php&quot; or &quot;sql.php&quot;.</dd>
1322 <dt id="cfg_ShowStats">$cfg['ShowStats'] boolean</dt>
1323 <dd>Defines whether or not to display space usage and statistics about databases
1324 and tables.<br />
1325 Note that statistics requires at least MySQL 3.23.3 and that, at this
1326 date, MySQL doesn't return such information for Berkeley DB tables.</dd>
1328 <dt><span id="cfg_ShowServerInfo">$cfg['ShowServerInfo'] </span>boolean</dt>
1329 <dd>Defines whether to display detailed server information on main page.
1330 You can additionally hide more information by using
1331 <tt><a href="#cfg_Servers_verbose">$cfg['Servers'][$i]['verbose']</a></tt>.
1332 </dd>
1334 <dt><span id="cfg_ShowPhpInfo">$cfg['ShowPhpInfo'] </span>boolean<br />
1335 <span id="cfg_ShowChgPassword">$cfg['ShowChgPassword'] </span>boolean<br />
1336 <span id="cfg_ShowCreateDb">$cfg['ShowCreateDb'] </span>boolean
1337 </dt>
1338 <dd>Defines whether to display the &quot;PHP information&quot; and
1339 &quot;Change password &quot; links and form for creating database or
1340 not at the starting main (right) frame. This setting
1341 does not check MySQL commands entered directly.<br /><br />
1343 Please note that to block the usage of phpinfo() in scripts, you
1344 have to put this in your <i>php.ini</i>:
1346 <pre>disable_functions = phpinfo()</pre>
1348 Also note that enabling the &quot;Change password &quot; link has no
1349 effect with &quot;config&quot; authentication mode: because of the
1350 hard coded password value in the configuration file, end users can't
1351 be allowed to change their passwords.</dd>
1353 <dt id="cfg_SuggestDBName">$cfg['SuggestDBName'] boolean</dt>
1354 <dd>Defines whether to suggest a database name on the
1355 &quot;Create Database&quot; form or to keep the textfield empty.</dd>
1357 <dt id="cfg_NavigationBarIconic">$cfg['NavigationBarIconic'] string</dt>
1358 <dd>Defines whether navigation bar buttons and the right panel top menu
1359 contain text or symbols only. A value of TRUE displays icons, FALSE
1360 displays text and 'both' displays both icons and text.</dd>
1362 <dt id="cfg_ShowAll">$cfg['ShowAll'] boolean</dt>
1363 <dd>Defines whether a user should be displayed a
1364 &quot;show all (records)&quot; button in browse mode or not.</dd>
1366 <dt id="cfg_MaxRows">$cfg['MaxRows'] integer</dt>
1367 <dd>Number of rows displayed when browsing a result set. If the result set
1368 contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.</dd>
1370 <dt id="cfg_Order">$cfg['Order'] string [<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>]</dt>
1371 <dd>Defines whether fields are displayed in ascending (<tt>ASC</tt>) order,
1372 in descending (<tt>DESC</tt>) order or in a &quot;smart&quot;
1373 (<tt>SMART</tt>) order - I.E. descending order for fields of type TIME,
1374 DATE, DATETIME and TIMESTAMP, ascending order else- by default.</dd>
1376 <dt id="cfg_ProtectBinary">$cfg['ProtectBinary'] boolean or string</dt>
1377 <dd>Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> fields are protected
1378 from editing when browsing a table's content. Valid values are:
1379 <ul><li><tt>FALSE</tt> to allow editing of all fields;</li>
1380 <li><tt>'blob'</tt> to allow editing of all fields except <tt>BLOBS</tt>;</li>
1381 <li><tt>'all'</tt> to disallow editing of all <tt>BINARY</tt> or
1382 <tt>BLOB</tt> fields.</li>
1383 </ul>
1384 </dd>
1386 <dt id="cfg_ShowFunctionFields">$cfg['ShowFunctionFields'] boolean</dt>
1387 <dd>Defines whether or not MySQL functions fields should be initially
1388 displayed in edit/insert mode. Since version 2.10, the user can
1389 toggle this setting from the interface.
1390 </dd>
1392 <dt id="cfg_CharEditing">$cfg['CharEditing'] string</dt>
1393 <dd>Defines which type of editing controls should be used for CHAR and
1394 VARCHAR fields. Possible values are:
1395 <ul><li>input - this allows to limit size of text to size of field in
1396 MySQL, but has problems with newlines in fields</li>
1397 <li>textarea - no problems with newlines in fields, but also no
1398 length limitations</li>
1399 </ul>
1400 Default is old behavior so input.</dd>
1402 <dt id="cfg_InsertRows">$cfg['InsertRows'] integer</dt>
1403 <dd>Defines the maximum number of concurrent entries for the Insert page.</dd>
1405 <dt id="cfg_ForeignKeyMaxLimit">$cfg['ForeignKeyMaxLimit'] integer</dt>
1406 <dd>If there are fewer items than this in the set of foreign keys, then a
1407 drop-down box of foreign keys is presented, in the style described by the
1408 <a href="#cfg_ForeignKeyDropdownOrder" class="configrule">$cfg['ForeignKeyDropdownOrder']</a>
1409 setting.</dd>
1411 <dt id="cfg_ForeignKeyDropdownOrder">$cfg['ForeignKeyDropdownOrder'] array</dt>
1412 <dd>For the foreign key drop-down fields, there are several methods of
1413 display, offering both the key and value data. The contents of the
1414 array should be one or both of the following strings:
1415 <i>'content-id'</i>, <i>'id-content'</i>.</dd>
1417 <dt><span id="cfg_ZipDump">$cfg['ZipDump'] </span>boolean<br />
1418 <span id="cfg_GZipDump">$cfg['GZipDump'] </span>boolean<br />
1419 <span id="cfg_BZipDump">$cfg['BZipDump'] </span>boolean
1420 </dt>
1421 <dd>Defines whether to allow the use of zip/GZip/BZip2 compression when
1422 creating a dump file</dd>
1424 <dt><span id="cfg_CompressOnFly">$cfg['CompressOnFly'] </span>boolean<br />
1425 </dt>
1426 <dd>Defines whether to allow on the fly compression for GZip/BZip2
1427 compressed exports. This doesn't affect smaller dumps and allows users to
1428 create larger dumps that won't otherwise fit in memory due to php
1429 memory limit. Produced files contain more GZip/BZip2 headers, but all
1430 normal programs handle this correctly.</dd>
1432 <dt id="cfg_LightTabs">$cfg['LightTabs'] boolean</dt>
1433 <dd>If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the
1434 mainframe.</dd>
1436 <dt id="cfg_PropertiesIconic">$cfg['PropertiesIconic'] string</dt>
1437 <dd>If set to <tt>TRUE</tt>, will display icons instead of text for db and table
1438 properties links (like 'Browse', 'Select', 'Insert', ...).<br /> Can be
1439 set to <tt>'both'</tt> if you want icons AND text.<br />
1440 When set to <tt>FALSE</tt>, will only show text.</dd>
1442 <dt id="cfg_PropertiesNumColumns">$cfg['PropertiesNumColumns'] integer</dt>
1443 <dd>How many columns will be utilized to display the tables on the
1444 database property view? Default is 1 column. When setting this to a
1445 value larger than 1, the type of the database will be omitted for more
1446 display space.</dd>
1449 <dt id="cfg_DefaultTabServer">$cfg['DefaultTabServer'] string</dt>
1450 <dd>Defines the tab displayed by default on server view. Possible
1451 values: &quot;main.php&quot; (recommended for multi-user setups),
1452 &quot;server_databases.php&quot;, &quot;server_status.php&quot;,
1453 &quot;server_variables.php&quot;, &quot;server_privileges.php&quot;
1454 or &quot;server_processlist.php&quot;.</dd>
1456 <dt id="cfg_DefaultTabDatabase">$cfg['DefaultTabDatabase'] string</dt>
1457 <dd>Defines the tab displayed by default on database view. Possible
1458 values: &quot;db_structure.php&quot;,
1459 &quot;db_sql.php&quot; or &quot;db_search.php&quot;.</dd>
1461 <dt id="cfg_DefaultTabTable">$cfg['DefaultTabTable'] string</dt>
1462 <dd>Defines the tab displayed by default on table view. Possible
1463 values: &quot;tbl_structure.php&quot;,
1464 &quot;tbl_sql.php&quot;, &quot;tbl_select.php&quot;,
1465 &quot;tbl_change.php&quot; or &quot;sql.php&quot;.</dd>
1467 <dt id="cfg_MySQLManualBase">$cfg['MySQLManualBase'] string</dt>
1468 <dd>If set to an <abbr title="Uniform Resource Locator">URL</abbr> which
1469 points to the MySQL documentation (type depends
1470 on <a href="#cfg_MySQLManualType" class="configrule">$cfg['MySQLManualType']</a>), appropriate help links are
1471 generated.<br />
1472 See <a href="http://dev.mysql.com/doc/">MySQL Documentation page</a>
1473 for more information about MySQL manuals and their types.</dd>
1475 <dt id="cfg_MySQLManualType">$cfg['MySQLManualType'] string</dt>
1476 <dd>Type of MySQL documentation:
1477 <ul><li>viewable - &quot;viewable online&quot;, current one used on MySQL website</li>
1478 <li>searchable - &quot;Searchable, with user comments&quot;</li>
1479 <li>chapters - &quot;HTML, one page per chapter&quot;</li>
1480 <li>big - &quot;HTML, all on one page&quot;</li>
1481 <li>none - do not show documentation links</li>
1482 </ul>
1483 </dd>
1485 <dt id="cfg_DefaultLang">$cfg['DefaultLang'] string</dt>
1486 <dd>Defines the default language to use, if not browser-defined or
1487 user-defined.<br />
1488 See the <i>select_lang.lib.php</i> script to know the valid values for
1489 this setting.</dd>
1491 <dt id="cfg_DefaultConnectionCollation">$cfg['DefaultConnectionCollation'] string</dt>
1492 <dd>Defines the default connection collation to use, if not
1493 user-defined.<br />
1494 See the <a href="http://dev.mysql.com/doc/mysql/en/charset-charsets.html">MySQL
1495 documentation</a> for list of possible values.</dd>
1497 <dt id="cfg_Lang">$cfg['Lang'] string</dt>
1498 <dd>Force: always use this language (must be defined in the
1499 <i>select_lang.lib.php</i> script).</dd>
1501 <dt id="cfg_FilterLanguages">$cfg['FilterLanguages'] string</dt>
1502 <dd>Limit list of available languages to those matching the given regular
1503 expression. For example if you want only Czech and English, you should
1504 set filter to <code>'^(cs|en)'</code>.</dd>
1506 <dt id="cfg_DefaultCharset">$cfg['DefaultCharset'] string</dt>
1507 <dd>Default character set to use for recoding of MySQL queries. This must be
1508 enabled and it's described by
1509 <a href="#cfg_AllowAnywhereRecoding" class="configrule">$cfg['AllowAnywhereRecoding']</a>
1510 option.<br />
1511 You can give here any character set which is in
1512 <a href="#cfg_AvailableCharsets" class="configrule">$cfg['AvailableCharsets']</a>
1513 array and this is just default choice, user can select any of them.</dd>
1515 <dt id="cfg_AllowAnywhereRecoding">$cfg['AllowAnywhereRecoding'] boolean</dt>
1516 <dd>Allow character set recoding of MySQL queries. You need recode or iconv
1517 support (compiled in or module) in PHP to allow MySQL queries recoding
1518 and used language file must have it enabled (by default only these
1519 which are in Unicode, just to avoid losing some characters).<br /><br />
1521 Setting this to <tt>TRUE</tt> also activates a pull-down menu
1522 in the Export page, to choose the character set when exporting a file.
1523 The default value in this menu comes from <tt>$cfg['Export']['charset']</tt>.
1524 </dd>
1526 <dt id="cfg_RecodingEngine">$cfg['RecodingEngine'] string</dt>
1527 <dd>You can select here which functions will be used for character set
1528 conversion. Possible values are:
1529 <ul><li>auto - automatically use available one (first is tested
1530 iconv, then recode)</li>
1531 <li>iconv - use iconv or libiconv functions</li>
1532 <li>recode - use recode_string function</li>
1533 </ul>
1534 Default is auto.</dd>
1536 <dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] string</dt>
1537 <dd>Specify some parameters for iconv used in charset conversion. See
1538 <a href="http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html">iconv
1539 documentation</a> for details. By default <code>//TRANSLIT</code> is
1540 used, so that invalid characters will be transliterated.</dd>
1542 <dt id="cfg_AvailableCharsets">$cfg['AvailableCharsets'] array</dt>
1543 <dd>Available character sets for MySQL conversion. You can add your own (any of
1544 supported by recode/iconv) or remove these which you don't use.
1545 Character sets will be shown in same order as here listed, so if you
1546 frequently use some of these move them to the top.</dd>
1548 <dt id="cfg_TrustedProxies">$cfg['TrustedProxies'] array</dt>
1549 <dd>Lists proxies and HTTP headers which are trusted for <a
1550 href="#servers_allowdeny_order">IP Allow/Deny</a>. This list is by
1551 default empty, you need to fill in some trusted proxy servers if you
1552 want to use rules for IP addresses behind proxy.<br /><br />
1554 The following example specifies that phpMyAdmin should trust a
1555 HTTP_X_FORWARDED_FOR (<tt>X-Forwarded-For</tt>) header coming from the proxy 1.2.3.4:
1556 <pre>
1557 $cfg['TrustedProxies'] =
1558 array('1.2.3.4' =&gt; 'HTTP_X_FORWARDED_FOR');
1559 </pre>
1560 The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the
1561 client's IP address as usual.
1562 </dd>
1564 <dt id="cfg_GD2Available">$cfg['GD2Available'] string</dt>
1565 <dd>Specifies whether GD &gt;= 2 is available. If yes it can be used for
1566 MIME transformations.<br />
1567 Possible values are:
1568 <ul><li>auto - automatically detect, this is a bit expensive
1569 operation for php &lt; 4.3.0 so it is preferred to change this
1570 according to your server real possibilities</li>
1571 <li>yes - GD 2 functions can be used</li>
1572 <li>no - GD 2 function cannot be used</li>
1573 </ul>
1574 Default is auto.
1575 </dd>
1577 <dt id="cfg_CheckConfigurationPermissions">$cfg['CheckConfigurationPermissions'] boolean</dt>
1578 <dd>
1579 We normally check the permissions on the configuration file to ensure
1580 it's not world writable. However, phpMyAdmin could be installed on
1581 a NTFS filesystem mounted on a non-Windows server, in which case the
1582 permissions seems wrong but in fact cannot be detected. In this case
1583 a sysadmin would set this parameter to <tt>FALSE</tt>. Default is <tt>TRUE</tt>.
1584 </dd>
1586 <dt id="cfg_NaviWidth">$cfg['NaviWidth'] integer</dt>
1587 <dd>Navi frame width in pixels. See <tt>themes/themename/layout.inc.php</tt>.
1588 </dd>
1590 <dt><span id="cfg_NaviBackground">$cfg['NaviBackground']</span> string [valid css code for background]<br />
1591 <span id="cfg_MainBackground">$cfg['MainBackground']</span> string [valid css code for background]
1592 </dt>
1593 <dd>The background styles used for both the frames.
1594 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1596 <dt id="cfg_NaviPointerBackground">$cfg['NaviPointerBackground'] string [valid css code for background]<br />
1597 <span id="cfg_NaviPointerColor">$cfg['NaviPointerColor']</span> string [valid css color]</dt>
1598 <dd>The style used for the pointer in the navi frame.
1599 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1601 <dt id="cfg_NaviDatabaseNameColor">$cfg['NaviDatabaseNameColor'] string [valid css code]<br />
1602 </dt>
1603 <dd>The color used for the database name in the navi frame.
1604 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1606 <dt id="cfg_LeftPointerEnable">$cfg['LeftPointerEnable'] boolean</dt>
1607 <dd>A value of <tt>TRUE</tt> activates the navi pointer (when LeftFrameLight
1608 is <tt>FALSE</tt>).</dd>
1610 <dt id="cfg_Border">$cfg['Border'] integer</dt>
1611 <dd>The size of a table's border. See <tt>themes/themename/layout.inc.php</tt>.
1612 </dd>
1614 <dt id="cfg_ThBackground">$cfg['ThBackground'] string [valid css code for background]<br />
1615 <span id="cfg_ThColor">$cfg['ThColor']</span> string [valid css color]</dt>
1616 <dd>The style used for table headers. See
1617 <tt>themes/themename/layout.inc.php</tt>.</dd>
1619 <dt id="cfg_BgcolorOne">$cfg['BgOne'] string [HTML color]</dt>
1620 <dd>The color (HTML) #1 for table rows. See <tt>themes/themename/layout.inc.php</tt>.
1621 </dd>
1623 <dt id="cfg_BgcolorTwo">$cfg['BgTwo'] string [HTML color]</dt>
1624 <dd>The color (HTML) #2 for table rows. See <tt>themes/themename/layout.inc.php</tt>.
1625 </dd>
1627 <dt><span id="cfg_BrowsePointerBackground">$cfg['BrowsePointerBackground'] </span>string [HTML color]<br />
1628 <span id="cfg_BrowsePointerColor">$cfg['BrowsePointerColor'] </span>string [HTML color]<br />
1629 <span id="cfg_BrowseMarkerBackground">$cfg['BrowseMarkerBackground'] </span>string [HTML color]<br />
1630 <span id="cfg_BrowseMarkerColor">$cfg['BrowseMarkerColor'] </span>string [HTML color]
1631 </dt>
1632 <dd>The colors (HTML) uses for the pointer and the marker in browse mode.<br />
1633 The former feature highlights the row over which your mouse is passing
1634 and the latter lets you visually mark/unmark rows by clicking on
1635 them.<br />
1636 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1639 <dt id="cfg_FontFamily">$cfg['FontFamily'] string</dt>
1640 <dd>You put here a valid CSS font family value, for example
1641 <tt>arial, sans-serif</tt>.<br />
1642 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1644 <dt id="cfg_FontFamilyFixed">$cfg['FontFamilyFixed'] string</dt>
1645 <dd>You put here a valid CSS font family value, for example
1646 <tt>monospace</tt>. This one is used in textarea.<br />
1647 See <tt>themes/themename/layout.inc.php</tt>.</dd>
1649 <dt id="cfg_BrowsePointerEnable">$cfg['BrowsePointerEnable'] boolean</dt>
1650 <dd>Whether to activate the browse pointer or not.</dd>
1652 <dt id="cfg_BrowseMarkerEnable">$cfg['BrowseMarkerEnable'] boolean</dt>
1653 <dd>Whether to activate the browse marker or not.</dd>
1655 <dt><span id="cfg_TextareaCols">$cfg['TextareaCols'] </span>integer<br />
1656 <span id="cfg_TextareaRows">$cfg['TextareaRows'] </span>integer<br />
1657 <span id="cfg_CharTextareaCols">$cfg['CharTextareaCols'] </span>integer<br />
1658 <span id="cfg_CharTextareaRows">$cfg['CharTextareaRows'] </span>integer
1659 </dt>
1660 <dd>Number of columns and rows for the textareas.<br />
1661 This value will be emphasized (*2) for <abbr title="structured query language">SQL</abbr> query textareas and (*1.25) for
1662 <abbr title="structured query language">SQL</abbr> textareas inside the query window.<br />
1663 The Char* values are used for CHAR and VARCHAR editing (if configured
1664 via <a href="#cfg_CharEditing">$cfg['CharEditing']</a>).</dd>
1666 <dt><span id="cfg_LongtextDoubleTextarea">$cfg['LongtextDoubleTextarea'] </span>boolean
1667 </dt>
1668 <dd>Defines whether textarea for LONGTEXT fields should have double size.</dd>
1670 <dt><span id="cfg_TextareaAutoSelect">$cfg['TextareaAutoSelect'] </span>boolean
1671 </dt>
1672 <dd>Defines if the whole textarea of the query box will be selected on
1673 click.</dd>
1674 <dt id="CtrlArrowsMoving">
1675 <span id="cfg_CtrlArrowsMoving">$cfg['CtrlArrowsMoving'] </span>boolean
1676 </dt>
1677 <dd>Enable Ctrl+Arrows (Option+Arrows in Safari) moving between fields when
1678 editing.</dd>
1680 <dt id="cfg_LimitChars">$cfg['LimitChars'] integer</dt>
1681 <dd>Maximum number of characters showen in any non-numeric field on browse view.
1682 Can be turned off by a toggle button on the browse page.</dd>
1684 <dt><span id="cfg_ModifyDeleteAtLeft">$cfg['ModifyDeleteAtLeft'] </span>boolean
1685 <span id="cfg_ModifyDeleteAtRight">$cfg['ModifyDeleteAtRight'] </span>boolean
1686 </dt>
1687 <dd>Defines the place where modify and delete links would be put when
1688 tables contents are displayed (you may have them displayed both at the
1689 left and at the right).
1690 &quot;Left&quot; and &quot;right&quot; are parsed as &quot;top&quot;
1691 and &quot;bottom&quot; with vertical display mode.</dd>
1693 <dt id="cfg_DefaultDisplay">$cfg['DefaultDisplay'] string
1694 <span id="cfg_HeaderFlipType">$cfg['HeaderFlipType'] </span>string
1695 </dt>
1696 <dd>There are 3 display modes: horizontal, horizontalflipped and vertical.
1697 Define which one is displayed by default. The first mode displays each
1698 row on a horizontal line, the second rotates the headers by 90
1699 degrees, so you can use descriptive headers even though fields only
1700 contain small values and still print them out. The vertical mode sorts
1701 each row on a vertical lineup.<br /><br />
1703 The HeaderFlipType can be set to 'css' or 'fake'. When using 'css'
1704 the rotation of the header for horizontalflipped is done via CSS. If
1705 set to 'fake' PHP does the transformation for you, but of course this
1706 does not look as good as CSS.</dd>
1708 <dt id="DefaultPropDisplay">
1709 <span id="cfg_DefaultPropDisplay">$cfg['DefaultPropDisplay']</span>
1710 string or integer</dt>
1711 <dd>When editing/creating new columns in a table all fields normally get
1712 lined up one field a line. (default: 'horizontal'). If you set this to
1713 'vertical' you can have each field lined up vertically beneath each
1714 other. You can save up a lot of place on the horizontal direction and
1715 no longer have to scroll. If you set this to integer, editing of fewer
1716 columns will appear in 'vertical' mode, while editing of more fields
1717 still in 'horizontal' mode. This way you can still effectively edit
1718 large number of fields, while having full view on few of them.</dd>
1720 <dt id="cfg_ShowBrowseComments">$cfg['ShowBrowseComments'] boolean<br />
1721 <span id="cfg_ShowPropertyComments">$cfg['ShowPropertyComments'] </span>boolean
1722 </dt>
1723 <dd>By setting the corresponding variable to <tt>TRUE</tt> you can enable the
1724 display of column comments in Browse or Property display. In browse
1725 mode, the comments are shown inside the header. In property mode,
1726 comments are displayed using a CSS-formatted dashed-line below the
1727 name of the field. The comment is shown as a tool-tip for that field.
1728 </dd>
1730 <dt id ="cfb_SQLQuery_Edit">$cfg['SQLQuery']['Edit'] boolean</dt>
1731 <dd>Whether to display an edit link to change a query in any SQL Query box.</dd>
1733 <dt id ="cfb_SQLQuery_Explain">$cfg['SQLQuery']['Explain'] boolean</dt>
1734 <dd>Whether to display a link to explain a SELECT query in any SQL Query box.</dd>
1736 <dt id ="cfb_SQLQuery_ShowAsPHP">$cfg['SQLQuery']['ShowAsPHP'] boolean</dt>
1737 <dd>Whether to display a link to wrap a query in PHP code in any SQL Query box.</dd>
1739 <dt id ="cfb_SQLQuery_Validate">$cfg['SQLQuery']['Validate'] boolean</dt>
1740 <dd>Whether to display a link to validate a query in any SQL Query box.
1741 See also <tt><a href="#cfg_SQLValidator">$cfg_SQLValidator</a></tt>.</dd>
1743 <dt id ="cfb_SQLQuery_Refresh">$cfg['SQLQuery']['Refresh'] boolean</dt>
1744 <dd>Whether to display a link to refresh a query in any SQL Query box.</dd>
1746 <dt id="cfg_UploadDir">$cfg['UploadDir'] string</dt>
1747 <dd>
1748 The name of the directory where
1749 <abbr title="structured query language">SQL</abbr> files have been
1750 uploaded by other means than phpMyAdmin (for example, ftp). Those files
1751 are available under a drop-down box when you click the database or
1752 table name, then the Import tab.
1753 <br /><br />
1755 If you want different directory for each user, %u will be replaced
1756 with username.<br /><br />
1758 Please note that the file names must have the suffix &quot;.sql&quot;
1759 (or &quot;.sql.bz2&quot; or &quot;.sql.gz&quot; if support for
1760 compressed formats is enabled).<br /><br />
1762 This feature is useful when your file is too big to be uploaded via
1763 <abbr title="HyperText Transfer Protocol">HTTP</abbr>, or when file
1764 uploads are disabled in PHP.<br /><br />
1766 Please note that if PHP is running in safe mode, this directory must
1767 be owned by the same user as the owner of the phpMyAdmin scripts.
1768 <br /><br />
1770 See also <a href="#faq1_16">
1771 <abbr title="Frequently Asked Questions">FAQ</abbr> 1.16</a> for
1772 alternatives.
1773 </dd>
1775 <dt id="cfg_SaveDir">$cfg['SaveDir'] string</dt>
1776 <dd>
1777 The name of the directory where dumps can be saved.<br /><br />
1779 If you want different directory for each user, %u will be replaced
1780 with username.<br /><br />
1782 Please note that the directory must exist and has to be writable for
1783 the user running webserver.<br /><br />
1785 Please note that if PHP is running in safe mode, this directory must
1786 be owned by the same user as the owner of the phpMyAdmin scripts.
1787 </dd>
1789 <dt id="cfg_TempDir">$cfg['TempDir'] string</dt>
1790 <dd>
1791 The name of the directory where temporary files can be stored.
1792 <br /><br />
1794 This is needed for native MS Excel export, see
1795 <a href="#faq6_23"><abbr title="Frequently Asked Questions">FAQ</abbr>
1796 6.23</a> and to work around limitations of
1797 <tt>open_basedir</tt> for uploaded
1798 files, see <a href="#faq1_11"><abbr title="Frequently Asked Questions">FAQ</abbr>
1799 1.11</a>.
1800 <br /><br />
1802 If the directory where phpMyAdmin is installed is subject to an
1803 <tt>open_basedir</tt> restriction, you need to create a
1804 temporary directory in some directory accessible by the web
1805 server. However for security reasons, this directory should be outside
1806 the tree published by webserver. If you cannot avoid having this
1807 directory published by webserver, place at least an empty
1808 <tt>index.html</tt> file there, so that directory listing is not
1809 possible.
1810 <br /><br />
1812 This directory should have as strict permissions as possible as the only
1813 user required to access this directory is the one who runs the
1814 webserver. If you have root privileges, simply make this user owner of
1815 this directory and make it accessible only by it:
1816 <br /><br />
1818 <pre>
1819 chown www-data:www-data tmp
1820 chmod 700 tmp
1821 </pre>
1823 If you cannot change owner of the directory, you can achieve a similar
1824 setup using <abbr title="Access Control List">ACL</abbr>:
1826 <pre>
1827 chmod 700 tmp
1828 setfacl -m "g:www-data:rwx" tmp
1829 setfacl -d -m "g:www-data:rwx" tmp
1830 </pre>
1832 If neither of above works for you, you can still make the directory
1833 <code>chmod 777</code>, but it might impose risk of other users on
1834 system reading and writing data in this directory.
1835 </dd>
1837 <dt id="cfg_Export">$cfg['Export'] array</dt>
1838 <dd>
1839 In this array are defined default parameters for export, names of
1840 items are similar to texts seen on export page, so you can easily
1841 identify what they mean.
1842 </dd>
1844 <dt id="cfg_Import">$cfg['Import'] array</dt>
1845 <dd>
1846 In this array are defined default parameters for import, names of
1847 items are similar to texts seen on import page, so you can easily
1848 identify what they mean.
1849 </dd>
1851 <dt id="cfg_RepeatCells">$cfg['RepeatCells'] integer</dt>
1852 <dd>
1853 Repeat the headers every X cells, or 0 to deactivate.
1854 </dd>
1856 <dt id="cfg_EditInWindow">$cfg['EditInWindow'] boolean<br />
1857 <span id="cfg_QueryWindowWidth">$cfg['QueryWindowWidth'] </span>integer<br />
1858 <span id="cfg_QueryWindowHeight">$cfg['QueryWindowHeight'] </span>integer<br />
1859 <span id="cfg_QueryHistoryDB">$cfg['QueryHistoryDB'] </span>boolean<br />
1860 <span id="cfg_QueryWindowDefTab">$cfg['QueryWindowDefTab'] </span>string<br />
1861 <span id="cfg_QueryHistoryMax">$cfg['QueryHistoryMax'] </span>integer
1862 </dt>
1863 <dd>
1864 All those variables affect the query window feature. A <tt><abbr title="structured query language">SQL</abbr></tt> link
1865 or icon is always displayed on the left panel. If JavaScript is enabled in
1866 your browser, a click on this opens a distinct query window, which is
1867 a direct interface to enter <abbr title="structured query language">SQL</abbr> queries. Otherwise, the right panel
1868 changes to display a query box.<br /><br />
1870 The size of this query window can be customized with
1871 <tt>$cfg['QueryWindowWidth']</tt> and <tt>$cfg['QueryWindowWidth']</tt>
1872 - both integers for the size in pixels. Note that normally, those
1873 parameters will be modified in <tt>layout.inc.php</tt> for the
1874 theme you are using.<br /><br />
1876 If <tt>$cfg['EditInWindow']</tt> is set to true, a click on [Edit]
1877 from the results page (in the &quot;Showing Rows&quot; section)
1878 opens the query window and puts the current query
1879 inside it. If set to false, clicking on the link puts the <abbr title="structured query language">SQL</abbr>
1880 query in the right panel's query box.
1881 <br /><br />
1882 The usage of the JavaScript query window is recommended if you have a
1883 JavaScript enabled browser. Basic functions are used to exchange quite
1884 a few variables, so most 4th generation browsers should be capable to
1885 use that feature. It currently is only tested with Internet Explorer 6
1886 and Mozilla 1.x.
1887 <br /><br />
1888 If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt>, all your Queries are logged
1889 to a table, which has to be created by you (see <a
1890 href="#history" class="configrule">$cfg['Servers'][$i]['history']</a>). If set to FALSE,
1891 all your queries will be appended to the form, but only as long as
1892 your window is opened they remain saved.
1893 <br /><br />
1894 When using the JavaScript based query window, it will always get
1895 updated when you click on a new table/db to browse and will focus if
1896 you click on "Edit <abbr title="structured query language">SQL</abbr>" after using a query. You can suppress updating
1897 the query window by checking the box "Do not overwrite this query from
1898 outside the window" below the query textarea. Then you can browse
1899 tables/databases in the background without losing the contents of the
1900 textarea, so this is especially useful when composing a query with
1901 tables you first have to look in. The checkbox will get automatically
1902 checked whenever you change the contents of the textarea. Please
1903 uncheck the button whenever you definitely want the query window to
1904 get updated even though you have made alterations.
1905 <br /><br />
1906 If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt> you can specify the amount of
1907 saved history items using <tt>$cfg['QueryHistoryMax']</tt>.
1908 <br /><br />
1909 The query window also has a custom tabbed look to group the features.
1910 Using the variable <tt>$cfg['QueryWindowDefTab']</tt> you can specify the
1911 default tab to be used when opening the query window. It can be set to
1912 either 'sql', 'files', 'history' or 'full'.</dd>
1914 <dt id="cfg_BrowseMIME">$cfg['BrowseMIME'] boolean</dt>
1915 <dd>Enable <a href="#transformations">MIME-transformations</a>.</dd>
1917 <dt id="cfg_MaxExactCount">$cfg['MaxExactCount'] integer</dt>
1918 <dd>For InnoDB tables, determines for how large tables phpMyAdmin
1919 should get the exact row count using <code>SELECT COUNT</code>.
1920 If the approximate row count as returned by
1921 <code>SHOW TABLE STATUS</code> is smaller than this value,
1922 <code>SELECT COUNT</code> will be used, otherwise the approximate
1923 count will be used.
1924 </dd>
1925 <dt id="cfg_MaxExactCountViews">$cfg['MaxExactCountViews'] integer</dt>
1926 <dd>For VIEWs, since obtaining the exact count could have an
1927 impact on performance, this value is the maximum to be displayed, using
1928 a <code>SELECT COUNT ... LIMIT</code>. The default value of 0 bypasses
1929 any row counting.
1930 </dd>
1932 <dt id="wysiwyg">
1933 <span id="cfg_WYSIWYG-PDF">$cfg['WYSIWYG-PDF'] </span>boolean</dt>
1934 <dd>Utilizes a WYSIWYG editing control to easily place elements of a
1935 <abbr title="Portable Document Format">PDF</abbr>
1936 page. By clicking on the button 'toggle scratchboard' on the page
1937 where you edit x/y coordinates of those elements you can activate a
1938 scratchboard where all your elements are placed. By clicking on an
1939 element, you can move them around in the pre-defined area and the x/y
1940 coordinates will get updated dynamically. Likewise, when entering a
1941 new position directly into the input field, the new position in the
1942 scratchboard changes after your cursor leaves the input field.<br />
1943 You have to click on the 'OK'-button below the tables to save the new
1944 positions. If you want to place a new element, first add it to the
1945 table of elements and then you can drag the new element around.<br />
1946 By changing the paper size and the orientation you can change the size
1947 of the scratchboard as well. You can do so by just changing the
1948 dropdown field below, and the scratchboard will resize automatically,
1949 without interfering with the current placement of the elements.<br />
1950 If ever an element gets out of range you can either enlarge the paper
1951 size or click on the 'reset' button to place all elements below each
1952 other.<br />
1953 <b>NOTE:</b> You have to use a recent browser like IE6 or Mozilla to
1954 get this control to work. The basic Drag&amp;Drop script functionality
1955 was kindly borrowed from www.youngpup.net and is underlying so
1956 specific license.</dd>
1958 <dt id="cfg_NaturalOrder">$cfg['NaturalOrder'] boolean</dt>
1959 <dd>Sorts database and table names according to natural order (for example,
1960 t1, t2, t10). Currently implemented in the left panel (Light mode)
1961 and in Database view, for the table list.</dd>
1963 <dt id="cfg_InitialSlidersState">$cfg['InitialSlidersState'] string</dt>
1964 <dd>If set to <tt>'closed'</tt>, the visual sliders are initially in a
1965 closed state. A value of 'open' does the reverse.</dd>
1967 <dt id="cfg_TitleTable">$cfg['TitleTable'] string</dt>
1968 <dt id="cfg_TitleDatabase">$cfg['TitleDatabase'] string</dt>
1969 <dt id="cfg_TitleServer">$cfg['TitleServer'] string</dt>
1970 <dt id="cfg_TitleDefault">$cfg['TitleDefault'] string</dt>
1971 <dd>Allows you to specify window's title bar. Following magic string can
1972 be used to get special values:
1973 <dl>
1974 <dt><code>@HTTP_HOST@</code></dt>
1975 <dd>HTTP host that runs phpMyAdmin</dd>
1976 <dt><code>@SERVER@</code></dt>
1977 <dd>MySQL server name</dd>
1978 <dt><code>@VERBOSE@</code></dt>
1979 <dd>Verbose MySQL server name as defined in <a href="#cfg_Servers_verbose">server configuration</a></dd>
1980 <dt><code>@VSERVER@</code></dt>
1981 <dd>Verbose MySQL server name if set, otherwise normal</dd>
1982 <dt><code>@DATABASE@</code></dt>
1983 <dd>Currently opened database</dd>
1984 <dt><code>@TABLE@</code></dt>
1985 <dd>Currently opened table</dd>
1986 <dt><code>@PHPMYADMIN@</code></dt>
1987 <dd>phpMyAdmin with version</dd>
1988 </dl>
1989 </dd>
1991 <dt id="cfg_ErrorIconic">$cfg['ErrorIconic'] boolean</dt>
1992 <dd>Uses icons for warnings, errors and informations.</dd>
1994 <dt id="cfg_MainPageIconic">$cfg['MainPageIconic'] boolean</dt>
1995 <dd>Uses icons on main page in lists and menu tabs.</dd>
1997 <dt id="cfg_ReplaceHelpImg">$cfg['ReplaceHelpImg'] boolean</dt>
1998 <dd>Shows a help button instead of the &quot;Documentation&quot; message.
1999 </dd>
2001 <dt id="cfg_ThemePath">$cfg['ThemePath'] string</dt>
2002 <dd>If theme manager is active, use this as the path of the subdirectory
2003 containing all the themes.</dd>
2005 <dt id="cfg_ThemeManager">$cfg['ThemeManager'] boolean</dt>
2006 <dd>Enables user-selectable themes. See <a href="#faqthemes">
2007 <abbr title="Frequently Asked Questions">FAQ</abbr> 2.7</a>.</dd>
2009 <dt id="cfg_ThemeDefault">$cfg['ThemeDefault'] string</dt>
2010 <dd>The default theme (a subdirectory under <tt>cfg['ThemePath']</tt>).</dd>
2012 <dt id="cfg_ThemePerServer">$cfg['ThemePerServer'] boolean</dt>
2013 <dd>Whether to allow different theme for each server.</dd>
2015 <dt id="cfg_DefaultQueryTable">$cfg['DefaultQueryTable'] string<br />
2016 <span id="cfg_DefaultQueryDatabase">$cfg['DefaultQueryDatabase']</span> string
2017 </dt>
2018 <dd>Default queries that will be displayed in query boxes when user didn't
2019 specify any. Use %d for database name, %t for table name and %f for a
2020 comma separated list of field names. Note that %t and %f are only
2021 applicable to <tt>$cfg['DefaultQueryTable']</tt>.</dd>
2023 <dt id="cfg_SQP_fmtType">$cfg['SQP']['fmtType'] string [<tt>html</tt>|<tt>none</tt>]</dt>
2024 <dd>
2025 The main use of the new <abbr title="structured query language">SQL</abbr> Parser is to pretty-print <abbr title="structured query language">SQL</abbr> queries. By
2026 default we use HTML to format the query, but you can disable this by
2027 setting this variable to <tt>'none'</tt>.
2028 </dd>
2030 <dt id="cfg_SQP_fmtInd">$cfg['SQP']['fmtInd'] float<br />
2031 <span id="cfg_SQP">$cfg['SQP']['fmtIndUnit']</span> string [<tt>em</tt>|<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]</dt>
2032 <dd>For the pretty-printing of <abbr title="structured query language">SQL</abbr> queries, under some cases the part of a
2033 query inside a bracket is indented. By changing
2034 <tt>$cfg['SQP']['fmtInd']</tt> you can change the amount of this indent.
2035 <br />Related in purpose is <tt>$cfg['SQP']['fmtIndUnit']</tt> which
2036 specifies the units of the indent amount that you specified. This is
2037 used via stylesheets.</dd>
2039 <dt id="cfg_SQP_fmtColor">$cfg['SQP']['fmtColor'] array of string tuples</dt>
2040 <dd>This array is used to define the colours for each type of element of
2041 the pretty-printed <abbr title="structured query language">SQL</abbr> queries. The tuple format is<br />
2042 <i>class</i> =&gt; [<i>HTML colour code</i> | <i>empty string</i>]<br />
2043 If you specify an empty string for the color of a class, it is ignored
2044 in creating the stylesheet.
2045 You should not alter the class names, only the colour strings.<br />
2046 <b>Class name key:</b>
2047 <ul><li><b>comment</b> Applies to all comment sub-classes</li>
2048 <li><b>comment_mysql</b> Comments as <tt>"#...\n"</tt></li>
2049 <li><b>comment_ansi</b> Comments as <tt>"-- ...\n"</tt></li>
2050 <li><b>comment_c</b> Comments as <tt>"/*...*/"</tt></li>
2051 <li><b>digit</b> Applies to all digit sub-classes</li>
2052 <li><b>digit_hex</b> Hexadecimal numbers</li>
2053 <li><b>digit_integer</b> Integer numbers</li>
2054 <li><b>digit_float</b> Floating point numbers</li>
2055 <li><b>punct</b> Applies to all punctuation sub-classes</li>
2056 <li><b>punct_bracket_open_round</b> Opening brackets<tt>"("</tt></li>
2057 <li><b>punct_bracket_close_round</b> Closing brackets <tt>")"</tt></li>
2058 <li><b>punct_listsep</b> List item Separator <tt>","</tt></li>
2059 <li><b>punct_qualifier</b> Table/Column Qualifier <tt>"."</tt> </li>
2060 <li><b>punct_queryend</b> End of query marker <tt>";"</tt></li>
2061 <li><b>alpha</b> Applies to all alphabetic classes</li>
2062 <li><b>alpha_columnType</b> Identifiers matching a column type</li>
2063 <li><b>alpha_columnAttrib</b> Identifiers matching a database/table/column attribute</li>
2064 <li><b>alpha_functionName</b> Identifiers matching a MySQL function name</li>
2065 <li><b>alpha_reservedWord</b> Identifiers matching any other reserved word</li>
2066 <li><b>alpha_variable</b> Identifiers matching a <abbr title="structured query language">SQL</abbr> variable <tt>"@foo"</tt></li>
2067 <li><b>alpha_identifier</b> All other identifiers</li>
2068 <li><b>quote</b> Applies to all quotation mark classes</li>
2069 <li><b>quote_double</b> Double quotes <tt>"</tt></li>
2070 <li><b>quote_single</b> Single quotes <tt>'</tt></li>
2071 <li><b>quote_backtick</b> Backtick quotes <tt>`</tt></li>
2072 </ul>
2073 </dd>
2075 <dt id="cfg_SQLValidator">$cfg['SQLValidator'] boolean</dt>
2076 <dd><dl><dt id="cfg_SQLValidator_use">$cfg['SQLValidator']['use'] boolean</dt>
2077 <dd>phpMyAdmin now supports use of the <a href="http://developer.mimer.com/validator/index.htm">Mimer <abbr title="structured query language">SQL</abbr> Validator</a> service,
2078 as originally published on
2079 <a href="http://developers.slashdot.org/article.pl?sid=02/02/19/1720246">Slashdot</a>.
2080 <br />
2081 For help in setting up your system to use the service, see the
2082 <a href="#faqsqlvalidator"><abbr title="Frequently Asked Questions">FAQ</abbr> 6.14</a>.
2083 </dd>
2085 <dt id="cfg_SQLValidator_username">$cfg['SQLValidator']['username'] string<br />
2086 <span id="cfg_SQLValidator_password">$cfg['SQLValidator']['password']</span> string</dt>
2087 <dd>The SOAP service allows you to log in with <tt>anonymous</tt>
2088 and any password, so we use those by default. Instead, if
2089 you have an account with them, you can put your login details
2090 here, and it will be used in place of the anonymous login.</dd>
2091 </dl>
2092 </dd>
2094 <dt id="cfg_DBG">$cfg['DBG']</dt>
2095 <dd><b>DEVELOPERS ONLY!</b></dd>
2097 <dt id="cfg_DBG_enable_sql">$cfg['DBG']['sql'] boolean</dt>
2098 <dd><b>DEVELOPERS ONLY!</b><br />
2099 Enable logging queries and execution times to be displayed in the bottom
2100 of main page (right frame).</dd>
2102 <dt id="cfg_DBG_enable_php">$cfg['DBG']['php'] boolean</dt>
2103 <dd><b>DEVELOPERS ONLY!</b><br />
2104 Enable the DBG extension for debugging phpMyAdmin. Required for profiling
2105 the code.<br />
2106 For help in setting up your system to this, see the
2107 <a href="#developersdbg">Developers</a> section.</dd>
2109 <dt id="cfg_DBG_profile_enable">$cfg['DBG']['profile']['enable'] boolean</dt>
2110 <dd><b>DEVELOPERS ONLY!</b><br />
2111 Enable profiling support for phpMyAdmin. This will append a chunk of data
2112 to the end of every page displayed in the main window with profiling
2113 statistics for that page.<br />
2114 You may need to increase the maximum execution time for this to
2115 complete successfully.<i>Profiling was removed from the code for
2116 version 2.9.0 due to licensing issues.</i></dd>
2118 <dt id="cfg_DBG_profile_threshold">$cfg['DBG']['profile']['threshold'] float (units in milliseconds)</dt>
2119 <dd><b>DEVELOPERS ONLY!</b><br />
2120 When profiling data is displayed, this variable controls the threshold of
2121 display for any profiling data, based on the average time each time has
2122 taken. If it is over the threshold it is displayed, otherwise it is not
2123 displayed. This takes a value in milliseconds. In most cases you don't need
2124 to edit this.</dd>
2126 <dt id="cfg_ColumnTypes">$cfg['ColumnTypes'] array</dt>
2127 <dd>All possible types of a MySQL column. In most cases you don't need to
2128 edit this.</dd>
2130 <dt id="cfg_AttributeTypes">$cfg['AttributeTypes'] array</dt>
2131 <dd>Possible attributes for fields. In most cases you don't need to edit
2132 this.</dd>
2134 <dt id="cfg_Functions">$cfg['Functions'] array</dt>
2135 <dd>A list of functions MySQL supports. In most cases you don't need to
2136 edit this.</dd>
2138 <dt id="cfg_RestrictColumnTypes">$cfg['RestrictColumnTypes'] array</dt>
2139 <dd>Mapping of column types to meta types used for preferring displayed
2140 functions. In most cases you don't need to edit this.</dd>
2142 <dt id="cfg_RestrictFunctions">$cfg['RestrictFunctions'] array</dt>
2143 <dd>Functions preferred for column meta types as defined in
2144 <a href="#cfg_RestrictColumnTypes" class="configrule">$cfg['RestrictColumnTypes']</a>. In most cases you don't need
2145 to edit this.</dd>
2147 <dt id="cfg_DefaultFunctions">$cfg['DefaultFunctions'] array</dt>
2148 <dd>Functions selected by default when inserting/changing row, Functions
2149 are defined for meta types from
2150 <a href="#cfg_RestrictColumnTypes" class="configrule">$cfg['RestrictColumnTypes']</a> and for
2151 <code>first_timestamp</code>, which is used for first timestamp column
2152 in table.</dd>
2154 <dt id="cfg_NumOperators">$cfg['NumOperators'] array</dt>
2155 <dd>Operators available for search operations on numeric and date fields.
2156 </dd>
2158 <dt id="cfg_TextOperators">$cfg['TextOperators'] array</dt>
2159 <dd>Operators available for search operations on character fields.
2160 Note that we put <code>LIKE</code> by default instead of
2161 <code>LIKE %...%</code>, to avoid unintended performance problems
2162 in case of huge tables.</dd>
2164 <dt id="cfg_EnumOperators">$cfg['EnumOperators'] array</dt>
2165 <dd>Operators available for search operations on enum fields.</dd>
2167 <dt id="cfg_NullOperators">$cfg['NullOperators'] array</dt>
2168 <dd>Additional operators available for search operations when the
2169 field can be null.</dd>
2171 </dl>
2173 <!-- TRANSFORMATIONS -->
2174 <h2 id="transformations">Transformations</h2>
2176 <ol><li><a href="#transformationsintro">Introduction</a></li>
2177 <li><a href="#transformationshowto">Usage</a></li>
2178 <li><a href="#transformationsfiles">File structure</a></li>
2179 </ol>
2181 <h3 id="transformationsintro">1. Introduction</h3>
2183 <p> To enable transformations, you have to setup the <tt>column_info</tt> table
2184 and the proper directives. Please see the <a href="#config">Configuration
2185 section</a> on how to do so.</p>
2187 <p> You can apply different transformations to the contents of each field. The
2188 transformation will take the content of each field and transform it with
2189 certain rules defined in the selected transformation.</p>
2191 <p> Say you have a field 'filename' which contains a filename. Normally you would
2192 see in phpMyAdmin only this filename. Using transformations you can transform
2193 that filename into a HTML link, so you can click inside of the phpMyAdmin
2194 structure on the field's link and will see the file displayed in a new browser
2195 window. Using transformation options you can also specify strings to
2196 append/prepend to a string or the format you want the output stored in.</p>
2198 <p> For a general overview of all available transformations and their options,
2199 you can consult your
2200 <i>&lt;www.your-host.com&gt;/&lt;your-install-dir&gt;/transformation_overview.php</i>
2201 installation.</p>
2203 <p> For a tutorial on how to effectively use transformations, see our
2204 <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on
2205 the official phpMyAdmin homepage.</p>
2207 <h3 id="transformationshowto">2. Usage</h3>
2209 <p> Go to your <i>tbl_structure.php</i> page (i.e. reached through
2210 clicking on the 'Structure' link for a table). There click on
2211 &quot;Change&quot; (or change icon) and there you will see three new fields at
2212 the end of the line. They are called 'MIME-type', 'Browser transformation' and
2213 'Transformation options'.</p>
2215 <ul><li>The field 'MIME-type' is a drop-down field. Select the MIME-type
2216 that corresponds to the column's contents. Please note that
2217 transformations are inactive as long as no MIME-type is selected.</li>
2219 <li>The field 'Browser transformation' is a drop-down field. You can choose from a
2220 hopefully growing amount of pre-defined transformations. See below for information on
2221 how to build your own transformation.<br />
2223 There are global transformations and mimetype-bound transformations. Global transformations
2224 can be used for any mimetype. They will take the mimetype, if necessary, into regard.
2225 Mimetype-bound transformations usually only operate on a certain mimetype. There are
2226 transformations which operate on the main mimetype (like 'image'), which will most likely
2227 take the subtype into regard, and those who only operate on a
2228 specific subtype (like 'image/jpeg').<br />
2230 You can use transformations on mimetypes for which the function was not defined for. There
2231 is no security check for you selected the right transformation, so take care of what the
2232 output will be like.</li>
2234 <li>The field 'Transformation options' is a free-type textfield. You have to enter
2235 transform-function specific options here. Usually the transforms can operate with default
2236 options, but it is generally a good idea to look up the overview to see which options are
2237 necessary.<br />
2239 Much like the ENUM/SET-Fields, you have to split up several options using the format
2240 'a','b','c',...(NOTE THE MISSING BLANKS). This is because internally the options will be
2241 parsed as an array, leaving the first value the first element in the array, and so
2242 forth.<br />
2244 If you want to specify a MIME character set you can define it in the transformation_options.
2245 You have to put that outside of the pre-defined options of the specific mime-transform,
2246 as the last value of the set. Use the format "'; charset=XXX'". If you use a transform,
2247 for which you can specify 2 options and you want to append a character set, enter "'first
2248 parameter','second parameter','charset=us-ascii'". You can, however use the defaults for
2249 the parameters: "'','','charset=us-ascii'".</li>
2250 </ul>
2252 <h3 id="transformationsfiles">3. File structure</h3>
2254 <p> All mimetypes and their transformations are defined through single files in
2255 the directory 'libraries/transformations/'.</p>
2257 <p> They are stored in files to ease up customization and easy adding of new
2258 transformations.</p>
2260 <p> Because the user cannot enter own mimetypes, it is kept sure that transformations
2261 always work. It makes no sense to apply a transformation to a mimetype, the
2262 transform-function doesn't know to handle.</p>
2264 <p> One can, however, use empty mime-types and global transformations which should work
2265 for many mimetypes. You can also use transforms on a different mimetype they where built
2266 for, but pay attention to option usage as well as what the transformation does to your
2267 field.</p>
2269 <p> There is a basic file called '<i>global.inc.php</i>'. This function can be included by
2270 any other transform function and provides some basic functions.</p>
2272 <p> There are 5 possible file names:</p>
2274 <ol><li>A mimetype+subtype transform:<br /><br />
2276 <tt>[mimetype]_[subtype]__[transform].inc.php</tt><br /><br />
2278 Please not that mimetype and subtype are separated via '_', which shall
2279 not be contained in their names. The transform function/filename may
2280 contain only characters which cause no problems in the file system as
2281 well as the PHP function naming convention.<br /><br />
2283 The transform function will the be called
2284 '<tt>PMA_transform_[mimetype]_[subtype]__[transform]()</tt>'.<br /><br />
2286 <b>Example:</b><br /><br />
2288 <tt>text_html__formatted.inc.php</tt><br />
2289 <tt>PMA_transform_text_html__formatted()</tt></li>
2291 <li>A mimetype (w/o subtype) transform:<br /><br />
2293 <tt>[mimetype]__[transform].inc.php</tt><br /><br />
2295 Please note that there are no single '_' characters.
2296 The transform function/filename may contain only characters which cause
2297 no problems in the file system as well as the PHP function naming
2298 convention.<br /><br />
2300 The transform function will the be called
2301 '<tt>PMA_transform_[mimetype]__[transform]()</tt>'.<br /><br />
2303 <b>Example:</b><br /><br />
2305 <tt>text__formatted.inc.php</tt><br />
2306 <tt>PMA_transform_text__formatted()</tt></li>
2308 <li>A mimetype+subtype without specific transform function<br /><br />
2310 <tt>[mimetype]_[subtype].inc.php</tt><br /><br />
2312 Please note that there are no '__' characters in the filename. Do not
2313 use special characters in the filename causing problems with the file
2314 system.<br /><br />
2316 No transformation function is defined in the file itself.<br /><br />
2318 <b>Example:</b><br /><br />
2320 <tt>text_plain.inc.php</tt><br />
2321 (No function)</li>
2323 <li>A mimetype (w/o subtype) without specific transform function<br /><br />
2325 <tt>[mimetype].inc.php</tt><br /><br />
2327 Please note that there are no '_' characters in the filename. Do not use
2328 special characters in the filename causing problems with the file system.
2329 <br /><br />
2331 No transformation function is defined in the file itself.<br /><br />
2333 <b>Example:</b><br /><br />
2335 <tt>text.inc.php</tt><br />
2336 (No function)</li>
2338 <li>A global transform function with no specific mimetype<br /><br />
2340 <tt>global__[transform].inc.php</tt><br /><br />
2342 The transform function will the be called
2343 '<tt>PMA_transform_global__[transform]()</tt>'.<br /><br />
2345 <b>Example:</b><br /><br />
2347 <tt>global__formatted</tt><br />
2348 <tt>PMA_transform_global__formatted()</tt></li>
2349 </ol>
2351 <p> So generally use '_' to split up mimetype and subtype, and '__' to provide a
2352 transform function.</p>
2354 <p> All filenames containing no '__' in themselves are not shown as valid transform
2355 functions in the dropdown.</p>
2357 <p> Please see the libraries/transformations/TEMPLATE file for adding your own transform
2358 function. See the libraries/transformations/TEMPLATE_MIMETYPE for adding a mimetype
2359 without a transform function. Also note the introduction of a function description in
2360 the language files. For each function a $strTransformation_[filename without .inc.php]
2361 has to exist.</p>
2363 <p> You can use the template generator to generate new functions and entries in the
2364 language file.</p>
2366 <p> To create a new transform function please see
2367 <tt>libraries/transformations/template_generator.sh</tt>.
2368 To create a new, empty mimetype please see
2369 <tt>libraries/transformations/template_generator_mimetype.sh</tt>.</p>
2371 <p> A transform function always gets passed three variables:</p>
2373 <ol><li><b>$buffer</b> - Contains the text inside of the column. This is the text,
2374 you want to transform.</li>
2375 <li><b>$options</b> - Contains any user-passed options to a transform function
2376 as an array.</li>
2377 <li><b>$meta</b> - Contains an object with field information to your column.
2378 The data is drawn from the output of the
2379 <a href="http://www.php.net/mysql_fetch_field">mysql_fetch_field()</a>
2380 function. This means, all object properties described on the
2381 <a href="http://www.php.net/mysql_fetch_field">manual page</a> are
2382 available in this variable and can be used to transform a field accordingly
2383 to unsigned/zerofill/not_null/... properties.<br />
2384 The $meta-&gt;mimetype variable contains the original MIME-type of the
2385 field (i.e. 'text/plain', 'image/jpeg' etc.)</li>
2386 </ol>
2388 <!-- FAQ -->
2389 <h2 id="faq">FAQ - Frequently Asked Questions</h2>
2391 <ol><li><a href="#faqserver">Server</a></li>
2392 <li><a href="#faqconfig">Configuration</a></li>
2393 <li><a href="#faqlimitations">Known limitations</a></li>
2394 <li><a href="#faqmultiuser">ISPs, multi-user installations</a></li>
2395 <li><a href="#faqbrowsers">Browsers or client <abbr title="operating system">OS</abbr></a></li>
2396 <li><a href="#faqusing">Using phpMyAdmin</a></li>
2397 <li><a href="#faqproject">phpMyAdmin project</a></li>
2398 <li><a href="#faqsecurity">Security</a></li>
2399 </ol>
2401 <p> Please have a look at our
2402 <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on
2403 the official phpMyAdmin homepage for in-depth coverage of phpMyAdmin's
2404 features and or interface.</p>
2406 <h3 id="faqserver">Server</h3>
2408 <h4 id="faq1_1">
2409 <a href="#faq1_1">1.1 I'm running PHP 4+ and my server is crashing each time a specific
2410 action is required or phpMyAdmin sends a blank page or a page full of
2411 cryptic characters to my browser, what can I do?</a></h4>
2413 <p> There are some known PHP bugs with output buffering and compression.<br />
2414 Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip']</a>
2415 directive to <tt>FALSE</tt> in your <i>config.inc.php</i> file and the
2416 <tt>zlib.output_compression</tt> directive to <tt>Off</tt> in your php
2417 configuration file.<br />
2418 Furthermore, we know about such problems connected to the release
2419 candidates of PHP 4.2.0 (tested with PHP 4.2.0 RC1 to RC4) together with
2420 MS Internet Explorer. Please upgrade to the release version PHP 4.2.0.</p>
2422 <h4 id="faq1_2">
2423 <a href="#faq1_2">1.2 My Apache server crashes when using phpMyAdmin.</a></h4>
2425 <p> You should first try the latest versions of Apache (and possibly MySQL).<br />
2426 See also the
2427 <a href="#faq1_1"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.1</a>
2428 entry about PHP bugs with output buffering.<br />
2429 If your server keeps crashing, please ask for help in the various Apache
2430 support groups.</p>
2432 <h4 id="faq1_3">
2433 <a href="#faq1_3">1.3 I'm running phpMyAdmin with "cookie" authentication
2434 mode under PHP 4.2.0 or 4.2.1 loaded as an Apache 2 module but can't enter the
2435 script: I'm always displayed the login screen.</a></h4>
2437 <p> This is a known PHP bug (see this
2438 <a href="http://bugs.php.net/bug.php?id=16626">bug report</a>) from the
2439 official PHP bug database. It means there is and won't be any phpMyAdmin
2440 fix against it because there is no way to code a fix.</p>
2442 <h4 id="faq1_4">
2443 <a href="#faq1_4">1.4 Using phpMyAdmin on
2444 <abbr title="Internet Information Services">IIS</abbr>, I'm displayed the
2445 error message: &quot;The specified <abbr title="Common Gateway Interface">CGI</abbr>
2446 application misbehaved by not returning a complete set of
2447 <abbr title="HyperText Transfer Protocol">HTTP</abbr> headers ...&quot;.</a>
2448 </h4>
2450 <p> You just forgot to read the <i>install.txt</i> file from the php distribution.
2451 Have a look at the last message in this
2452 <a href="http://bugs.php.net/bug.php?id=12061">bug report</a> from the
2453 official PHP bug database.</p>
2455 <h4 id="faq1_5">
2456 <a href="#faq1_5">1.5 Using phpMyAdmin on
2457 <abbr title="Internet Information Services">IIS</abbr>, I'm facing crashes
2458 and/or many error messages with the
2459 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or advanced authentication
2460 mode.</a></h4>
2462 <p> This is a known problem with the PHP
2463 <abbr title="Internet Server Application Programming Interface">ISAPI</abbr>
2464 filter: it's not so stable. Please use instead the cookie authentication mode.
2465 </p>
2467 <h4 id="faq1_6">
2468 <a href="#faq1_6">1.6 I can't use phpMyAdmin on PWS: nothing is displayed!</a></h4>
2470 <p> This seems to be a PWS bug. Filippo Simoncini found a workaround (at this
2471 time there is no better fix): remove or comment the <tt>DOCTYPE</tt>
2472 declarations (2 lines) from the scripts <i>libraries/header.inc.php</i>,
2473 <i>libraries/header_printview.inc.php</i>, <i>index.php</i>,
2474 <i>navigation.php</i> and <i>libraries/common.lib.php</i>.</p>
2476 <h4 id="faq1_7">
2477 <a href="#faq1_7">1.7 How can I GZip or Bzip a dump or a
2478 <abbr title="comma separated values">CSV</abbr> export? It does not seem to
2479 work.</a></h4>
2481 <p> These features are based on the <tt>gzencode()</tt> and <tt>bzcompress()</tt>
2482 PHP functions to be more independent of the platform (Unix/Windows, Safe Mode
2483 or not, and so on). So, you must have PHP4&nbsp;&gt;=&nbsp;4.0.4 and Zlib/Bzip2
2484 support (<tt>--with-zlib</tt> and <tt>--with-bz2</tt>).<br />
2485 We faced PHP crashes when trying to download a dump with MS Internet
2486 Explorer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In
2487 this case you should switch to the release version of PHP 4.2.0.</p>
2489 <h4 id="faq1_8">
2490 <a href="#faq1_8">1.8 I cannot insert a text file in a table, and I get
2491 an error about safe mode being in effect.</a></h4>
2493 <p> Your uploaded file is saved by PHP in the &quot;upload dir&quot;, as
2494 defined in <i>php.ini</i> by the variable <tt>upload_tmp_dir</tt> (usually
2495 the system default is <i>/tmp</i>).<br />
2496 We recommend the following setup for Apache servers running in safe mode,
2497 to enable uploads of files while being reasonably secure:</p>
2499 <ul><li>create a separate directory for uploads: <tt>mkdir /tmp/php</tt></li>
2500 <li>give ownership to the Apache server's user.group:
2501 <tt>chown apache.apache /tmp/php</tt></li>
2502 <li>give proper permission: <tt>chmod 600 /tmp/php</tt></li>
2503 <li>put <tt>upload_tmp_dir = /tmp/php</tt> in <i>php.ini</i></li>
2504 <li>restart Apache</li>
2505 </ul>
2507 <h4 id="faq1_9">
2508 <a href="#faq1_9">1.9 I'm having troubles when uploading files. In
2509 general file uploads don't work on my system and uploaded files have a
2510 <tt>Content-Type:</tt> header in the first line.</a></h4>
2512 <p> It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat 7.0
2513 and you updated your PHP RPM to php-4.0.4pl1-3.i386.rpm, didn't you?<br />
2514 So the problem is that this package has a serious bug that was corrected
2515 ages ago in PHP (2001-01-28: see
2516 <a href="http://www.php.net/bugs.php?id=8966">PHP's bug tracking system</a>
2517 for more details). The problem is that the bugged package is still
2518 available though it was corrected (see
2519 <a href="http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=24933">RedHat's BugZilla</a>
2520 for more details).<br />
2521 So please download
2522 <a href="http://www.redhat.com/swr/i386/php-4.0.4pl1-9.i386.html">the fixed package (4.0.4pl1-9)</a>
2523 and the problem should go away.<br />
2524 And that fixes the \r\n problem with file uploads!</p>
2526 <h4 id="faq1_10">
2527 <a href="#faq1_10">1.10 I'm having troubles when uploading files with
2528 phpMyAdmin running on a secure server. My browser is Internet Explorer and
2529 I'm using the Apache server.</a></h4>
2531 <p> As suggested by &quot;Rob M&quot; in the phpWizard forum, add this line to
2532 your <i>httpd.conf</i>:</p>
2534 <pre>SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown</pre>
2536 <p> It seems to clear up many problems between Internet Explorer and SSL.</p>
2538 <h4 id="faq1_11">
2539 <a href="#faq1_11">1.11 I get an 'open_basedir restriction' while
2540 uploading a file from the query box.</a></h4>
2542 <p> Since version 2.2.4, phpMyAdmin supports servers with open_basedir
2543 restrictions. However you need to create temporary directory and
2544 configure it as <a href="#cfg_TempDir" class="configrule">$cfg['TempDir']</a>.
2545 The uploaded files will be moved there, and after execution of your
2546 <abbr title="structured query language">SQL</abbr> commands, removed.</p>
2548 <h4 id="faq1_12">
2549 <a href="#faq1_12">1.12 I have lost my MySQL root password, what can I do?</a></h4>
2551 <p> The MySQL manual explains how to
2552 <a href="http://www.mysql.com/doc/R/e/Resetting_permissions.html">
2553 reset the permissions</a>.</p>
2555 <h4 id="faq1_13">
2556 <a href="#faq1_13">1.13 I get an error 'No
2557 <abbr title="structured query language">SQL</abbr> query' when trying to
2558 execute a bookmark.</a></h4>
2560 <p> If PHP does not have read/write access to its <tt>upload_tmp_dir</tt>, it
2561 cannot access the uploaded query.</p>
2563 <h4 id="faq1_14">
2564 <a href="#faq1_14">1.14 I get an error 'No
2565 <abbr title="structured query language">SQL</abbr> query' when trying to
2566 submit a query from the convenient text area.</a></h4>
2568 <p> Check the <tt>post_max_size</tt> directive from your PHP configuration file
2569 and try to increase it.</p>
2571 <h4 id="faq1_15">
2572 <a href="#faq1_15">1.15 I have problems with <i>mysql.user</i> field names.</a>
2573 </h4>
2575 <p> In previous MySQL versions, the <tt>User</tt> and <tt>Password</tt> fields
2576 were named <tt>user</tt> and <tt>password</tt>. Please modify your field
2577 names to align with current standards.</p>
2579 <h4 id="faq1_16">
2580 <a href="#faq1_16">1.16 I cannot upload big dump files (memory,
2581 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or timeout problems).</a>
2582 </h4>
2584 <p> Starting with version 2.7.0, the import engine has been re&#8211;written and these
2585 problems should not occur. If possible, upgrade your phpMyAdmin to the latest version
2586 to take advantage of the new import features.</p>
2588 <p> The first things to check (or ask your host provider to check) are the
2589 values of <tt>upload_max_filesize</tt>, <tt>memory_limit</tt> and
2590 <tt>post_max_size</tt> in the <i>php.ini</i> configuration file.
2591 All of these three settings limit the maximum size of data that can be
2592 submitted and handled by PHP. One user also said that post_max_size
2593 and memory_limit need to be larger than upload_max_filesize.<br /> <br />
2595 There exist several workarounds if your upload is too big or your
2596 hosting provider is unwilling to change the settings:</p>
2598 <ul><li>Look at the <a href="#cfg_UploadDir" class="configrule">$cfg['UploadDir']</a>
2599 feature. This allows one to
2600 upload a file to the server via scp, ftp, or your favorite file transfer
2601 method. PhpMyAdmin is then able to import the files from the temporary
2602 directory. More information is available in the <a href="#config">Configuration
2603 section</a> of this document.</li>
2604 <li>Using a utility (such as <a href="http://www.ozerov.de/bigdump.php">
2605 BigDump</a>) to split the files before uploading. We cannot support this
2606 or any third party applications, but are aware of users having success
2607 with it.</li>
2608 <li>If you have shell (command line) access, use MySQL to import the files
2609 directly. You can do this by issuing the &quot;source&quot; command from
2610 within MySQL: <tt>source <i>filename.sql</i></tt>.</li>
2611 </ul>
2613 <h4 id="faq1_17">
2614 <a id="faqmysqlversions" href="#faq1_17">1.17 Which MySQL versions does phpMyAdmin
2615 support?</a></h4>
2617 <p> In phpMyAdmin 3.0.x, versions starting with MySQL 5.0.1 are
2618 fully supported. phpMyAdmin may connect to your MySQL server
2619 using PHP's classic
2620 <a href="http://php.net/mysql">MySQL extension</a> as well as the
2621 <a href="http://php.net/mysqli">improved MySQL extension (MySQLi)</a> that
2622 is available in php 5.0.<br />
2623 Either way, the developers of both extensions recommend to use the classic
2624 extension for MySQL 4.0 and below and MySQLi for MySQL 4.1 and newer.<br />
2625 When compiling php, we strongly recommend that you manually link the MySQL
2626 extension of your choice to a MySQL client library of at least the same
2627 minor version since the one that is bundled with some PHP distributions is
2628 rather old and might cause problems <a href="#faq1_17a">
2629 (see <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17a)</a>.
2630 If your webserver is running on a windows system, you might want to try
2631 MySQL's
2632 <a href="http://dev.mysql.com/downloads/connector/php/">Connector/PHP</a>
2633 instead of the MySQL / MySQLi extensions that are bundled with the official
2634 php Win32 builds.</p>
2636 <h5 id="faq1_17a">
2637 <a href="#faq1_17a">1.17a I cannot connect to the MySQL server. It always returns the error
2638 message, &quot;Client does not support authentication protocol requested
2639 by server; consider upgrading MySQL client&quot;</a></h5>
2641 <p> You tried to access MySQL with an old MySQL client library. The version of
2642 your MySQL client library can be checked in your phpinfo() output.
2643 In general, it should have at least the same minor version as your server
2644 - as mentioned in <a href="#faq1_17">
2645 <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17</a>.<br /><br />
2647 This problem is generally caused by using MySQL version 4.1 or newer. MySQL
2648 changed the authentication hash and your PHP is trying to use the old method.
2649 The proper solution is to use the <a href="http://www.php.net/mysqli">mysqli extension</a>
2650 with the proper client library to match your MySQL installation. Your
2651 chosen extension is specified in <a href="#cfg_Servers_extension" class="configrule">$cfg['Servers'][$i]['extension']</a>.
2652 More information (and several workarounds) are located in the
2653 <a href="http://dev.mysql.com/doc/mysql/en/old-client.html">MySQL Documentation</a>.
2654 </p>
2656 <h4 id="faq1_18">
2657 <a href="#faq1_18">1.18 I'm running MySQL&nbsp;&lt;=&nbsp;4.0.1 having
2658 <tt>lower_case_table_names</tt> set to 1. If I create a new table with a
2659 capital letter in its name it is changed to lowercase as it should. But
2660 if I try to DROP this table MySQL is unable to find the corresponding
2661 file.</a></h4>
2663 <p> This is a bug of MySQL&nbsp;&lt;=&nbsp;4.0.1. Please upgrade to at least
2664 MySQL&nbsp;4.0.2 or turn off your <tt>lower_case_table_names</tt>
2665 directive.</p>
2667 <h4 id="faq1_19">
2668 <a href="#faq1_19">1.19 I can't run the &quot;display relations&quot; feature because the
2669 script seems not to know the font face I'm using!</a></h4>
2671 <p> The &quot;FPDF&quot; library we're using for this feature requires some
2672 special files to use font faces.<br />
2673 Please refers to the <a href="http://www.fpdf.org/">FPDF manual</a> to build
2674 these files.</p>
2676 <h4 id="faqmysql">
2677 <a href="#faqmysql">1.20 I receive the error &quot;cannot load MySQL extension, please
2678 check PHP Configuration&quot;.</a></h4>
2680 <p> To connect to a MySQL server, PHP needs a set of MySQL functions called
2681 &quot;MySQL extension&quot;. This extension may be part of the PHP
2682 distribution (compiled-in), otherwise it needs to be loaded dynamically. Its
2683 name is probably <i>mysql.so</i> or <i>php_mysql.dll</i>. phpMyAdmin tried
2684 to load the extension but failed.<br /><br />
2686 Usually, the problem is solved by installing a software package called
2687 &quot;PHP-MySQL&quot; or something similar.</p>
2689 <h4 id="faq1_21">
2690 <a href="#faq1_21">1.21 I am running the
2691 <abbr title="Common Gateway Interface">CGI</abbr> version of PHP under Unix,
2692 and I cannot log in using cookie auth.</a></h4>
2694 <p> In <i>php.ini</i>, set <tt>mysql.max_links</tt> higher than 1.</p>
2696 <h4 id="faq1_22">
2697 <a href="#faq1_22">1.22 I don't see the &quot;Location of text file&quot; field,
2698 so I cannot upload.</a></h4>
2700 <p> This is most likely because in <i>php.ini</i>, your <tt>file_uploads</tt>
2701 parameter is not set to &quot;on&quot;.</p>
2703 <h4 id="faq1_23">
2704 <a href="#faq1_23">1.23 I'm running MySQL on a Win32 machine. Each time I create
2705 a new table the table and field names are changed to lowercase!</a></h4>
2707 <p> This happens because the MySQL directive <tt>lower_case_table_names</tt>
2708 defaults to 1 (<tt>ON</tt>) in the Win32 version of MySQL. You can change
2709 this behavior by simply changing the directive to 0 (<tt>OFF</tt>):<br />
2710 Just edit your <tt>my.ini</tt> file that should be located in your Windows
2711 directory and add the following line to the group [mysqld]:</p>
2713 <pre>set-variable = lower_case_table_names=0</pre>
2715 <p> Next, save the file and restart the MySQL service. You can always check the
2716 value of this directive using the query</p>
2718 <pre>SHOW VARIABLES LIKE 'lower_case_table_names';</pre>
2720 <h4 id="faq1_24">
2721 <a href="#faq1_24">1.24 Some characters are being truncated in my queries, or I
2722 get characters randomly added. I am running PHP 4.2.3.</a></h4>
2724 <p> This is a <a href="http://bugs.php.net/bug.php?id=19404">PHP 4.2.3 bug</a>.
2725 </p>
2727 <h4 id="faq1_25">
2728 <a href="#faq1_25">1.25 I am running Apache with mod_gzip-1.3.26.1a on Windows XP,
2729 and I get problems, such as undefined variables when I run a
2730 <abbr title="structured query language">SQL</abbr> query.</a></h4>
2732 <p> A tip from Jose Fandos: put a comment on the following two lines
2733 in httpd.conf, like this:</p>
2735 <pre>
2736 # mod_gzip_item_include file \.php$
2737 # mod_gzip_item_include mime "application/x-httpd-php.*"
2738 </pre>
2740 <p> as this version of mod_gzip on Apache (Windows) has problems handling
2741 PHP scripts. Of course you have to restart Apache.</p>
2743 <h4 id="faq1_26">
2744 <a href="#faq1_26">1.26 I just installed phpMyAdmin in my document root of
2745 <abbr title="Internet Information Services">IIS</abbr> but
2746 I get the error &quot;No input file specified&quot; when trying to
2747 run phpMyAdmin.</a></h4>
2749 <p> This is a permission problem. Right-click on the phpmyadmin folder
2750 and choose properties. Under the tab Security, click on &quot;Add&quot;
2751 and select the user &quot;IUSR_machine&quot; from the list. Now set his
2752 permissions and it should work.</p>
2754 <h4 id="faq1_27">
2755 <a href="#faq1_27">1.27 I get empty page when I want to view huge page (eg.
2756 db_structure.php with plenty of tables).</a></h4>
2758 <p> This is a <a href="http://bugs.php.net/21079">PHP bug</a> that occur when
2759 GZIP output buffering is enabled. If you turn off it (by
2760 <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip'] = false</a>
2761 in <i>config.inc.php</i>), it should work. This bug will be fixed in
2762 PHP&nbsp;5.0.0.</p>
2764 <h4 id="faq1_28">
2765 <a href="#faq1_28">1.28 My MySQL server sometimes refuses queries and returns the
2766 message 'Errorcode: 13'. What does this mean?</a></h4>
2768 <p> This can happen due to a MySQL bug when having database / table names with
2769 upper case characters although <tt>lower_case_table_names</tt> is set to 1.
2770 To fix this, turn off this directive, convert all database and table names
2771 to lower case and turn it on again. Alternatively, there's a bug-fix
2772 available starting with MySQL&nbsp;3.23.56 / 4.0.11-gamma.</p>
2774 <h4 id="faq1_29">
2775 <a href="#faq1_29">1.29 When I create a table or modify a field, I get an error
2776 and the fields are duplicated.</a></h4>
2778 <p> It is possible to configure Apache in such a way that PHP has problems
2779 interpreting .php files.</p>
2781 <p> The problems occur when two different (and conflicting) set of directives
2782 are used:</p>
2784 <pre>
2785 SetOutputFilter PHP
2786 SetInputFilter PHP
2787 </pre>
2789 <p> and</p>
2791 <pre>AddType application/x-httpd-php .php</pre>
2793 <p> In the case we saw, one set of directives was in
2794 <tt>/etc/httpd/conf/httpd.conf</tt>, while
2795 the other set was in <tt>/etc/httpd/conf/addon-modules/php.conf</tt>.<br />
2796 The recommended way is with <tt>AddType</tt>, so just comment out
2797 the first set of lines and restart Apache:</p>
2799 <pre>
2800 #SetOutputFilter PHP
2801 #SetInputFilter PHP
2802 </pre>
2804 <h4 id="faq1_30">
2805 <a href="#faq1_30">1.30 I get the error &quot;navigation.php: Missing hash&quot;.</a></h4>
2807 <p> This problem is known to happen when the server is running Turck MMCache
2808 but upgrading MMCache to version 2.3.21 solves the problem.</p>
2810 <h4 id="faq1_31">
2811 <a href="#faq1_31">1.31 Does phpMyAdmin support php5?</a></h4>
2813 <p> Yes.<br />
2814 However, phpMyAdmin needs to be backwards compatible to php4. This is why
2815 phpMyAdmin disables the <tt>E_STRICT</tt> error_level in
2816 <tt>error_reporting</tt> settings.
2817 </p>
2819 <h4 id="faq1_32">
2820 <a href="#faq1_32">1.32 Can I use <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication with <abbr title="Internet Information Services">IIS</abbr>?</a></h4>
2822 <p> Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in <abbr title="Internet Server Application Programming Interface">ISAPI</abbr>
2823 mode under <abbr title="Internet Information Services">IIS</abbr> 5.1.</p>
2825 <ol><li>In your <tt>php.ini</tt> file, set <tt>cgi.rfc2616_headers = 0</tt></li>
2826 <li>In <tt>Web Site Properties -&gt; File/Directory Security -&gt; Anonymous
2827 Access</tt> dialog box, check the <tt>Anonymous access</tt> checkbox and
2828 uncheck any other checkboxes (i.e. uncheck <tt>Basic authentication</tt>,
2829 <tt>Integrated Windows authentication</tt>, and <tt>Digest</tt> if it's
2830 enabled.) Click <tt>OK</tt>.</li>
2831 <li>In <tt>Custom Errors</tt>, select the range of <tt>401;1</tt> through
2832 <tt>401;5</tt> and click the <tt>Set to Default</tt> button.</li>
2833 </ol>
2835 <h4 id="faq1_33">
2836 <a href="#faq1_33">1.33 Is there a problem with the mysqli extension when running
2837 PHP 5.0.4 on 64-bit systems?</a></h4>
2839 <p> Yes. This problem affects phpMyAdmin (&quot;Call to undefined function
2840 pma_reloadnavigation&quot;), so upgrade your PHP to the next version.</p>
2842 <h4 id="faq1_34">
2843 <a href="#faq1_34">1.34 Can I access directly to database or table pages?</a></h4>
2845 <p> Yes. Out of the box, you can use <abbr title="Uniform Resource Locator">URL</abbr>s like
2846 http://server/phpMyAdmin/index.php?server=X&amp;db=database&amp;table=table&amp;target=script. For <tt>server</tt> you use the server number which refers to
2847 the order of the server paragraph in <tt>config.inc.php</tt>.
2848 Table and script parts are optional. If you want
2849 http://server/phpMyAdmin/database[/table][/script] <abbr title="Uniform Resource Locator">URL</abbr>s, you need to do
2850 some configuration. Following lines apply only for <a
2851 href="http://httpd.apache.org">Apache</a> web server. First make sure,
2852 that you have enabled some features within global configuration. You need
2853 <code>Options FollowSymLinks</code> and <code>AllowOverride
2854 FileInfo</code> enabled for directory where phpMyAdmin is installed and
2855 you need mod_rewrite to be enabled. Then you just need to create following
2856 <code>.htaccess</code> file in root folder of phpMyAdmin installation
2857 (don't forget to change directory name inside of it):</p>
2859 <pre>
2860 RewriteEngine On
2861 RewriteBase /path_to_phpMyAdmin
2862 RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&amp;table=$2&amp;target=$3 [R]
2863 RewriteRule ^([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&amp;target=$2 [R]
2864 RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ index.php?db=$1&amp;table=$2 [R]
2865 RewriteRule ^([a-zA-Z0-9_]+)$ index.php?db=$1 [R]
2866 </pre>
2868 <h4 id="faq1_35">
2869 <a href="#faq1_35">1.35 Can I use <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication with Apache <abbr title="Common Gateway Interface">CGI</abbr>?</a></h4>
2871 <p> Yes. However you need to pass authentication variable to <abbr title="Common Gateway Interface">CGI</abbr> using
2872 following rewrite rule:</p>
2874 <pre>
2875 RewriteEngine On
2876 RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
2877 </pre>
2879 <h4 id="faq1_36">
2880 <a href="#faq1_36">1.36 I get an error &quot;500 Internal Server Error&quot;.</a>
2881 </h4>
2883 There can be many explanations to this and a look at your server's
2884 error log file might give a clue.
2885 </p>
2887 <h4 id="faq1_37">
2888 <a href="#faq1_37">1.37 I run phpMyAdmin on cluster of different machines and
2889 password encryption in cookie auth doesn't work.</a></h4>
2891 <p> If your cluster consist of different architectures, PHP code used for
2892 encryption/decryption won't work correct. This is caused by use of
2893 pack/unpack functions in code. Only solution is to use mcrypt extension
2894 which works fine in this case.</p>
2896 <h4 id="faq1_38">
2897 <a href="#faq1_38">1.38 Can I use phpMyAdmin on a server on which Suhosin is enabled?</a></h4>
2899 <p> Yes but the default configuration values of Suhosin are known to cause
2900 problems with some operations, for example editing a table with many
2901 columns and no primary key. Tuning information is available at
2902 <a href="http://www.hardened-php.net/hphp/troubleshooting.html">
2903 http://www.hardened-php.net/hphp/troubleshooting.html</a>,
2904 although the parameter names have changed (<tt>suhosin</tt> instead
2905 of <tt>hphp</tt>). See also the <a href="#cfg_SuhosinDisableWarning">
2906 <tt>SuhosinDisableWarning</tt> directive</a>.
2907 </p>
2909 <h3 id="faqconfig">Configuration</h3>
2911 <h4 id="faq2_1">
2912 <a href="#faq2_1">2.1 The error message &quot;Warning: Cannot add header information -
2913 headers already sent by ...&quot; is displayed, what's the problem?</a></h4>
2915 <p> Edit your <i>config.inc.php</i> file and ensure there is nothing
2916 (I.E. no blank lines, no spaces, no characters...) neither before the
2917 <tt>&lt;?php</tt> tag at the beginning, neither after the <tt>?&gt;</tt>
2918 tag at the end. We also got a report from a user under IIS, that used
2919 a zipped distribution kit: the file <tt>libraries/Config.class.php</tt>
2920 contained an end-of-line character (hex 0A) at the end; removing this character
2921 cleared his errors.</p>
2923 <h4 id="faq2_2">
2924 <a href="#faq2_2">2.2 phpMyAdmin can't connect to MySQL. What's wrong?</a></h4>
2926 <p> Either there is an error with your PHP setup or your username/password is
2927 wrong. Try to make a small script which uses mysql_connect and see if it
2928 works. If it doesn't, it may be you haven't even compiled MySQL support
2929 into PHP.</p>
2931 <h4 id="faq2_3">
2932 <a href="#faq2_3">2.3 The error message &quot;Warning: MySQL Connection Failed: Can't
2933 connect to local MySQL server through socket '/tmp/mysql.sock'
2934 (111) ...&quot; is displayed. What can I do?</a></h4>
2936 <p> For RedHat users, Harald Legner suggests this on the mailing list:</p>
2938 <p> On my RedHat-Box the socket of MySQL is <i>/var/lib/mysql/mysql.sock</i>.
2939 In your <i>php.ini</i> you will find a line</p>
2941 <pre>mysql.default_socket = /tmp/mysql.sock</pre>
2943 <p> change it to</p>
2945 <pre>mysql.default_socket = /var/lib/mysql/mysql.sock</pre>
2947 <p> Then restart apache and it will work.</p>
2949 <p> Here is a fix suggested by Brad Ummer:</p>
2951 <ul><li>First, you need to determine what socket is being used by MySQL.<br />
2952 To do this, telnet to your server and go to the MySQL bin directory. In
2953 this directory there should be a file named <i>mysqladmin</i>. Type
2954 <tt>./mysqladmin variables</tt>, and this should give you a bunch of
2955 info about your MySQL server, including the socket
2956 (<i>/tmp/mysql.sock</i>, for example).</li>
2957 <li>Then, you need to tell PHP to use this socket.<br /> To do this in
2958 phpMyAdmin, you need to complete the socket information in the
2959 <i>config.inc.php</i>.<br />
2960 For example:
2961 <a href="#cfg_Servers_socket" class="configrule">
2962 $cfg['Servers'][$i]['socket']&nbsp;=&nbsp;'/tmp/mysql.sock';</a>
2963 <br /><br />
2965 Please also make sure that the permissions of this file allow to be readable
2966 by your webserver (i.e. '0755').</li>
2967 </ul>
2969 <p> Have also a look at the
2970 <a href="http://www.mysql.com/doc/C/a/Can_not_connect_to_server.html">
2971 corresponding section of the MySQL documentation</a>.</p>
2973 <h4 id="faq2_4">
2974 <a href="#faq2_4">2.4 Nothing is displayed by my browser when I try to run phpMyAdmin,
2975 what can I do?</a></h4>
2977 <p> Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGZip']</a>
2978 directive to <tt>FALSE</tt> in the phpMyAdmin configuration file. It helps
2979 sometime.<br />
2980 Also have a look at your PHP version number: if it contains &quot;4.0b...&quot;
2981 it means you're running a beta version of PHP. That's not a so good idea,
2982 please upgrade to a plain revision.</p>
2984 <h4 id="faq2_5">
2985 <a href="#faq2_5">2.5 Each time I want to insert or change a record or drop a database
2986 or a table, an error 404 (page not found) is displayed or, with <abbr title="HyperText Transfer Protocol">HTTP</abbr> or
2987 cookie authentication, I'm asked to log in again. What's wrong?</a></h4>
2989 <p> Check the value you set for the
2990 <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a>
2991 directive in the phpMyAdmin configuration file.</p>
2993 <h4 id="faq2_6">
2994 <a href="#faq2_6">2.6 I get an &quot;Access denied for user: 'root@localhost' (Using
2995 password: YES)&quot;-error when trying to access a MySQL-Server on a
2996 host which is port-forwarded for my localhost.</a></h4>
2998 <p> When you are using a port on your localhost, which you redirect via
2999 port-forwarding to another host, MySQL is not resolving the localhost
3000 as expected.<br />
3001 Erik Wasser explains: The solution is: if your host is &quot;localhost&quot;
3002 MySQL (the commandline tool 'mysql' as well) always tries to use the socket
3003 connection for speeding up things. And that doesn't work in this configuration
3004 with port forwarding.<br />
3005 If you enter "127.0.0.1" as hostname, everything is right and MySQL uses the
3006 <abbr title="Transmission Control Protocol">TCP</abbr> connection.</p>
3008 <h4 id="faqthemes"><a href="#faqthemes">2.7 Using and creating themes</a></h4>
3010 <p> Themes are configured with
3011 <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>,
3012 <a href="#cfg_ThemeManager" class="configrule">$cfg['ThemeManager']</a> and
3013 <a href="#cfg_ThemeDefault" class="configrule">$cfg['ThemeDefault']</a>.<br />
3014 <br />
3015 Under <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>, you
3016 should not delete the directory &quot;original&quot; or its underlying
3017 structure, because this is the system theme used by phpMyAdmin.
3018 &quot;original&quot; contains all images and styles, for backwards
3019 compatibility and for all themes that would not include images or css-files.
3020 <br /><br />
3022 If <a href="#cfg_ThemeManager" class="configrule">$cfg['ThemeManager']</a>
3023 is enabled, you can select your favorite theme on the main page. Your
3024 selected theme will be stored in a cookie.<br /><br /></p>
3026 <p> To create a theme:</p>
3028 <ul><li>make a new subdirectory (for example &quot;your_theme_name&quot;) under
3029 <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>
3030 (by default <tt>themes</tt>)</li>
3031 <li>copy the files and directories from &quot;original&quot; to
3032 &quot;your_theme_name&quot;</li>
3033 <li>edit the css-files in &quot;your_theme_name/css&quot;</li>
3034 <li>put your new images in &quot;your_theme_name/img&quot;</li>
3035 <li>edit <tt>layout.inc.php</tt> in &quot;your_theme_name&quot;</li>
3036 <li>edit <tt>info.inc.php</tt> in &quot;your_theme_name&quot; to
3037 contain your chosen theme name, that will be visible in user interface</li>
3038 <li>make a new screenshot of your theme and save it under
3039 &quot;your_theme_name/screen.png&quot;</li>
3040 </ul>
3042 <p> In theme directory there is file <tt>info.inc.php</tt> which contains
3043 theme verbose name, theme generation and theme version. These versions and
3044 generations are enumerated from 1 and do not have any direct dependence on
3045 phpMyAdmin version. Themes within same generation should be backwards
3046 compatible - theme with version 2 should work in phpMyAdmin requiring
3047 version 1. Themes with different generation are incompatible.</p>
3049 <p> If you do not want to use your own symbols and buttons, remove the
3050 directory &quot;img&quot; in &quot;your_theme_name&quot;. phpMyAdmin will
3051 use the default icons and buttons (from the system-theme &quot;original&quot;).
3052 </p>
3054 <h4 id="faqmissingparameters">
3055 <a href="#faqmissingparameters">2.8 I get &quot;Missing parameters&quot; errors,
3056 what can I do?</a></h4>
3058 <p> Here are a few points to check:</p>
3060 <ul><li>In <tt>config.inc.php</tt>, try to leave the
3061 <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a>
3062 directive empty. See also
3063 <a href="#faq4_7"><abbr title="Frequently Asked Questions">FAQ</abbr> 4.7</a>.
3064 </li>
3065 <li>Maybe you have a broken PHP installation or you need to upgrade
3066 your Zend Optimizer. See
3067 <a href="http://bugs.php.net/bug.php?id=31134">
3068 http://bugs.php.net/bug.php?id=31134</a>.
3069 </li>
3070 <li>If you are using Hardened PHP with the ini directive <tt>varfilter.max_request_variables</tt>
3071 set to the default (200) or another low value, you could get this
3072 error if your table has a high number of columns. Adjust this setting
3073 accordingly. (Thanks to Klaus Dorninger for the hint).
3074 </li>
3075 <li>In the <tt>php.ini</tt> directive <tt>arg_separator.input</tt>, a value
3076 of &quot;;&quot; will cause this error. Replace it with &quot;&amp;;&quot;.
3077 </li>
3078 <li>If you are using <a href="http://www.hardened-php.net/">Hardened-PHP</a>,
3079 you might want to increase
3080 <a href="http://www.hardened-php.net/hphp/troubleshooting.html">request limits</a>.
3081 </li>
3082 <li>The directory specified in the <tt>php.ini</tt> directive <tt>session.save_path</tt> does not exist or is read-only.
3083 </li>
3084 </ul>
3086 <h3 id="faqlimitations">Known limitations</h3>
3088 <h4 id="login_bug">
3089 <a href="#login_bug">3.1 When using
3090 <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication, an user
3091 who logged out can not log in again in with the same nick.</a></h4>
3093 <p> This is related to the authentication mechanism (protocol) used by
3094 phpMyAdmin. To bypass this problem: just close all the opened
3095 browser windows and then go back to phpMyAdmin. You should be able to
3096 log in again.</p>
3098 <h4 id="faq3_2">
3099 <a href="#faq3_2">3.2 When dumping a large table in compressed mode, I get a memory
3100 limit error or a time limit error.</a></h4>
3102 <p> Compressed dumps are built in memory and because of this are limited to
3103 php's memory limit. For GZip/BZip2 exports this can be overcome since 2.5.4
3104 using
3105 <a href="#cfg_CompressOnFly" class="configrule">$cfg['CompressOnFly']</a>
3106 (enabled by default). Zip exports can not be handled this way, so if you need
3107 Zip files for larger dump, you have to use another way.</p>
3109 <h4 id="faq3_3">
3110 <a href="#faq3_3">3.3 With InnoDB tables, I lose foreign key relationships when I rename
3111 or alter a table.</a></h4>
3113 <p> This seems to be a InnoDB bug (fixed in MySQL 3.23.50?).</p>
3115 <h4 id="faq3_4">
3116 <a href="#faq3_4">3.4 I am unable to import dumps I created with the mysqldump tool
3117 bundled with the MySQL server distribution.</a></h4>
3119 <p> The problem is that older versions of mysqldump created invalid comments like this:</p>
3121 <pre>
3122 -- MySQL dump 8.22
3124 -- Host: localhost Database: database
3125 ---------------------------------------------------------
3126 -- Server version 3.23.54
3127 </pre>
3129 <p> The invalid part of the code is the horizontal line made of dashes that
3130 appears once in every dump created with mysqldump. If you want to run your
3131 dump you have to turn it into valid MySQL. This means, you have to add a
3132 whitespace after the first two dashes of the line or add a # before it:
3133 <br />
3134 <code>
3135 -- -------------------------------------------------------<br />
3136 </code>
3137 or<br />
3138 <code>
3139 #---------------------------------------------------------
3140 </code>
3141 </p>
3143 <h4 id="faq3_5">
3144 <a href="#faq3_5">3.5 When using nested folders there are some multiple hierarchies
3145 displayed in a wrong manner?!</a> (<a href="#cfg_LeftFrameTableSeparator"
3146 class="configrule">$cfg['LeftFrameTableSeparator']</a>)</h4>
3148 <p> Please note that you should not use the separating string multiple times
3149 without any characters between them, or at the beginning/end of your table
3150 name. If you have to, think about using another TableSeparator or disabling
3151 that feature</p>
3153 <h4 id="faq3_6">
3154 <a href="#faq3_6">3.6 What is currently not supported in phpMyAdmin about InnoDB?</a></h4>
3156 <p> In Relation view, being able to choose a table in another database,
3157 or having more than one index field in the foreign key.<br /><br/>
3158 In Query-by-example (Query), automatic generation of the query
3159 LEFT JOIN from the foreign table.<br /><br/>
3160 </p>
3162 <h4 id="faq3_7">
3163 <a href="#faq3_7">3.7 I have table with many (100+) fields and when I try to browse table
3164 I get series of errors like &quot;Warning: unable to parse url&quot;. How
3165 can this be fixed?</a></h4>
3167 Your table neither have a primary key nor an unique one, so we must use a
3168 long expression to identify this row. This causes problems to parse_url
3169 function. The workaround is to create a primary or unique key.
3170 <br />
3171 </p>
3173 <h4 id="faq3_8">
3174 <a href="#faq3_8">3.8 I cannot use (clickable) HTML-forms in fields where I put
3175 a MIME-Transformation onto!</a></h4>
3177 <p> Due to a surrounding form-container (for multi-row delete checkboxes), no
3178 nested forms can be put inside the table where phpMyAdmin displays the results.
3179 You can, however, use any form inside of a table if keep the parent
3180 form-container with the target to tbl_row_delete.php and just put your own
3181 input-elements inside. If you use a custom submit input field, the form will
3182 submit itself to the displaying page again, where you can validate the
3183 $HTTP_POST_VARS in a transformation.
3185 For a tutorial on how to effectively use transformations, see our
3186 <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a>
3187 on the official phpMyAdmin-homepage.</p>
3189 <h4 id="faq3_9">
3190 <a href="#faq3_9">3.9 I get error messages when using "--sql_mode=ANSI" for the
3191 MySQL server</a></h4>
3193 <p> When MySQL is running in ANSI-compatibility mode, there are some major
3194 differences in how <abbr title="structured query language">SQL</abbr> is
3195 structured (see <a href="http://dev.mysql.com/doc/mysql/en/ANSI_mode.html">
3196 http://dev.mysql.com/doc/mysql/en/ANSI_mode.html</a>). Most important of all,
3197 the quote-character (") is interpreted as an identifier quote character and
3198 not as a string quote character, which makes many internal phpMyAdmin
3199 operations into invalid <abbr title="structured query language">SQL</abbr>
3200 statements. There is no workaround to this behaviour. News to this item will
3201 be posted in Bug report
3202 <a href="https://sf.net/tracker/index.php?func=detail&amp;aid=816858&amp;group_id=23067&amp;atid=377408">#816858</a>
3203 </p>
3205 <h4 id="faq3_10">
3206 <a href="#faq3_10">3.10 Homonyms and no primary key: When the results of a SELECT display
3207 more that one column with the same value
3208 (for example <tt>SELECT lastname from employees where firstname like 'A%'</tt> and two &quot;Smith&quot; values are displayed),
3209 if I click Edit I cannot be sure that I am editing the intended row.</a></h4>
3211 <p> Please make sure that your table has a primary key, so that phpMyAdmin
3212 can use it for the Edit and Delete links.</p>
3214 <h4 id="faq3_11">
3215 <a href="#faq3_11">3.11 The number of records for InnoDB tables is not correct.</a></h4>
3217 <p> phpMyAdmin uses a quick method to get the row count, and this method
3218 only returns an approximate count in the case of InnoDB tables. See
3219 <a href="#cfg_MaxExactCount" class="configrule">$cfg['MaxExactCount']</a> for
3220 a way to modify those results, but
3221 this could have a serious impact on performance.</p>
3223 <h4 id="faq3_12">
3224 <a href="#faq3_12">3.12 What are the phpMyAdmin limitations for MySQL 3?</a></h4>
3226 <p> The number of records in queries containing COUNT and GROUP BY is
3227 not correctly calculated. Also, sorting results of a query like
3228 &quot;SELECT * from table GROUP BY&quot; ... is problematic.</p>
3230 <h4 id="faq3_13">
3231 <a href="#faq3_13">3.13 I get an error when entering <tt>USE</tt> followed by a db name
3232 containing an hyphen.
3233 </a></h4>
3235 The tests I have made with current MySQL 4.1.11 API shows that the
3236 API does not accept this syntax for the USE command. Enclosing the
3237 db name with backquotes works. For further confusion, no backquotes
3238 are needed with command-line mysql.
3239 </p>
3241 <h4 id="faq3_14">
3242 <a href="#faq3_14">3.14 I am not able to browse a table when I don't have the right to SELECT one of the columns.</a></h4>
3244 This has been a known limitation of phpMyAdmin since the beginning and
3245 it's not likely to be solved in the future.
3246 </p>
3248 <h3 id="faqmultiuser"><abbr title="Internet service provider">ISP</abbr>s, multi-user installations</h3>
3250 <h4 id="faq4_1">
3251 <a href="#faq4_1">4.1 I'm an <abbr title="Internet service provider">ISP</abbr>. Can I setup one central copy of phpMyAdmin or do I
3252 need to install it for each customer.
3253 </a></h4>
3255 Since version 2.0.3, you can setup a central copy of phpMyAdmin for all
3256 your users. The development of this feature was kindly sponsored by
3257 NetCologne GmbH.
3258 This requires a properly setup MySQL user management and phpMyAdmin
3259 <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication. See the install section on
3260 &quot;Using <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication&quot;.
3261 </p>
3263 <h4 id="faq4_2">
3264 <a href="#faq4_2">4.2 What's the preferred way of making phpMyAdmin secure against evil
3265 access.
3266 </a></h4>
3268 This depends on your system.<br />
3269 If you're running a server which cannot be accessed by other people, it's
3270 sufficient to use the directory protection bundled with your webserver
3271 (with Apache you can use <i>.htaccess</i> files, for example).<br />
3272 If other people have telnet access to your server, you should use
3273 phpMyAdmin's <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication features.
3274 <br /><br />
3275 Suggestions:
3276 </p>
3277 <ul>
3278 <li>
3279 Your <i>config.inc.php</i> file should be <tt>chmod 660</tt>.
3280 </li>
3281 <li>
3282 All your phpMyAdmin files should be chown -R phpmy.apache, where phpmy
3283 is a user whose password is only known to you, and apache is the
3284 group under which Apache runs.
3285 </li>
3286 <li>
3287 You should use PHP safe mode, to protect from other users that try
3288 to include your <i>config.inc.php</i> in their scripts.
3289 </li>
3290 </ul>
3292 <h4 id="faq4_3">
3293 <a href="#faq4_3">4.3 I get errors about not being able to include a file in
3294 <i>/lang</i> or in <i>/libraries</i>.
3295 </a></h4>
3297 Check <i>php.ini</i>, or ask your sysadmin to check it. The
3298 <tt>include_path</tt> must contain &quot;.&quot; somewhere in it, and
3299 <tt>open_basedir</tt>, if used, must contain &quot;.&quot; and
3300 &quot;./lang&quot; to allow normal operation of phpMyAdmin.
3301 </p>
3303 <h4 id="faq4_4">
3304 <a href="#faq4_4">4.4 phpMyAdmin always gives &quot;Access denied&quot; when using <abbr title="HyperText Transfer Protocol">HTTP</abbr>
3305 authentication.
3306 </a></h4>
3308 <p> This could happen for several reasons:</p>
3310 <ul><li><a href="#cfg_Servers_controluser" class="configrule">$cfg['Servers'][$i]['controluser']</a>
3311 and/or
3312 <a href="#cfg_Servers_controlpass" class="configrule">$cfg['Servers'][$i]['controlpass']</a>
3313 are wrong.</li>
3314 <li>The username/password you specify in the login dialog are invalid.</li>
3315 <li>You have already setup a security mechanism for the
3316 phpMyAdmin-directory, eg. a .htaccess file. This would interfere with
3317 phpMyAdmin's authentication, so remove it.</li>
3318 </ul>
3320 <h4 id="faq4_5">
3321 <a href="#faq4_5">4.5 Is it possible to let users create their own databases?</a></h4>
3323 <p> Starting with 2.2.5, in the user management page, you can enter a wildcard
3324 database name for a user (for example &quot;joe%&quot;),
3325 and put the privileges you want. For example,
3326 adding <tt>SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER</tt>
3327 would let a user create/manage his/her database(s).</p>
3329 <h4 id="faq4_6">
3330 <a href="#faq4_6">4.6 How can I use the Host-based authentication additions?</a></h4>
3332 <p> If you have existing rules from an old .htaccess file, you can take them
3333 and add a username between the <tt>'deny'</tt>/<tt>'allow'</tt> and
3334 <tt>'from'</tt> strings. Using the username wildcard of <tt>'%'</tt> would
3335 be a major benefit here if your installation is suited to using it. Then
3336 you can just add those updated lines into the
3337 <a href="#cfg_Servers_AllowDeny_rules" class="configrule">
3338 $cfg['Servers'][$i]['AllowDeny']['rules']</a> array.</p>
3340 <p> If you want a pre-made sample, you can try this fragment. It stops the
3341 'root' user from logging in from any networks other than the private
3342 network <abbr title="Internet Protocol">IP</abbr> blocks.</p>
3344 <pre>
3345 //block root from logging in except from the private networks
3346 $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow';
3347 $cfg['Servers'][$i]['AllowDeny']['rules'] = array(
3348 'deny root from all',
3349 'allow root from localhost',
3350 'allow root from 10.0.0.0/8',
3351 'allow root from 192.168.0.0/16',
3352 'allow root from 172.16.0.0/12',
3354 </pre>
3356 <h4 id="faq4_7">
3357 <a href="#faq4_7">4.7 Authentication window is displayed more than once, why?</a></h4>
3359 <p> This happens if you are using a <abbr title="Uniform Resource Locator">URL</abbr> to start phpMyAdmin which is
3360 different than the one set in your
3361 <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a>.
3362 For example, a missing &quot;www&quot;, or entering with an <abbr title="Internet Protocol">IP</abbr> address
3363 while a domain name is defined in the config file.</p>
3365 <h4 id="faq4_8">
3366 <a href="#faq4_8">4.8 Which parameters can I use in the URL that starts phpMyAdmin?</a></h4>
3368 <p>When starting phpMyAdmin, you can use the <tt>db</tt>, <tt>pma_username</tt>, <tt>pma_password</tt> and <tt>server</tt> parameters. This last one can contain either the numeric host index (from <tt>$i</tt> of the configuration file) or one of the host names present in the configuration file. Using <tt>pma_username</tt> and <tt>pma_password</tt> has been tested along with the usage of 'cookie' <tt>auth_type</tt>.</p>
3370 <h3 id="faqbrowsers">Browsers or client <abbr title="operating system">OS</abbr></h3>
3372 <h4 id="faq5_1">
3373 <a href="#faq5_1">5.1 I get an out of memory error, and my controls are non-functional,
3374 when trying to create a table with more than 14 fields.
3375 </a></h4>
3377 We could reproduce this problem only under Win98/98SE. Testing under
3378 WinNT4 or Win2K, we could easily create more than 60 fields.
3379 <br />
3380 A workaround is to create a smaller number of fields, then come back to
3381 your table properties and add the other fields.
3382 </p>
3384 <h4 id="faq5_2">
3385 <a href="#faq5_2">5.2 With Xitami 2.5b4, phpMyAdmin won't process form fields.</a></h4>
3387 This is not a phpMyAdmin problem but a Xitami known bug: you'll face it
3388 with each script/website that use forms.<br />
3389 Upgrade or downgrade your Xitami server.
3390 </p>
3392 <h4 id="faq5_3">
3393 <a href="#faq5_3">5.3 I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2).</a></h4>
3395 With Konqueror 2.1.1: plain dumps, zip and GZip dumps work ok, except that
3396 the proposed file name for the dump is always 'tbl_dump.php'. Bzip2 dumps
3397 don't seem to work.<br />
3399 With Konqueror 2.2.1: plain dumps work; zip dumps are placed into
3400 the user's temporary directory, so they must be moved before closing
3401 Konqueror, or else they disappear. GZip dumps give an error message.<br />
3403 Testing needs to be done for Konqueror 2.2.2.<br />
3404 </p>
3406 <h4 id="faq5_4">
3407 <a href="#faq5_4">5.4 I can't use the cookie authentication mode because Internet
3408 Explorer never stores the cookies.
3409 </a></h4>
3411 MS Internet Explorer seems to be really buggy about cookies, at least till
3412 version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1 bug
3413 in this area!
3414 <br />
3415 Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may
3416 work!
3417 </p>
3419 <h4 id="faq5_5">
3420 <a href="#faq5_5">5.5 In Internet Explorer 5.0, I get JavaScript errors when browsing my
3421 rows.
3422 </a></h4>
3424 Upgrade to at least Internet Explorer 5.5 SP2.<br />
3425 </p>
3427 <h4 id="faq5_6">
3428 <a href="#faq5_6">5.6 In Internet Explorer 5.0, 5.5 or 6.0, I get an error (like "Page not found")
3429 when trying to modify a row in a table with many fields, or with a text field
3430 </a></h4>
3432 Your table neither have a primary key nor an unique one, so we must use a
3433 long <abbr title="Uniform Resource Locator">URL</abbr> to identify this row. There is a limit on the length of the <abbr title="Uniform Resource Locator">URL</abbr> in
3434 those browsers, and this not happen in Netscape, for example. The
3435 workaround is to create a primary or unique key, or use another browser.
3436 <br />
3437 </p>
3439 <h4 id="faq5_7">
3440 <a href="#faq5_7">5.7 I refresh (reload) my browser, and come back to the welcome
3441 page.
3442 </a></h4>
3444 Some browsers support right-clicking into the frame you want to refresh,
3445 just do this in the right frame.<br />
3446 </p>
3448 <h4 id="faq5_8">
3449 <a href="#faq5_8">5.8 With Mozilla 0.9.7 I have problems sending a query modified in the
3450 query box.
3451 </a></h4>
3453 Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future
3454 Mozilla versions.<br />
3455 </p>
3457 <h4 id="faq5_9">
3458 <a href="#faq5_9">5.9 With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a
3459 whitespace in the <abbr title="structured query language">SQL</abbr>-Query edit area: the page scrolls down.
3460 </a></h4>
3462 This is a Mozilla bug (see bug #26882 at
3463 <a href="http://bugzilla.mozilla.org/">BugZilla</a>).<br />
3464 </p>
3466 <h4 id="faq5_10">
3467 <a href="#faq5_10">5.10 With Netscape 4.75 I get empty rows between each row of data in a
3468 <abbr title="comma separated values">CSV</abbr> exported file.
3469 </a></h4>
3471 This is a known Netscape 4.75 bug: it adds some line feeds when exporting
3472 data in octet-stream mode. Since we can't detect the specific Netscape
3473 version, we cannot workaround this bug.
3474 </p>
3476 <h4 id="faq5_11">
3477 <a href="#faq5_11">5.11 Extended-ASCII characters like German umlauts are displayed
3478 wrong.</a></h4>
3480 <p> Please ensure that you have set your browser's character set to the one of the
3481 language file you have selected on phpMyAdmin's start page.
3482 Alternatively, you can try the auto detection mode that is supported by the
3483 recent versions of the most browsers.</p>
3485 <h4 id="faq5_12">
3486 <a href="#faq5_12">5.12 <acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X: Safari browser changes special characters to
3487 &quot;?&quot;.</a></h4>
3489 <p> This issue has been reported by a <abbr title="operating system">OS</abbr> X user, who adds that Chimera,
3490 Netscape and Mozilla do not have this problem.</p>
3492 <h4 id="faq5_13">
3493 <a href="#faq5_13">5.13 With Internet Explorer 5.5 or 6, and <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication type,
3494 I cannot manage two servers: I log in to the first one, then the other one,
3495 but if I switch back to the first, I have to log in on each operation.</a></h4>
3497 <p> This is a bug in Internet Explorer, other browsers do not behave this way.</p>
3499 <h4 id="faq5_14">
3500 <a href="#faq5_14">5.14 Using Opera6, I can manage to get to the authentication,
3501 but nothing happens after that, only a blank screen.</a></h4>
3503 <p> Please upgrade to Opera7 at least.</p>
3505 <h4 id="faq5_15">
3506 <a href="#faq5_15">5.15 I have display problems with Safari.</a></h4>
3508 <p> Please upgrade to at least version 1.2.3.</p>
3510 <h4 id="faq5_16">
3511 <a href="#faq5_16">5.16 With Internet Explorer, I get &quot;Access is denied&quot;
3512 Javascript errors. Or I cannot make phpMyAdmin work under Windows.</a></h4>
3514 <p> Please check the following points:</p>
3515 <ul><li>Maybe you have defined your <tt>PmaAbsoluteUri</tt> setting
3516 in <tt>config.inc.php</tt> to an <abbr title="Internet Protocol">IP</abbr>
3517 address and you are starting
3518 phpMyAdmin with a <abbr title="Uniform Resource Locator">URL</abbr>
3519 containing a domain name, or the reverse situation.</li>
3520 <li>Security settings in IE and/or Microsoft Security Center are
3521 too high, thus blocking scripts execution.</li>
3522 <li>The Windows Firewall is blocking Apache and MySQL. You must
3523 allow <abbr title="HyperText Transfer Protocol">HTTP</abbr> ports
3524 (80 or 443) and MySQL port (usually 3306)
3525 in the &quot;in&quot; and &quot;out&quot; directions.</li>
3526 </ul>
3528 <h4 id="faq5_17">
3529 <a href="#faq5_17">5.17 With Firefox, I cannot delete rows of data or drop a database.</a></h4>
3530 <p> Many users have confirmed that the Tabbrowser Extensions plugin they
3531 installed in their Firefox is causing the problem.</p>
3533 <h3 id="faqusing">Using phpMyAdmin</h3>
3535 <h4 id="faq6_1">
3536 <a href="#faq6_1">6.1 I can't insert new rows into a table / I can't create a table
3537 - MySQL brings up a <abbr title="structured query language">SQL</abbr>-error.
3538 </a></h4>
3540 Examine the <abbr title="structured query language">SQL</abbr> error with care. Often the problem is caused by
3541 specifying a wrong field-type.<br />
3542 Common errors include:
3543 </p>
3544 <ul>
3545 <li>Using <tt>VARCHAR</tt> without a size argument</li>
3546 <li>Using <tt>TEXT</tt> or <tt>BLOB</tt> with a size argument</li>
3547 </ul>
3549 Also, look at the syntax chapter in the MySQL manual to confirm that your
3550 syntax is correct.
3551 </p>
3553 <h4 id="faq6_2">
3554 <a href="#faq6_2">6.2 When I create a table, I set an index for two fields and
3555 phpMyAdmin generates only one index with those two fields.
3556 </a></h4>
3558 This is the way to create a multi-fields
3559 index. If you want two indexes, create the first one when creating the
3560 table, save, then display the table properties and click the Index link to
3561 create the other index.
3562 </p>
3564 <h4 id="faq6_3">
3565 <a href="#faq6_3">6.3 How can I insert a null value into my table?</a></h4>
3567 Since version 2.2.3, you have a checkbox for each field that can be null.
3568 Before 2.2.3, you had to enter &quot;null&quot;, without the quotes, as the
3569 field's value. Since version 2.5.5, you have to use the checkbox to get
3570 a real NULL value, so if you enter &quot;NULL&quot; this means you want
3571 a literal NULL in the field, and not a NULL value (this works in PHP4).
3572 </p>
3574 <h4 id="faq6_4">
3575 <a href="#faq6_4">6.4 How can I backup my database or table?</a></h4>
3577 <p> Click on a database or table name in the left frame, the properties will be
3578 displayed. Then on the menu, click &quot;Export&quot;, you can dump
3579 the structure, the data, or both. This will generate standard <abbr title="structured query language">SQL</abbr>
3580 statements that can be used to recreate your database/table.
3581 <br /><br />
3582 You will need to choose &quot;Save as file&quot;, so that phpMyAdmin can
3583 transmit the resulting dump to your station. Depending on your PHP
3584 configuration, you will see options to compress the dump. See also the
3585 <a href="#cfg_ExecTimeLimit" class="configrule">$cfg['ExecTimeLimit']</a>
3586 configuration variable.<br /><br />
3588 For additional help on this subject, look for the word &quot;dump&quot; in
3589 this document.</p>
3591 <h4 id="faq6_5">
3592 <a href="#faq6_5">6.5 How can I restore (upload) my database or table using a dump?
3593 How can I run a &quot;.sql&quot; file?
3594 </a></h4>
3596 <p> Click on a database name in the left frame, the properties will be
3597 displayed. Select &quot;Import&quot; from the list
3598 of tabs in the right&#8211;hand frame (or &quot;<abbr title="structured query language">SQL</abbr>&quot; if your phpMyAdmin
3599 version is previous to 2.7.0). In the &quot;Location of the text file&quot; section, type in
3600 the path to your dump filename, or use the Browse button. Then click Go.
3601 <br /><br />
3602 With version 2.7.0, the import engine has been re&#8211;written, if possible it is suggested
3603 that you upgrade to take advantage of the new features.
3604 <br /><br />
3605 For additional help on this subject, look for the word &quot;upload&quot;
3606 in this document.
3607 </p>
3609 <h4 id="faq6_6">
3610 <a href="#faq6_6">6.6 How can I use the relation table in Query-by-example?</a></h4>
3612 <p> Here is an example with the tables persons, towns and countries, all
3613 located in the database mydb. If you don't have a <tt>pma_relation</tt>
3614 table, create it as explained in the configuration section. Then create the
3615 example tables:</p>
3617 <pre>
3618 CREATE TABLE REL_countries (
3619 country_code char(1) NOT NULL default '',
3620 description varchar(10) NOT NULL default '',
3621 PRIMARY KEY (country_code)
3622 ) TYPE=MyISAM;
3624 INSERT INTO REL_countries VALUES ('C', 'Canada');
3626 CREATE TABLE REL_persons (
3627 id tinyint(4) NOT NULL auto_increment,
3628 person_name varchar(32) NOT NULL default '',
3629 town_code varchar(5) default '0',
3630 country_code char(1) NOT NULL default '',
3631 PRIMARY KEY (id)
3632 ) TYPE=MyISAM;
3634 INSERT INTO REL_persons VALUES (11, 'Marc', 'S', '');
3635 INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C');
3637 CREATE TABLE REL_towns (
3638 town_code varchar(5) NOT NULL default '0',
3639 description varchar(30) NOT NULL default '',
3640 PRIMARY KEY (town_code)
3641 ) TYPE=MyISAM;
3643 INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
3644 INSERT INTO REL_towns VALUES ('M', 'Montr&eacute;al');
3645 </pre>
3647 <p> To setup appropriate links and display information:</p>
3649 <ul><li>on table &quot;REL_persons&quot; click Structure, then Relation view</li>
3650 <li>in Links, for &quot;town_code&quot; choose &quot;REL_towns-&gt;code&quot;</li>
3651 <li>in Links, for &quot;country_code&quot; choose &quot;REL_countries-&gt;country_code&quot;</li>
3652 <li>on table &quot;REL_towns&quot; click Structure, then Relation view</li>
3653 <li>in &quot;Choose field to display&quot;, choose &quot;description&quot;</li>
3654 <li>repeat the two previous steps for table &quot;REL_countries&quot;</li>
3655 </ul>
3657 <p> Then test like this:</p>
3659 <ul><li>Click on your db name in the left frame</li>
3660 <li>Choose &quot;Query&quot;</li>
3661 <li>Use tables: persons, towns, countries</li>
3662 <li>Click &quot;Update query&quot;</li>
3663 <li>In the fields row, choose persons.person_name and click the
3664 &quot;Show&quot; tickbox </li>
3665 <li>Do the same for towns.description and countries.descriptions in the
3666 other 2 columns</li>
3667 <li>Click &quot;Update query&quot; and you will see in the query box that
3668 the correct joins have been generated</li>
3669 <li>Click &quot;Submit query&quot;</li>
3670 </ul>
3672 <h4 id="faqdisplay">
3673 <a href="#faqdisplay">6.7 How can I use the &quot;display field&quot; feature?</a></h4>
3675 Starting from the previous example, create the pma_table_info as explained
3676 in the configuration section, then browse your persons table,
3677 and move the mouse over a town code or country code.
3678 <br /><br />
3679 See also <a href="#faq6_21"><abbr title="Frequently Asked Questions">FAQ</abbr> 6.21</a> for an additional feature that &quot;display field&quot;
3680 enables: drop-down list of possible values.
3681 </p>
3683 <h4 id="faqpdf">
3684 <a href="#faqpdf">6.8 How can I produce a <abbr title="Portable Document Format">PDF</abbr> schema of my database?</a></h4>
3686 First the configuration variables &quot;relation&quot;,
3687 &quot;table_coords&quot; and &quot;pdf_pages&quot; have to be filled in.
3688 <br /><br />
3689 Then you need to think about your schema layout. Which tables will go on
3690 which pages?
3691 </p>
3692 <ul>
3693 <li>Select your database in the left frame.</li>
3694 <li>Choose &quot;Operations&quot; in the navigation bar at the top.</li>
3695 <li>Choose &quot;Edit <abbr title="Portable Document Format">PDF</abbr>
3696 Pages&quot; near the bottom of the page.</li>
3697 <li>Enter a name for the first <abbr title="Portable Document Format">PDF</abbr>
3698 page and click Go. If you like, you
3699 can use the &quot;automatic layout,&quot; which will put all your
3700 linked tables onto the new page.</li>
3701 <li>Select the name of the new page (making sure the Edit radio button
3702 is selected) and click Go.</li>
3703 <li>Select a table from the list, enter its coordinates and click Save.<br />
3704 Coordinates are relative; your diagram will
3705 be automatically scaled to fit the page. When initially placing tables
3706 on the page, just pick any coordinates -- say, 50x50. After clicking
3707 Save, you can then use the <a href="#wysiwyg">graphical editor</a> to
3708 position the element correctly.</li>
3709 <li>When you'd like to look at your <abbr title="Portable Document Format">PDF</abbr>,
3710 first be sure to click the Save
3711 button beneath the list of tables and coordinates, to save any changes
3712 you made there. Then scroll all the way down, select the
3713 <abbr title="Portable Document Format">PDF</abbr> options
3714 you want, and click Go.</li>
3715 <li>Internet Explorer for Windows may suggest an incorrect filename when
3716 you try to save a generated <abbr title="Portable Document Format">PDF</abbr>.
3717 When saving a generated <abbr title="Portable Document Format">PDF</abbr>, be
3718 sure that the filename ends in &quot;.pdf&quot;, for example
3719 &quot;schema.pdf&quot;. Browsers on other operating systems, and other
3720 browsers on Windows, do not have this problem.</li>
3721 </ul>
3723 <h4 id="faq6_9">
3724 <a href="#faq6_9">6.9 phpMyAdmin is changing the type of one of my
3725 columns!</a></h4>
3727 <p> No, it's MySQL that is doing
3728 <a href="http://www.mysql.com/doc/S/i/Silent_column_changes.html">silent
3729 column type changing</a>.</p>
3731 <h4 id="underscore">
3732 <a href="#underscore">6.10 When creating a privilege, what happens with
3733 underscores in the database name?</a></h4>
3735 <p> If you do not put a backslash before the underscore, this is a wildcard
3736 grant, and the underscore means &quot;any character&quot;. So, if the
3737 database name is &quot;john_db&quot;, the user would get rights to john1db,
3738 john2db ...<br /><br />
3740 If you put a backslash before the underscore, it means that the database
3741 name will have a real underscore.</p>
3743 <h4 id="faq6_11">
3744 <a href="#faq6_11">6.11 What is the curious symbol &oslash; in the
3745 statistics pages?</a></h4>
3747 <p> It means &quot;average&quot;.</p>
3749 <h4 id="faqexport">
3750 <a href="#faqexport">6.12 I want to understand some Export options.</a></h4>
3752 <p><b>Structure:</b></p>
3754 <ul><li>&quot;Add DROP TABLE&quot; will add a line telling MySQL to
3755 <a href="http://dev.mysql.com/doc/mysql/en/drop-table.html">drop the table</a>,
3756 if it already exists during the import. It does NOT drop the table after
3757 your export, it only affects the import file.</li>
3758 <li>&quot;If Not Exists&quot; will only create the table if it doesn't exist.
3759 Otherwise, you may get an error if the table name exists but has a
3760 different structure.</li>
3761 <li>&quot;Add AUTO_INCREMENT value&quot; ensures that AUTO_INCREMENT value
3762 (if any) will be included in backup.</li>
3763 <li>&quot;Enclose table and field names with backquotes&quot; ensures that
3764 field and table names formed with special characters are protected.</li>
3765 <li>&quot;Add into comments&quot; includes column comments, relations, and MIME
3766 types set in the pmadb in the dump as
3767 <abbr title="structured query language">SQL</abbr> comments (<i>/* xxx */</i>).
3768 </li>
3769 </ul>
3771 <p><b>Data:</b></p>
3773 <ul><li>&quot;Complete inserts&quot; adds the column names on every INSERT
3774 command, for better documentation (but resulting file is bigger).</li>
3775 <li>&quot;Extended inserts&quot; provides a shorter dump file by using only
3776 once the INSERT verb and the table name.</li>
3777 <li>&quot;Delayed inserts&quot; are best explained in the
3778 <a href="http://dev.mysql.com/doc/mysql/en/insert-delayed.html">MySQL manual</a>.
3779 </li>
3780 <li>&quot;Ignore inserts&quot; treats errors as a warning instead. Again,
3781 more info is provided in the
3782 <a href="http://dev.mysql.com/doc/mysql/en/insert.html">MySQL manual</a>,
3783 but basically with this selected, invalid values are adjusted and
3784 inserted rather than causing the entire statement to fail.</li>
3785 </ul>
3787 <h4 id="faq6_13">
3788 <a href="#faq6_13">6.13 I would like to create a database with a dot
3789 in its name.</a></h4>
3791 <p> This is a bad idea, because in MySQL the syntax &quot;database.table&quot;
3792 is the normal way to reference a database and table name. Worse, MySQL
3793 will usually let you create a database with a dot, but then you cannot
3794 work with it, nor delete it.</p>
3796 <h4 id="faqsqlvalidator">
3797 <a href="#faqsqlvalidator">6.14 How do I set up the
3798 <abbr title="structured query language">SQL</abbr> Validator?</a></h4>
3800 <p> To use it, you need a very recent version of PHP, 4.3.0 recommended, with
3801 <abbr title="Extensible Markup Language">XML</abbr>,
3802 <abbr title="Perl Compatible Regular Expressions">PCRE</abbr> and
3803 <abbr title="PHP Extension and Application Repository">PEAR</abbr> support.
3804 On your system command line, run <tt>"pear install Net_Socket Net_URL
3805 HTTP_Request Mail_Mime Net_DIME SOAP"</tt> to get the necessary
3806 <abbr title="PHP Extension and Application Repository">PEAR</abbr> modules
3807 for usage.<br />
3808 On a more recent pear version, I had problems with the state of Net_DIME
3809 being beta, so this single command
3810 <tt>"pear -d preferred_state=beta install -a SOAP"</tt> installed all the
3811 needed modules.<br />
3812 If you use the Validator, you should be aware that any
3813 <abbr title="structured query language">SQL</abbr> statement you
3814 submit will be stored anonymously (database/table/column names,
3815 strings, numbers replaced with generic values). The Mimer
3816 <abbr title="structured query language">SQL</abbr>
3817 Validator itself, is &copy; 2001 Upright Database Technology.
3818 We utilize it as free SOAP service.</p>
3820 <h4 id="faq6_15">
3821 <a href="#faq6_15">6.15 I want to add a BLOB field and put an index on
3822 it, but MySQL says &quot;BLOB column '...' used in key specification without
3823 a key length&quot;.</a></h4>
3825 <p> The right way to do this, is to create the field without any indexes,
3826 then display the table structure and use the &quot;Create an index&quot;
3827 dialog. On this page, you will be able to choose your BLOB field, and
3828 set a size to the index, which is the condition to create an index on
3829 a BLOB field.</p>
3831 <h4 id="faq6_16">
3832 <a href="#faq6_16">6.16 How can I simply move in page with plenty
3833 editing fields?</a></h4>
3835 <p> You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most pages
3836 with many editing fields (table structure changes, row editing, etc.)
3837 (must be enabled in configuration - see.
3838 <a href="#CtrlArrowsMoving" class="configrule">$cfg['CtrlArrowsMoving']</a>).
3839 You can also have a look at the directive
3840 <a href="#DefaultPropDisplay" class="configrule">$cfg['DefaultPropDisplay']</a>
3841 ('vertical') and see if this eases up editing for you.</p>
3843 <h4 id="faq6_17">
3844 <a href="#faq6_17">6.17 Transformations: I can't enter my own mimetype!
3845 WTF is this feature then useful for?</a></h4>
3847 <p> Slow down :). Defining mimetypes is of no use, if you can't put transformations
3848 on them. Otherwise you could just put a comment on the field. Because entering
3849 your own mimetype will cause serious syntax checking issues and validation,
3850 this introduces a high-risk false-user-input situation. Instead you have to
3851 initialize mimetypes using functions or empty mimetype definitions.<br />
3852 Plus, you have a whole overview of available mimetypes. Who knows all those
3853 mimetypes by heart so he/she can enter it at will?</p>
3855 <h4 id="faqbookmark">
3856 <a href="#faqbookmark">6.18 Bookmarks: Where can I store bookmarks? Why
3857 can't I see any bookmarks below the query box? What is this variable for?
3858 </a></h4>
3860 <p> Any query you have executed can be stored as a bookmark on the page where the
3861 results are displayed. You will find a button labeled 'Bookmark this query'
3862 just at the end of the page.<br />
3863 As soon as you have stored a bookmark, it is related to the database you run
3864 the query on. You can now access a bookmark dropdown on each page, the query
3865 box appears on for that database.<br /><br />
3867 Since phpMyAdmin 2.5.0 you are also able to store variables for the bookmarks.
3868 Just use the string <b>/*[VARIABLE]*/</b> anywhere in your query. Everything
3869 which is put into the <i>value</i> input box on the query box page will
3870 replace the string &quot;/*[VARIABLE]*/&quot; in your stored query. Just be
3871 aware of that you HAVE to create a valid query, otherwise your query won't be
3872 even able to be stored in the database.<br />
3873 Also remember, that everything else inside the <b>/*[VARIABLE]*/</b> string
3874 for your query will remain the way it is, but will be stripped of the /**/
3875 chars. So you can use:<br /><br />
3877 <code>/*, [VARIABLE] AS myname */</code><br /><br />
3879 which will be expanded to<br /><br />
3881 <code>, VARIABLE as myname</code><br /><br />
3883 in your query, where VARIABLE is the string you entered in the input box. If
3884 an empty string is provided, no replacements are made.<br /><br />
3886 A more complex example. Say you have stored this query:<br /><br />
3887 <code>SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE]%' */</code>
3888 <br /><br />
3890 Say, you now enter &quot;phpMyAdmin&quot; as the variable for the stored query,
3891 the full query will be:<br /><br />
3893 <code>SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%'</code>
3894 <br /><br />
3896 You can use multiple occurrences of <b>/*[VARIABLE]*/</b> in a single query.<br />
3897 <b>NOTE THE ABSENCE OF SPACES</b> inside the &quot;/**/&quot; construct. Any
3898 spaces inserted there
3899 will be later also inserted as spaces in your query and may lead to unexpected
3900 results especially when
3901 using the variable expansion inside of a &quot;LIKE ''&quot; expression.<br />
3902 Your initial query which is going to be stored as a bookmark has to yield at
3903 least one result row so
3904 you can store the bookmark. You may have that to work around using well
3905 positioned &quot;/**/&quot; comments.</p>
3907 <h4 id="faq6_19">
3908 <a href="#faq6_19">6.19 How can I create simple L<sup>A</sup>T<sub><big>E</big></sub>X document to
3909 include exported table?</a></h4>
3911 <p> You can simply include table in your L<sup>A</sup>T<sub><big>E</big></sub>X documents, minimal sample
3912 document should look like following one (assuming you have table
3913 exported in file <code>table.tex</code>):</p>
3915 <pre>
3916 \documentclass{article} % or any class you want
3917 \usepackage{longtable} % for displaying table
3918 \begin{document} % start of document
3919 \include{table} % including exported table
3920 \end{document} % end of document
3921 </pre>
3923 <h4 id="faq6_20">
3924 <a href="#faq6_20">6.20 In MySQL 4, I see a lot of databases which are not mine, and cannot
3925 access them.
3926 </a></h4>
3928 <p> Upgrading to MySQL 4 usually gives users those global privileges: CREATE
3929 TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also
3930 enable users to see all the database names.
3931 See this <a href="http://bugs.mysql.com/179">bug report</a>.<br /><br />
3933 So if your users do not need those privileges, you can remove them and their
3934 databases list will shorten.</p>
3936 <h4 id="faq6_21">
3937 <a href="#faq6_21">6.21 In edit/insert mode, how can I see a list of
3938 possible values for a field, based on some foreign table?</a></h4>
3940 <p> You have to setup appropriate links between the tables, and also
3941 setup the &quot;display field&quot; in the foreign table. See
3942 <a href="#faq6_6"><abbr title="Frequently Asked Questions">FAQ</abbr>
3943 6.6</a> for an example. Then, if there are 100 values or less in the
3944 foreign table, a drop-down list of values will be available.
3945 You will see two lists of values, the first list containing the key
3946 and the display field, the second list containing the display field
3947 and the key. The reason for this is to be able to type the first
3948 letter of either the key or the display field.<br /><br />
3950 For 100 values or more, a distinct window will appear, to browse foreign
3951 key values and choose one. To change the default limit of 100, see
3952 <tt><a href="#cfg_ForeignKeyMaxLimit" class="configrule">$cfg['ForeignKeyMaxLimit']</a></tt>.</p>
3954 <h4 id="faq6_22">
3955 <a href="#faq6_22">6.22 Bookmarks: Can I execute a default bookmark
3956 automatically when entering Browse mode for a table?</a></h4>
3958 <p> Yes. If a bookmark has the same label as a table name, it will be executed.
3959 </p>
3961 <h4 id="faq6_23">
3962 <a href="#faq6_23">6.23 Export: I heard phpMyAdmin can export Microsoft
3963 Excel files, how can I enable that?</a></h4>
3965 <p> Current version does support direct export to Microsoft Excel and Word
3966 versions 2000 and newer. If you need export older versions, you can use
3967 <abbr title="comma separated values">CSV</abbr> suitable for Microsoft Excel,
3968 which works out of the box or you can
3969 try native <b>experimental</b> MS Excel exporter. <b>This export has
3970 several problems, most important are limitation of cell content to 255
3971 chars and no support for charsets, so think carefully whether you want to
3972 enable this.</b>. For enabling this you need to set
3973 <a href="#cfg_TempDir" class="configrule">$cfg['TempDir']</a> to
3974 place where web server user can write (for example <tt>'./tmp'</tt>) and
3975 install <abbr title="PHP Extension and Application Repository">PEAR</abbr>
3976 module Spreadsheet_Excel_Writer into php include path. The
3977 installation can be done by following command:</p>
3979 <pre>
3980 pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer
3981 </pre>
3983 <p> First part of switches set we want to install beta version of that module
3984 (no stable version available yet) and then we tell pear we want to satisfy
3985 dependencies.</p>
3987 <p> If you are running in PHP safe mode, you will have to set
3988 in <tt>php.ini</tt> the <tt>safe_mode_include_dir</tt> to the directory
3989 where your <abbr title="PHP Extension and Application Repository">PEAR</abbr>
3990 modules are located, for example:</p>
3992 <pre>
3993 safe_mode_include_dir = /usr/local/lib/php
3994 </pre>
3996 <p> To create the temporary directory on a UNIX-based system, you can do:</p>
3998 <pre>
3999 cd phpMyAdmin
4000 mkdir tmp
4001 chmod o+rwx tmp
4002 </pre>
4004 <h4 id="faq6_24">
4005 <a href="#faq6_24">6.24 Now that phpMyAdmin supports native MySQL 4.1.x column comments,
4006 what happens to my column comments stored in pmadb?</a></h4>
4008 <p> Automatic migration of a table's pmadb-style column comments to the native
4009 ones is done whenever you enter Structure page for this table.</p>
4011 <h4 id="faq6_25">
4012 <a href="#faq6_25">6.25 How does BLOB streaming work in phpMyAdmin?</a></h4>
4014 <p> First, for general information about BLOB streaming on MySQL, visit <a href="http://blobstreaming.org">blobstreaming.org</a>. We currently support streaming if you are running MySQL 5.1 with the PBXT and PBMS storage engines.<br /><br />
4015 <ol>
4016 <li>In <tt>config.inc.php</tt> your host should be defined with a FQDN (fully qualified domain name) instead of something like &quot;localhost&quot;.</li>
4017 <li>A current limitation is that your first login via phpMyAdmin to a freshly-started server must be done with an account that has the SUPER privilege.</li>
4018 <li>On your target database, go to Operations and in the &quot;BLOB Repository&quot; section, click &quot;Enable&quot;. This creates the PBMS system tables inside your database.</li>
4019 <li>Ensure that your target table has a LONGBLOB column.</li>
4020 <li>When you insert or update a row in this table, put a checkmark on the &quot;Upload to BLOB repository&quot; optional choice; otherwise, the upload will be done directly in your column instead of the repository.</li>
4021 <li>Finally when you browse your table, you'll see in your column a link to stream your data, for example &quot;View image&quot;. A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.</li>
4022 </ol>
4023 </p>
4025 <h3 id="faqproject">phpMyAdmin project</h3>
4027 <h4 id="faq7_1">
4028 <a href="#faq7_1">7.1 I have found a bug. How do I inform developers?</a></h4>
4030 <p> Our Bug Tracker is located at
4031 <a href="http://sf.net/projects/phpmyadmin/">http://sf.net/projects/phpmyadmin/</a>
4032 under the Bugs section.<br /><br />
4034 But please first discuss your bug with other users:<br />
4035 <a href="http://sf.net/projects/phpmyadmin/">
4036 http://sf.net/projects/phpmyadmin/</a> (and choose Forums)</p>
4038 <h4 id="faq7_2">
4039 <a href="#faq7_2">7.2 I want to translate the messages to a new language or upgrade an
4040 existing language, where do I start?</a></h4>
4042 <p> Always use the current SVN version of your language file.
4043 For a new language, start from <i>english-utf-8.inc.php</i>. If you
4044 don't know how to get the SVN version, please ask one of the developers.
4045 <br />
4046 Please note that we try not to use HTML entities like &amp;eacute; in
4047 the translations, since we define the right character set in the file.
4048 With HTML entities, the text on JavaScript messages would not
4049 display correctly.
4050 However there are some entities that need to be there, for quotes
4051 ,non-breakable spaces, ampersands, less than, greater than.<br />
4052 You can then put your translations, as a zip file to avoid losing special
4053 characters, on the sourceforge.net translation tracker.<br />
4054 It would be a good idea to subscribe to the phpmyadmin-translators mailing
4055 list, because this is where we ask for translations of new messages.</p>
4057 <h4 id="faq7_3">
4058 <a href="#faq7_3">7.3 I would like to help out with the development of
4059 phpMyAdmin. How should I proceed?</a></h4>
4061 <p> The following method is preferred for new developers:</p>
4063 <ol><li>fetch the current SVN tree over anonymous SVN:<br />
4064 <tt>svn co https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin</tt><br />
4065 </li>
4066 <li>add your stuff</li>
4067 <li>generate patch with your changes:
4068 <tt>svn diff</tt><br />
4069 </li>
4070 <li>put the patch inside the <a
4071 href="https://sourceforge.net/tracker/?group_id=23067&amp;atid=377410">patch
4072 tracker of the phpMyAdmin project</a>.
4073 </li>
4074 </ol>
4076 <p> Write access to the SVN tree is granted only to experienced developers who
4077 have already contributed something useful to phpMyAdmin.<br />
4078 Also, have a look at the <a href="#developers">Developers section</a>.</p>
4080 <h3 id="faqsecurity">Security</h3>
4082 <h4 id="faq8_1">
4083 <a href="#faq8_1">8.1 Where can I get information about the security alerts issued for phpMyAdmin?</a></h4>
4085 <p> Please refer to
4086 <a href="http://www.phpmyadmin.net/home_page/security.php">http://www.phpmyadmin.net/home_page/security.php</a>
4087 </p>
4089 <!-- DEVELOPERS -->
4090 <h2 id="developers">Developers Information</h2>
4092 <p> phpMyAdmin is Open Source, so you're invited to contribute to it. Many
4093 great features have been written by other people and you too can help to
4094 make phpMyAdmin a useful tool.</p>
4096 <p> If you're planning to contribute source, please read the following
4097 information:</p>
4099 <ul><li>All files include <i>libraries/header.inc.php</i> (layout),.
4100 <i>libraries/common.lib.php</i> (common functions) and
4101 <i>config.inc.php</i>.<br />
4102 Only configuration data should go in <i>config.inc.php</i>. Please keep
4103 it free from other code.<br />
4104 Commonly used functions should be added to
4105 <i>libraries/common.lib.php</i> and more specific ones may be added
4106 within a library stored into the <i>libraries</i> sub-directory.</li>
4107 <li>Obviously, you're free to use whatever coding style you want. But
4108 please try to keep your code as simple as possible: beginners are
4109 using phpMyAdmin as an example application.<br />
4110 As far as possible, we want the scripts to be XHTML1.0 and CSS2
4111 compliant on one hand, they fit the
4112 <a href="http://pear.php.net/">
4113 <abbr title="PHP Extension and Application Repository">PEAR</abbr>
4114 coding standards</a>
4115 on the other hand. Please pay attention to this.</li>
4116 <li>Please try to keep up the file-naming conventions. Table-related stuff
4117 goes to <i>tbl_*.php</i>, db-related code to <i>db_*.php</i>,
4118 server-related tools to <i>server_*.php</i> and so on.</li>
4119 <li>Please don't put message strings in your code, instead add the string
4120 (at least) to <i>english-utf-8.inc.php</i> and print() it out.</li>
4121 <li>If you want to be really helpful, write an entry for the ChangeLog.</li>
4122 <li id="developersdbg">
4123 The DBG extension (<a href="http://dd.cron.ru/dbg/">PHP
4124 Debugger DBG</a>) is now supported by phpMyAdmin for developers to
4125 better debug and profile their code.<br />
4126 Please see the
4127 <a href="#cfg_DBG" class="configrule">$cfg['DBG']*</a> configuration
4128 options for more information.<br />
4129 This is in memoriam of the Space Shuttle Columbia (STS-107) which was
4130 lost during its re-entry into Earth's atmosphere and in memory of the
4131 brave men and women who gave their lives for the people of Earth.</li>
4132 </ul>
4134 <!-- CREDITS -->
4135 <h2 id="credits">Credits</h2>
4137 <pre>
4138 phpMyAdmin - Credits
4139 ====================
4141 CREDITS, in chronological order
4142 -------------------------------
4144 - Tobias Ratschiller &lt;tobias_at_ratschiller.com&gt;
4145 * creator of the phpmyadmin project
4146 * maintainer from 1998 to summer 2000
4148 - Marc Delisle &lt;Marc.Delisle_at_cegepsherbrooke.qc.ca&gt;
4149 * multi-language version
4150 * various fixes and improvements
4151 * <abbr title="structured query language">SQL</abbr> analyser (most of it)
4152 * current project maintainer
4154 - Olivier M&uuml;ller &lt;om_at_omnis.ch&gt;
4155 * started SourceForge phpMyAdmin project in March 2001
4156 * sync'ed different existing CVS trees with new features and bugfixes
4157 * multi-language improvements, dynamic language selection
4158 * current project maintainer
4159 * many bugfixes and improvements
4161 - Lo&iuml;c Chapeaux &lt;lolo_at_phpheaven.net&gt;
4162 * rewrote and optimized javascript, DHTML and DOM stuff
4163 * rewrote the scripts so they fit the <abbr title="PHP Extension and Application Repository">PEAR</abbr> coding standards and
4164 generate XHTML1.0 and CSS2 compliant codes
4165 * improved the language detection system
4166 * many bugfixes and improvements
4168 - Robin Johnson &lt;robbat2_at_users.sourceforge.net&gt;
4169 * database maintenance controls
4170 * table type code
4171 * Host authentication <abbr title="Internet Protocol">IP</abbr> Allow/Deny
4172 * DB-based configuration (Not completed)
4173 * <abbr title="structured query language">SQL</abbr> parser and pretty-printer
4174 * <abbr title="structured query language">SQL</abbr> validator
4175 * many bugfixes and improvements
4177 - Armel Fauveau &lt;armel.fauveau_at_globalis-ms.com&gt;
4178 * bookmarks feature
4179 * multiple dump feature
4180 * gzip dump feature
4181 * zip dump feature
4183 - Geert Lund &lt;glund_at_silversoft.dk&gt;
4184 * various fixes
4185 * moderator of the phpMyAdmin former users forum at phpwizard.net
4187 - Korakot Chaovavanich &lt;korakot_at_iname.com&gt;
4188 * &quot;insert as new row&quot; feature
4190 - Pete Kelly &lt;webmaster_at_trafficg.com&gt;
4191 * rewrote and fix dump code
4192 * bugfixes
4194 - Steve Alberty &lt;alberty_at_neptunlabs.de&gt;
4195 * rewrote dump code for PHP4
4196 * mySQL table statistics
4197 * bugfixes
4199 - Benjamin Gandon &lt;gandon_at_isia.cma.fr&gt;
4200 * main author of the version 2.1.0.1
4201 * bugfixes
4203 - Alexander M. Turek &lt;me_at_derrabus.de&gt;
4204 * MySQL 4.0 / 4.1 / 5.0 compatibility
4205 * abstract database interface (PMA_DBI) with MySQLi support
4206 * privileges administration
4207 * <abbr title="Extensible Markup Language">XML</abbr> exports
4208 * various features and fixes
4209 * German language file updates
4211 - Mike Beck &lt;mike.beck_at_web.de&gt;
4212 * automatic joins in QBE
4213 * links column in printview
4214 * Relation view
4216 - Michal &#268;iha&#345; &lt;michal_at_cihar.com&gt;
4217 * enhanced index creation/display feature
4218 * feature to use a different charset for HTML than for MySQL
4219 * improvements of export feature
4220 * various features and fixes
4221 * Czech language file updates
4223 - Christophe Gesch&eacute; from the &quot;MySQL Form Generator for PHPMyAdmin&quot;
4224 (http://sf.net/projects/phpmysqlformgen/)
4225 * suggested the patch for multiple table printviews
4227 - Garvin Hicking &lt;me_at_supergarv.de&gt;
4228 * built the patch for vertical display of table rows
4229 * built the Javascript based Query window + <abbr title="structured query language">SQL</abbr> history
4230 * Improvement of column/db comments
4231 * (MIME)-Transformations for columns
4232 * Use custom alias names for Databases in left frame
4233 * hierarchical/nested table display
4234 * <abbr title="Portable Document Format">PDF</abbr>-scratchboard for WYSIWYG-distribution of <abbr title="Portable Document Format">PDF</abbr> relations
4235 * new icon sets
4236 * vertical display of column properties page
4237 * some bugfixes, features, support, German language additions
4239 - Yukihiro Kawada &lt;kawada_at_den.fujifilm.co.jp&gt;
4240 * japanese kanji encoding conversion feature
4242 - Piotr Roszatycki &lt;d3xter_at_users.sourceforge.net&gt; and Dan Wilson
4243 * the Cookie authentication mode
4245 - Axel Sander &lt;n8falke_at_users.sourceforge.net&gt;
4246 * table relation-links feature
4248 - Maxime Delorme &lt;delorme.maxime_at_free.fr&gt;
4249 * <abbr title="Portable Document Format">PDF</abbr> schema output, thanks also to Olivier Plathey for the
4250 &quot;FPDF&quot; library (see <a href="http://www.fpdf.org/">http://www.fpdf.org/</a>) and Steven Wittens
4251 for the &quot;UFPDF&quot; library (see <a href="http://www.acko.net/node/56">http://www.acko.net/node/56</a>).
4253 - Olof Edlund &lt;olof.edlund_at_upright.se&gt;
4254 * <abbr title="structured query language">SQL</abbr> validator server
4256 - Ivan R. Lanin &lt;ivanlanin_at_users.sourceforge.net&gt;
4257 * phpMyAdmin logo (until June 2004)
4259 - Mike Cochrane &lt;mike_at_graftonhall.co.nz&gt;
4260 * blowfish library from the Horde project
4262 - Marcel Tschopp &lt;ne0x_at_users.sourceforge.net&gt;
4263 * mysqli support
4264 * many bugfixes and improvements
4266 - Michael Keck &lt;mkkeck_at_users.sourceforge.net&gt;
4267 * redesign for 2.6.0
4268 * phpMyAdmin sailboat logo (June 2004)
4270 - Mathias Landh&auml;u&szlig;er
4271 * Representation at conferences
4273 - Sebastian Mendel &lt;cybot_tm_at_users.sourceforge.net&gt;
4274 * interface improvements
4275 * various bugfixes
4277 - Ivan A Kirillov
4278 * new relations Designer
4280 - Raj Kissu Rajandran (Google Summer of Code 2008)
4281 * BLOBstreaming support
4283 - Piotr Przybylski (Google Summer of Code 2008)
4284 * improved setup script
4286 And also to the following people who have contributed minor changes,
4287 enhancements, bugfixes or support for a new language since version 2.1.0:
4289 Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
4290 P&eacute;ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,
4291 Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kl&auml;ger,
4292 Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley,
4293 Bernard M. Piller, Laurent Haas, &quot;Sakamoto&quot;, Yuval Sarna,
4294 www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec,
4295 Michael Tacelosky, Rachim Tamsjadi, Kositer Uros,
4296 Lu&iacute;s V., Martijn W. van der Lee,
4297 Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai,
4298 Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, &quot;Manuzhai&quot;.
4301 Original Credits of Version 2.1.0
4302 ---------------------------------
4304 This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea
4305 to create a web-based interface to MySQL using PHP3. Although I have not
4306 used any of his source-code, there are some concepts I've borrowed from
4307 him. phpMyAdmin was created because Peter told me he wasn't going to
4308 further develop his (great) tool.
4309 Thanks go to
4310 - Amalesh Kempf &lt;ak-lsml_at_living-source.com&gt; who contributed the
4311 code for the check when dropping a table or database. He also suggested
4312 that you should be able to specify the primary key on tbl_create.php3. To
4313 version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as
4314 well as a bug-report. Plus many smaller improvements.
4315 - Jan Legenhausen &lt;jan_at_nrw.net&gt;: He made many of the changes that
4316 were introduced in 1.3.0 (including quite significant ones like the
4317 authentication). For 1.4.1 he enhanced the table-dump feature. Plus
4318 bug-fixes and help.
4319 - Marc Delisle &lt;DelislMa_at_CollegeSherbrooke.qc.ca&gt; made phpMyAdmin
4320 language-independent by outsourcing the strings to a separate file. He
4321 also contributed the French translation.
4322 - Alexandr Bravo &lt;abravo_at_hq.admiral.ru&gt; who contributed
4323 tbl_select.php3, a feature to display only some fields from a table.
4324 - Chris Jackson &lt;chrisj_at_ctel.net&gt; added support for MySQL
4325 functions in tbl_change.php3. He also added the
4326 &quot;Query by Example&quot; feature in 2.0.
4327 - Dave Walton &lt;walton_at_nordicdms.com&gt; added support for multiple
4328 servers and is a regular contributor for bug-fixes.
4329 - Gabriel Ash &lt;ga244_at_is8.nyu.edu&gt; contributed the random access
4330 features for 2.0.6.
4331 The following people have contributed minor changes, enhancements, bugfixes
4332 or support for a new language:
4333 Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,
4334 Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov,
4335 Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,
4336 G. Wieggers.
4338 And thanks to everyone else who sent me email with suggestions, bug-reports
4339 and or just some feedback.
4340 </pre>
4342 <h2 id="glossary">Glossary</h2>
4344 <p> From Wikipedia, the free encyclopedia</p>
4346 <ul>
4347 <li><a href="http://www.wikipedia.org/wiki/.htaccess">.htaccess</a>
4348 - the default name of Apache's directory-level configuration file.</li>
4349 <li><a href="http://www.wikipedia.org/wiki/Blowfish_%28cipher%29">Blowfish</a>
4350 - a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier.</li>
4351 <li><a href="http://www.wikipedia.org/wiki/Browser">Browser (Web Browser)</a>
4352 - a software application that enables a user to display and interact with
4353 text, images, and other information typically located on a web page at a
4354 website on the World Wide Web.</li>
4355 <li><a href="http://www.wikipedia.org/wiki/Bzip2">bzip2</a>
4356 - a free software/open source data compression algorithm and program
4357 developed by Julian Seward.</li>
4358 <li><a href="http://www.wikipedia.org/wiki/CGI">CGI (Common Gateway Interface)</a>
4359 - an important World Wide Web technology that enables a client web browser
4360 to request data from a program executed on the Web server.</li>
4361 <li><a href="http://www.wikipedia.org/wiki/Changelog">Changelog</a>
4362 - a log or record of changes made to a project.</li>
4363 <li><a href="http://www.wikipedia.org/wiki/Client_%28computing%29">Client</a>
4364 - a computer system that accesses a (remote) service on another computer
4365 by some kind of network.</li>
4366 <li><a href="http://www.wikipedia.org/wiki/Column_%28database%29">column</a>
4367 - a set of data values of a particular simple type, one for each row of
4368 the table.</li>
4369 <li><a href="http://www.wikipedia.org/wiki/HTTP_cookie">Cookie</a>
4370 - a packet of information sent by a server to a World Wide Web browser
4371 and then sent back by the browser each time it accesses that server.</li>
4372 <li><a href="http://www.wikipedia.org/wiki/Comma-separated_values">CSV</a>
4373 - Comma-separated values</li>
4374 <li>DB - look at <a href="#database">Database</a>.</li>
4375 <li><a id="database" href="http://www.wikipedia.org/wiki/Database">database</a>
4376 - an organized collection of data.</li>
4377 <li>Engine - look at <a href="#glossar_storage_engine">Storage Engines</a>.</li>
4378 <li><a href="http://www.wikipedia.org/wiki/extension">extension</a>
4379 - a PHP module that extends PHP with additional functionality.</li>
4380 <li><a href="http://www.wikipedia.org/wiki/FAQ">FAQ (Frequently Asked Questions)</a>
4381 - a list of commonly asked question and there answers.</li>
4382 <li><a href="http://www.wikipedia.org/wiki/Field_%28computer_science%29">Field</a>
4383 - one part of divided data/columns.</li>
4384 <li><a href="http://www.wikipedia.org/wiki/Foreign_key">foreign key</a>
4385 - a field or group of fields in a database record that point to a key
4386 field or group of fields forming a key of another database record in some
4387 (usually different) table.</li>
4388 <li><a href="http://www.fpdf.org/">FPDF (FreePDF)</a>
4389 - the free PDF library</li>
4390 <li><a id="gd" href="http://www.wikipedia.org/wiki/GD_Graphics_Library">
4391 GD Graphics Library</a> - a library by Thomas Boutell and others for
4392 dynamically manipulating images.</li>
4393 <li>GD2 - look at <a href="#gd">GD Graphics Library</a>.</li>
4394 <li><a href="http://www.wikipedia.org/wiki/Gzip">gzip</a>
4395 - gzip is short for GNU zip, a GNU free software file compression
4396 program.</li>
4397 <li><a href="http://www.wikipedia.org/wiki/Host">host</a>
4398 - any machine connected to a computer network, a node that has a hostname.</li>
4399 <li><a href="http://www.wikipedia.org/wiki/Hostname">hostname</a>
4400 - the unique name by which a network attached device is known on a network.</li>
4401 <li><a href="http://www.wikipedia.org/wiki/HyperText_Transfer_Protocol">HTTP
4402 (HyperText Transfer Protocol)</a>
4403 - the primary method used to transfer or convey information on the World
4404 Wide Web.</li>
4405 <li><a href="http://www.wikipedia.org/wiki/Https:_URI_scheme">https</a>
4406 - a <abbr title="HyperText Transfer Protocol">HTTP</abbr>-connection with
4407 additional security measures.</li>
4408 <li><a href="http://www.wikipedia.org/wiki/Internet_Information_Services">IIS (Internet Information Services)</a>
4409 - a set of Internet-based services for servers using Microsoft Windows.</li>
4410 <li><a id="glossar_index" href="http://www.wikipedia.org/wiki/Index_%28database%29">Index</a>
4411 - a feature that allows quick access to the rows in a table.</li>
4412 <li><a href="http://www.wikipedia.org/wiki/Internet_Protocol">IP (Internet Protocol)</a>
4413 - a data-oriented protocol used by source and destination hosts for
4414 communicating data across a packet-switched internetwork.</li>
4415 <li><a href="http://www.wikipedia.org/wiki/IP_Address">IP Address</a>
4416 - a unique number that devices use in order to identify and communicate
4417 with each other on a network utilizing the Internet Protocol standard.</li>
4418 <li><a href="http://www.wikipedia.org/wiki/ISAPI">ISAPI
4419 (Internet Server Application Programming Interface)</a>
4420 - the API of Internet Information Services (IIS).</li>
4421 <li><a href="http://www.wikipedia.org/wiki/ISP">ISP (Internet service provider)</a>
4422 - a business or organization that offers users access to the Internet and related services.</li>
4423 <li><a id="jpeg" href="http://www.wikipedia.org/wiki/JPEG">JPEG</a>
4424 - a most commonly used standard method of lossy compression for
4425 photographic images.</li>
4426 <li>JPG - look at <a href="#jpeg">JPEG</a>.</li>
4427 <li>Key - look at <a href="#glossar_index">index</a>.</li>
4428 <li><a href="http://www.wikipedia.org/wiki/LaTeX">L<sup>A</sup>T<sub><big>E</big></sub>X</a>
4429 - a document preparation system for the T<sub>E</sub>X typesetting program.</li>
4430 <li><a href="http://www.wikipedia.org/wiki/Mac">Mac (Apple Macintosh)</a>
4431 - line of personal computers is designed, developed, manufactured, and
4432 marketed by Apple Computer.</li>
4433 <li><a id="glossar_mac_os_x" href="http://www.wikipedia.org/wiki/Mac_OS_X"><acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X</a>
4434 - the operating system which is included with all currently shipping Apple
4435 Macintosh computers in the consumer and professional markets.</li>
4436 <li><a href="http://www.wikipedia.org/wiki/MCrypt">MCrypt</a>
4437 - a cryptographic library.</li>
4438 <li><a href="http://php.net/mcrypt">mcrypt</a>
4439 - the MCrypt PHP extension.</li>
4440 <li><a href="http://www.wikipedia.org/wiki/MIME">MIME (Multipurpose Internet Mail Extensions)</a>
4441 - an Internet Standard for the format of e-mail.</li>
4442 <li><a href="http://www.wikipedia.org/wiki/module">module</a>
4443 - some sort of extension for the Apache Webserver.</li>
4444 <li><a href="http://www.wikipedia.org/wiki/MySQL">MySQL</a>
4445 - a multithreaded, multi-user, SQL (Structured Query Language) Database
4446 Management System (DBMS).</li>
4447 <li><a href="http://php.net/mysqli">mysqli</a>
4448 - the improved MySQL client PHP extension.</li>
4449 <li><a href="http://php.net/mysql">mysql</a>
4450 - the MySQL client PHP extension.</li>
4451 <li><a href="http://www.wikipedia.org/wiki/OpenDocument">OpenDocument</a>
4452 - open standard for office documents.</li>
4453 <li><a href="http://www.wikipedia.org/wiki/OS_X"><abbr title="operating system">OS</abbr> X</a>
4454 - look at <a href="#glossar_mac_os_x"><acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X</a>.</li>
4455 <li><a href="http://www.wikipedia.org/wiki/Portable_Document_Format">PDF
4456 (Portable Document Format)</a>
4457 - a file format developed by Adobe Systems for representing two
4458 dimensional documents in a device independent and resolution independent
4459 format.</li>
4460 <li><a href="http://pear.php.net/">PEAR</a>
4461 - the PHP Extension and Application Repository.</li>
4462 <li><a href="http://php.net/pcre">PCRE (Perl Compatible Regular Expressions)</a>
4463 - the perl-compatible regular expression functions for PHP</li>
4464 <li><a href="http://www.wikipedia.org/wiki/PHP">PHP</a>
4465 - short for "PHP: Hypertext Preprocessor", is an open-source, reflective
4466 programming language used mainly for developing server-side applications
4467 and dynamic web content, and more recently, a broader range of software
4468 applications.</li>
4469 <li><a href="http://www.wikipedia.org/wiki/Port_%28computing%29">port</a>
4470 - a connection through which data is sent and received.</li>
4471 <li><a href="http://www.wikipedia.org/wiki/Request_for_Comments">RFC</a>
4472 - Request for Comments (RFC) documents are a series of memoranda
4473 encompassing new research, innovations, and methodologies applicable to
4474 Internet technologies.</li>
4475 <li><a href="http://www.ietf.org/rfc/rfc1952.txt">RFC 1952</a>
4476 - GZIP file format specification version 4.3</li>
4477 <li><a href="http://www.wikipedia.org/wiki/Row_%28database%29">Row (record, tulpel)</a>
4478 - represents a single, implicitly structured data item in a table.</li>
4479 <li><a href="http://www.wikipedia.org/wiki/Server_%28computing%29">Server</a>
4480 - a computer system that provides services to other computing
4481 systems over a network.</li>
4482 <li><a id="glossar_storage_engine" href="http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html">Storage Engines</a>
4483 - handlers for different table types</li>
4484 <li><a href="http://www.wikipedia.org/wiki/Socket#Computer_sockets">socket</a>
4485 - a form of inter-process communication.</li>
4486 <li><a href="http://www.wikipedia.org/wiki/Secure_Sockets_Layer">SSL (Secure
4487 Sockets Layer)</a>
4488 - a cryptographic protocol which provides secure communication on the Internet.</li>
4489 <li><a href="http://www.wikipedia.org/wiki/SQL">SQL</a>
4490 - Structured Query Language</li>
4491 <li><a href="http://www.wikipedia.org/wiki/Table_%28database%29">table</a>
4492 - a set of data elements (cells) that is organized, defined and stored as
4493 horizontal rows and vertical columns where each item can be uniquely
4494 identified by a label or key or by it?s position in relation to other items.</li>
4495 <li>Table type</li>
4496 <li><a href="http://www.wikipedia.org/wiki/Tar_%28file_format%29">tar</a>
4497 - a type of archive file format: the Tape ARchive format.</li>
4498 <li><a href="http://www.wikipedia.org/wiki/TCP">TCP (Transmission Control Protocol)</a>
4499 - one of the core protocols of the Internet protocol suite.</li>
4500 <li><a href="http://www.acko.net/node/56">UFPDF</a>
4501 - Unicode/UTF-8 extension for FPDF</li>
4502 <li><a href="http://www.wikipedia.org/wiki/URL">URL (Uniform Resource Locator)</a>
4503 - a sequence of characters, conforming to a standardized format, that is
4504 used for referring to resources, such as documents and images on the
4505 Internet, by their location.</li>
4506 <li><a href="http://www.wikipedia.org/wiki/Webserver">Webserver</a>
4507 - A computer (program) that is responsible for accepting HTTP requests
4508 from clients and serving them Web pages.</li>
4509 <li><a href="http://www.wikipedia.org/wiki/XML">XML (Extensible Markup Language)</a>
4510 - a W3C-recommended general-purpose markup language for creating
4511 special-purpose markup languages, capable of describing many different
4512 kinds of data.</li>
4513 <li><a href="http://www.wikipedia.org/wiki/ZIP_%28file_format%29">ZIP</a>
4514 - a popular data compression and archival format.</li>
4515 <li><a href="http://www.wikipedia.org/wiki/Zlib">zlib</a>
4516 - an open-source, cross-platform data compression library by Jean-loup
4517 Gailly and Mark Adler.</li>
4518 </ul>
4520 <p id="bottom">
4521 <a href="http://validator.w3.org/check?uri=referer">
4522 <img src="http://www.w3.org/Icons/valid-xhtml11" alt="Valid XHTML 1.1"
4523 height="31" width="88" /></a>
4524 <a href="http://jigsaw.w3.org/css-validator/">
4525 <img src="http://www.w3.org/Icons/valid-css" alt="Valid CSS!" width="88"
4526 height="31" /></a></p>
4528 </body>
4529 </html>