2 phpMyAdmin 2.4.0-dev Documentation
4 * Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
7 + Version history: ChangeLog
8 + General notes: README
10 * Documentation version: $Id: Documentation.html,v 1.379 2003/01/24
12 ______________________________________________________________________
14 Top - Requirements - Introduction - Installation -
15 Configuration - FAQ - Developers - Credits
16 ______________________________________________________________________
20 * PHP3 or PHP4: phpMyAdmin widely uses the 'str_replace()' php
21 function that was added in PHP 3.0.6, but was buggy up until
22 PHP 3.0.8. Then you should not run this script with PHP3 < 3.0.8.
23 PHP also needs to be compiled with MySQL support;
24 * MySQL (tested with 3.21.x, 3.22.x, 3.23.x and 4.0.x);
25 Note: Because of a major change in the definition syntax of string
26 field types, this version of phpMyAdmin probably won't work
27 correctly with MySQL >= 4.1.0!
28 * a web-browser (doh!).
29 ______________________________________________________________________
31 Top - Requirements - Introduction - Installation -
32 Configuration - FAQ - Developers - Credits
33 ______________________________________________________________________
37 phpMyAdmin can manage a whole MySQL-server (needs a super-user) but
38 also a single database. To accomplish the latter you'll need a
39 properly set up MySQL-user who can read/write only the desired
40 database. It's up to you to look up the appropriate part in the MySQL
41 manual. Currently phpMyAdmin can:
42 * create and drop databases
43 * create, copy, drop, rename and alter tables
44 * do table maintenance
45 * delete, edit and add fields
46 * execute any SQL-statement, even batch-queries
47 * manage keys on fields
48 * load text files into tables
49 * create (*) and read dumps of tables
50 * export (*) data to CSV, XML and Latex formats
51 * administer multiple servers
52 * check referential integrity
53 * using Query-by-example (QBE), create complex queries automatically
54 connecting required tables
55 * create PDF graphics of your Database layout
56 * search globally in a database or a subset of it
57 * communicate in 43 different languages
59 (*) phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats)
60 dumps and CSV exports if you use PHP4 >= 4.0.4 with Zlib support
61 (--with-zlib) and/or Bzip2 support (--with-bz2).
62 ______________________________________________________________________
64 Top - Requirements - Introduction - Installation -
65 Configuration - FAQ - Developers - Credits
66 ______________________________________________________________________
70 NOTE: phpMyAdmin does not apply any special security methods to the
71 MySQL database server. It is still the sysadmin's job to grant
72 permissions on the MySQL databases properly. phpMyAdmin's "Users" page
75 Warning for Mac users:if you are on a MacOS version before OS X,
76 Stuffit unstuffs with Mac formats.
77 So you'll have to resave as in Bbedit to unix style ALL phpMyAdmin
78 scripts before uploading them to your server, as PHP seems not to like
79 Mac-style end of lines character ("\r").
81 Documentation warning: when you see in this document a .php3 file
82 extension, please transpose to .php if you are using a kit with files
83 having this extension.
86 1. Choose and download a distribution kit with the files having the
87 extension (.php3 or .php) depending on the way your web/PHP server
88 interprets those extensions.
89 2. Untar or unzip the distribution (be sure to unzip the
90 subdirectories): tar xzvf phpMyAdmin_x.x.x.tar.gz in your
91 webserver's document root. If you don't have direct access to your
92 document root, put the files in a directory on your local machine,
93 and, after step 3, transfer the directory on your web server
94 using, for example, ftp.
95 3. Open the file config.inc.php3 in your favourite editor and change
96 the values for host, user, password and authentication mode to fit
97 your environment. Also insert the correct value for
98 $cfg['PmaAbsoluteUri']. Have a look at Configuration section for
99 an explanation of all values.
100 4. It is recommended that you protect the directory in which you
101 installed phpMyAdmin (unless it's on a closed intranet, or you
102 wish to use http or cookie authentication), for example with
103 HTTP-AUTH (in a .htaccess file). See the FAQ section for
104 additional information.
105 5. Open the file <www.your-host.com>/<your-install-dir>/index.php3 in
106 your browser. phpMyAdmin should now display a welcome screen and
107 your databases, or a login dialog if using http or cookie
110 Upgrading from an older version:
111 * Please do not copy your older config.inc.php3 over the new one: it
112 may offer new configuration variables, and the new version may
113 depend on these for normal behavior. It is suggested instead to
114 insert your site values in the new one.
116 Using authentication modes:
117 * Http and cookie authentication modes are recommended in a
118 multi-user environment where you want to give users access to
119 their own database and don't want them to play around with others.
120 Nevertheless be aware that MS Internet Explorer seems to be really
121 buggy about cookies, at least till version 6. And php 4.1.1 is
122 also a bit buggy in this area!
123 Even in a single-user environment, you might prefer to use http or
124 cookie mode so that your user/password pair are not in clear in
125 the configuration file.
126 * Http and cookie authentication modes are more secure: the MySQL
127 password does not need to be set in the phpMyAdmin configuration
128 file (except for the "controluser" -see the Configuration
130 However, keep in mind that the password travels in plain text,
131 unless you are using the https protocol.
132 In cookie mode, we send the password in a temporary cookie, so
133 most browsers should not store the password in their cookie file.
134 * For 'http' and 'cookie' modes, phpMyAdmin needs a controluser that
135 has only the SELECT privilege on the mysql.user (all columns
136 except "Password"), mysql.db (all columns) & mysql.tables_priv
137 (all columns except "Grantor" & "Timestamp") tables.
138 You must specify the details for the controluser in the
139 config.inc.php3 file under the $cfg['Servers'][$i]['controluser']&
140 $cfg['Servers'][$i]['controlpass'] settings.
141 This example assumes you want to use pma as the controluser and
142 pmapass as the controlpass, but this is only an example: use
143 something else in your file:
145 GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY
147 GRANT SELECT (Host, User, Select_priv, Insert_priv, Update_priv,
148 Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv,
149 Process_priv, File_priv, Grant_priv, References_priv, Index_priv,
150 Alter_priv) ON mysql.user TO 'pma'@'localhost';
151 GRANT SELECT ON mysql.db TO 'pma'@'localhost';
152 GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) ON
153 mysql.tables_priv TO 'pma'@'localhost';
154 ... and if you want to use the many new relation and bookmark
156 GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db> TO
157 'pma'@'localhost'; (this of course requires you to have a special DB
158 for phpMyAdmin, the contents will be explained later)
159 * Then each of the true users should be granted a set of privileges
160 on a set of particular databases. Normally you shouldn't give
161 global privileges to an ordinary user, unless you understand the
162 impact of those privileges (for example, you are creating a
164 For example, to grant the user real_user with all privileges on
165 the database user_base:
166 GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost
167 IDENTIFIED BY 'real_password';
168 What the user may now do is controlled entirely by the MySQL user
170 With http or cookie auth mode, you don't need to fill the
171 user/password fields inside the $cfg['Servers'] array.
173 'http' authentication mode:
174 * Was called 'advanced' in versions before 2.2.3.
175 * Introduced in 1.3.0, it uses Basic HTTP authentication method and
176 allows you to login as any valid MySQL user.
177 * Is only supported with PHP running as an Apache module, not with
180 'cookie' authentication mode:
181 * You can use this method as a replacement for the http
182 authentication (for example, if you're running IIS).
183 * Obviously, the user must enable cookies in the browser.
184 * With this mode, the use can truly logout of phpMyAdmin and login
185 back with the same username.
187 'config' authentication mode:
188 * This mode is the less secure one because it requires you to fill
189 the $cfg['Servers'][$i]['user'] and
190 $cfg['Servers'][$i]['password'] fields.
191 But you don't need to setup a "controluser" here: using the
192 $cfg['Servers'][$i]['only_db'] might be enough.
193 * In the ISP FAQ section, there is an entry explaining how to
194 protect your configuration file.
195 * For additional security in this mode, you may wish to consider the
196 Host authentication $cfg['Servers'][$i]['AllowDeny']['order'] and
197 $cfg['Servers'][$i]['AllowDeny']['rules'] configuration
199 ______________________________________________________________________
201 Top - Requirements - Introduction - Installation -
202 Configuration - FAQ - Developers - Credits
203 ______________________________________________________________________
207 Warning for Mac users: php seems not to like Mac end of lines
208 character ("\r"). So ensure you choose the option that allows to use
209 the *nix end of line character ("\n") in your text editor before
210 registering a script you have modified.
212 All configurable data is placed in config.inc.php3.
214 $cfg['PmaAbsoluteUri'] string
215 Sets here the complete url (with full path) to your phpMyAdmin
217 http://www.your_web.net/path_to_your_phpMyAdmin_directory/.
218 phpMyAdmin needs this setting, because of requirements of the
219 HTTP protocol, explained in RFC2616, section 14.30.
220 Don't forget the slash at the end of your url. The url must
221 contain characters that are valid for a url, and on some
222 servers, the path is case-sensitive.
223 Starting with version 2.3.0, you can try to leave this
224 parameter empty, because the program tries to auto-detect its
225 proper value. Additional details are in the configuration file.
226 Alternatively, this setting can be dynamically completed. For
227 example, you can try to use such a kind of code:
229 $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
230 . $_SERVER['HTTP_HOST']
231 . (!empty($_SERVER['SERVER_PORT']) ? ':' . $_SERVER['SER
233 . substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_
238 $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
239 . $_SERVER['SERVER_NAME']
240 . (!empty($_SERVER['SERVER_PORT']) ? ':' . $_SERVER['SER
242 . substr($_SERVER['SCRIPT_NAME'], 0, strrpos($_SERVER['S
243 CRIPT_NAME'], '/')+1);
246 Please note that the $_SERVER array doesn't exist in
247 PHP < 4.1.0. Try to replace $_SERVER by $HTTP_SERVER_VARS or
248 $GLOBALS in this case.
250 $cfg['PmaAbsoluteUri_DisableWarning'] boolean
251 By default, when you leave $cfg['PmaAbsoluteUri'] empty, and
252 the system detects your absolute URI automatically, we display
253 a warning to remind you. If you have tested the automatic
254 detection, and it works perfectly for your setup, then you can
255 set this variable to squelch the warning.
257 $cfg['PmaNoRelation_DisableWarning'] boolean
258 Starting with version 2.3.0 phpMyAdmin offers a lot of features
259 to work with master / foreign - tables (see
260 $cfg['Servers'][$i]['pmadb']).
261 If you tried to set this up and it does not work for you, have
262 a look on the "Structure" page of one database where you would
263 like to use it. You will find a link that will analyze why
264 those features have been disabled.
265 If you do not want to use those features set this variable to
266 TRUE to stop this message from appearing.
268 $cfg['Servers'] array
269 Since version 1.4.2, phpMyAdmin supports the administration of
270 multiple MySQL servers. Therefore, a $cfg['Servers']-array has
271 been added which contains the login information for the
272 different servers. The first $cfg['Servers'][$i]['host']
273 contains the hostname of the first server, the second
274 $cfg['Servers'][$i]['host'] the hostname of the second server,
275 etc. If you have only one server to administer, simply leave
276 free the hostname of the other $cfg['Server']-entries.
278 $cfg['Servers'][$i]['host'] string
279 The hostname of your $i-th MySQL-server. E.g. localhost.
281 $cfg['Servers'][$i]['port'] string
282 The port-number of your $i-th MySQL-server. Default is 3306
285 $cfg['Servers'][$i]['socket'] string
286 The path to the socket to use. Leave blank for default.
287 To use the socket feature you must run php 3.0.10 or more.
289 $cfg['Servers'][$i]['connect_type'] string
290 What type connection to use with the MySQL server. Your options
291 are 'socket' & 'tcp'. It defaults to 'tcp' as that is nearly
292 guarenteed to be available on all MySQL servers, while sockets
293 are not supported on some platforms.
294 To use the socket mode, your MySQL server must be on the same
295 machine as the Web server.
297 $cfg['Servers'][$i]['controluser'] string
298 $cfg['Servers'][$i]['controlpass'] string
299 When using http or cookie authentication modes (or 'config'
300 authentication mode since phpMyAdmin 2.2.1), you need to supply
301 the details of a MySQL account that has SELECT privilege on the
302 mysql.user (all columns except "Password"), mysql.db (all
303 columns) & mysql.tables_priv (all columns except "Grantor" &
304 "Timestamp") tables. This account is used to check what
305 databases the user will see at login.
306 Please see the install section on "Using http authentication"
307 for more information.
308 Note that if you try login to phpMyAdmin with this
309 "controluser", you could get some errors, depending the exact
310 privileges you gave to the "controluser". phpMyAdmin does not
311 support a direct login with the "controluser".
312 In versions before 2.2.5, those were called "stduser/stdpass".
314 $cfg['Servers'][$i]['auth_type'] string ['http'|'cookie'|'config']
315 Whether config or cookie or http authentication should be used
318 + 'config' authentication ($auth_type = 'config') is the plain
319 old way: username and password are stored in config.inc.php3.
320 + 'cookie' authentication mode ($auth_type = 'cookie') as
321 introduced in 2.2.3 allows you to log in as any valid MySQL
322 user with the help of... cookies. Log name and password are
323 stored in cookies during the session and password is deleted
325 + 'http' authentication (was called 'advanced' in older
326 versions) ($auth_type = 'http') as introduced in 1.3.0 allows
327 you to log in as any valid MySQL user via HTTP-Auth.
329 Please see the install section on "Using authentication modes"
330 for more information.
332 $cfg['Servers'][$i]['user'] string
333 $cfg['Servers'][$i]['password'] string
334 The user/password-pair which phpMyAdmin will use to connect to
335 this MySQL-server. This user/password pair is not needed when
336 http or cookie authentication is used, and should be empty.
338 $cfg['Servers'][$i]['only_db'] string or array
339 If set to a(an array of) database name(s), only this(these)
340 database(s) will be shown to the user. Since phpMyAdmin 2.2.1,
341 this/these database(s) name(s) may contain MySQL wilcards
342 characters ("_" and "%"): if you want to use literal instances
343 of these characters, escape them (ie use 'my\_db' and not
345 This setting is an efficient way to lower the server charge
346 since the latter does not need to send MySQL requests to build
347 the available database list. But it does not replace the
348 privileges rules of the MySQL database server. If set, it just
349 means only these databases will be displayed but not at all
350 other databases can't be used.
352 $cfg['Servers'][$i]['verbose'] string
353 Only useful when using phpMyAdmin with multiple server entries.
354 If set, this string will be displayed instead of the hostname
355 in the pulldown menu on the main page. This can be useful if
356 you want to show only certain databases on your system, for
359 $cfg['Servers'][$i]['pmadb'] string
360 Starting with version 2.3.0 phpMyAdmin offers a lot of features
361 to work with master / foreign - tables. To use those as well as
362 the bookmark feature you need special tables with a predefined
363 structure, which we explain below.
364 If you are the only user of this phpMyAdmin installation, you
365 can use your current database to store those special tables; in
366 this case, just put your current database name in
367 $cfg['Servers'][$i]['pmadb'].
368 If you are setting up a multi-user phpMyAdmin installation, you
369 will need to create a new db and setup special privileges, so,
372 + create a new database for phpmyadmin:
373 CREATE DATABASE phpmyadmin;
374 Note that "controluser" must have SELECT, INSERT, UPDATE and
375 DELETE privileges on this database. Here is a query to set up
376 those privileges (using "phpmyadmin" as the database name,
377 and "pma" as the controluser):
378 GRANT SELECT,INSERT,UPDATE,DELETE ON phpmyadmin.* to
380 do not give any other user rights on this database.
381 + enter the databasename in $cfg['Servers'][$i]['pmadb']
383 $cfg['Servers'][$i]['bookmarktable'] string
384 Since release 2.2.0 phpMyAdmin allows to bookmark queries. This
385 can be useful for queries you often run.
386 To allow the usage of this functionality you have to:
388 + set up "pmadb" as described above
389 + within this database create a table following this scheme:
390 CREATE TABLE `PMA_bookmark` (
391 id int(11) DEFAULT '0' NOT NULL auto_increment,
392 dbase varchar(255) NOT NULL,
393 user varchar(255) NOT NULL,
394 label varchar(255) NOT NULL,
397 ) TYPE=MyISAM COMMENT='Bookmarks';
398 + enter the tablename in $cfg['Servers'][$i]['bookmarktable']
400 $cfg['Servers'][$i]['relation'] string
401 Since release 2.2.4 you can describe, in a special 'relation'
402 table, which field is a key in another table (a foreign key).
403 phpMyAdmin currently uses this to
405 + make clickable, when you browse the master table, the data
406 values that point to the foreign table;
407 + display in an optional tooltip the "display field" when
408 browsing the master table, if you move the mouse to a column
409 containing a foreign key (use also the 'table_info' table);
410 + display links on the table properties page, to check
411 referential integrity (display missing foreign keys) for each
413 + in query-by-example, create automatic joins (see an example
414 in the FAQ, section "Using phpMyAdmin");
415 + enable you to get a PDF schema of your database (also uses
416 the table_coords table).
418 The keys can be numeric or character.
419 To allow the usage of this functionality the superuser has to:
421 + set up "pmadb" as described above
422 + within this database create a table following this scheme:
423 CREATE TABLE `PMA_relation` (
424 `master_db` varchar(64) NOT NULL default '',
425 `master_table` varchar(64) NOT NULL default '',
426 `master_field` varchar(64) NOT NULL default '',
427 `foreign_db` varchar(64) NOT NULL default '',
428 `foreign_table` varchar(64) NOT NULL default '',
429 `foreign_field` varchar(64) NOT NULL default '',
430 PRIMARY KEY (`master_db`, `master_table`,
432 KEY foreign_field (foreign_db, foreign_table)
433 ) TYPE=MyISAM COMMENT='Relation table';
434 + put the relation table name in
435 $cfg['Servers'][$i]['relation']
436 + now as normal user open phpMyAdmin and for each one of your
437 tables where you want to use this feature, click
438 "Structure/Relation view/" and choose foreign fields.
440 Please note that in the current (2.3.0) version, master_db must
441 be the same as foreign_db. Those fields have been put in future
442 development of the cross-db relations.
444 $cfg['Servers'][$i]['table_info'] string
445 Since release 2.3.0 you can describe, in a special 'table_info'
446 table, which field is to be displayed as a tooltip when moving
447 the cursor over the corresponding key.
448 This configuration variable will hold the name of this special
449 table. To allow the usage of this functionality the superuser
452 + set up "pmadb" as described above
453 + within this database create a table following this scheme:
454 CREATE TABLE `PMA_table_info` (
455 `db_name` varchar(64) NOT NULL default '',
456 `table_name` varchar(64) NOT NULL default '',
457 `display_field` varchar(64) NOT NULL default '',
458 PRIMARY KEY (`db_name`, `table_name`)
459 ) TYPE=MyISAM COMMENT='Table information for
461 + put the table name in $cfg['Servers'][$i]['table_info']
462 + then for each table where you want to use this feature, click
463 "Structure/Relation view/Choose field to display" to choose
466 Usage tip: Display field.
468 $cfg['Servers'][$i]['table_coords'] string
469 $cfg['Servers'][$i]['pdf_pages'] string
470 Since release 2.3.0 you can have phpMyAdmin create PDF pages
471 showing the relations between your tables. To do this it needs
472 two tables "pdf_pages" (storing information about the available
473 pdf pages) and "table_coords" (storing coordinates where each
474 table will be placed on a PDF schema output).
475 You must be using the "relation" feature and have a table of
476 PDF pages (see $cfg['Servers'][$i]['pdf_pages']) to create PDF
478 To allow the usage of this functionality the superuser has to:
480 + set up "pmadb" as described above
481 + within this database create a table following this scheme:
482 CREATE TABLE `PMA_table_coords` (
483 `db_name` varchar(64) NOT NULL default '',
484 `table_name` varchar(64) NOT NULL default '',
485 `pdf_page_number` int NOT NULL default '0',
486 `x` float unsigned NOT NULL default '0',
487 `y` float unsigned NOT NULL default '0',
488 PRIMARY KEY (`db_name`, `table_name`,
490 ) TYPE=MyISAM COMMENT='Table coordinates for phpMyAdmin
492 + also within this database create:
493 CREATE TABLE `PMA_pdf_pages` (
494 `db_name` varchar(64) NOT NULL default '',
495 `page_nr` int(10) unsigned NOT NULL auto_increment,
496 `page_descr` varchar(50) NOT NULL default '',
497 PRIMARY KEY (page_nr),
499 ) TYPE=MyISAM COMMENT='PDF Relationpages for PMA';
500 + put the first table name in
501 $cfg['Servers'][$i]['table_coords'] and the second table name
502 in $cfg['Servers'][$i]['pdf_pages']
504 Usage tips: PDF output.
506 $cfg['Servers'][$i]['column_comments'] string
507 Since release 2.3.0 you can store comments to describe each
508 column for each table. These will then be shown on the
510 To allow the usage of this functionality the superuser has to:
512 + set up "pmadb" as described above
513 + within this database create a table following this scheme:
514 CREATE TABLE `PMA_column_comments` (
515 id int(5) unsigned NOT NULL auto_increment,
516 db_name varchar(64) NOT NULL default '',
517 table_name varchar(64) NOT NULL default '',
518 column_name varchar(64) NOT NULL default '',
519 comment varchar(255) NOT NULL default '',
521 UNIQUE KEY db_name (db_name, table_name, column_name)
522 ) TYPE=MyISAM COMMENT='Comments for Columns';
523 + put the table name in $cfg['Servers'][$i]['column_comments']
525 $cfg['Servers'][$i]['AllowDeny']['order'] string
526 If your rule order is empty, then IP authentication is
528 If your rule order is set to 'deny,allow' then the system
529 applies all deny rules followed by allow rules. Access is
530 allowed by default. Any client which does not match a Deny
531 command or does match an Allow command will be allowed access
533 If your rule order is set to 'allow,deny' then the system
534 applies all allow rules followed by deny rules. Access is
535 denied by default. Any client which does not match an Allow
536 directive or does match a Deny directive will be denied access
538 If your rule order is set to 'explicit', the authentication is
539 performed in a similar fashion to rule order 'deny,allow', with
540 the added restriction that your host/username combination must
541 be listed in the allow rules, and not listed in the deny rules.
542 This is the most secure means of using Allow/Deny rules, and
543 was available in Apache by specifying allow and deny rules
544 without setting any order.
546 $cfg['Servers'][$i]['AllowDeny']['rules'] array of strings
547 The general format for the rules is as such:
548 <'allow' | 'deny'> <username> [from] <ipmask>
549 If you wish to match all users, it is possible to use a '%' as
550 a wildcard in the username field.
551 There are a few shortcuts you can use in the ipmask field as
554 'localhost' -> 127.0.0.1/8
555 Having an empty rule list is equivalent to either using 'allow
556 % from all' if your rule order is set to 'deny,allow' or 'deny
557 % from all' if your rule order is set to 'allow,deny' or
559 For the IP matching system, the following work:
560 xxx.xxx.xxx.xxx (an exact IP address)
561 xxx.xxx.xxx.[yyy-zzz] (an IP address range)
562 xxx.xxx.xxx.xxx/nn (CIDR, Classless Inter-Domain Routing type
564 But the following does not work:
565 xxx.xxx.xxx.xx[yyy-zzz] (partial IP address range)
567 $cfg['ServerDefault'] integer
568 If you have more than one server configured, you can set
569 $cfg['ServerDefault'] to any one of them to autoconnect to that
570 server when phpMyAdmin is started, or set it to 0 to be given a
571 list of servers without logging in.
572 If you have only one server configured, $cfg['ServerDefault']
573 MUST be set to that server.
575 $cfg['OBGzip'] boolean
576 Defines whether to use gzip output buffering for increased
577 speed in HTTP transfers.
579 $cfg['PersistentConnections'] boolean
580 Whether persistent connections should be used or not
581 (mysql_connect or mysql_pconnect).
583 $cfg['ExecTimeLimit'] integer [number of seconds]
584 Set the number of seconds a script is allowed to run. If
585 seconds is set to zero, no time limit is imposed.
586 This setting is used while importing/exporting dump files but
587 has no effect when PHP is running in safe mode.
589 $cfg['SkipLockedTables'] boolean
590 Mark used tables and make it possible to show databases with
591 locked tables (since 3.23.30).
593 $cfg['ShowSQL'] boolean
594 Defines whether sql-queries generated by phpMyAdmin should be
597 $cfg['AllowUserDropDatabase'] boolean
598 Defines whether normal users (non-administrator) are allowed to
599 delete their own database or not. If set as FALSE, the link
600 "Drop Database" will not be shown, and even a "DROP DATABASE
601 mydatabase" will be rejected. Quite practical for ISP's with
604 $cfg['Confirm'] boolean
605 Whether a warning ("Are your really sure..") should be
606 displayed when you're about to loose data.
608 $cfg['LoginCookieRecall'] boolean
609 Define whether the previous login should be recalled or not in
610 cookie authentication mode.
612 $cfg['UseDbSearch'] boolean
613 Define whether the "search string inside database" is enabled
616 $cfg['LeftFrameLight'] boolean
617 Defines whether to use select-based menu and display only the
618 current tables in the left frame (smaller page).
620 $cfg['ShowTooltip'] boolean
621 Defines whether to display table comment as tooltip in left
624 $cfg['ShowStats'] boolean
625 Defines whether to display space usage and statistics about
626 databases and tables or not.
627 Note that statistics requires at least MySQL 3.23.3 and that,
628 at this date, MySQL doesn't return such information for
631 $cfg['ShowMysqlInfo'] boolean
632 $cfg['ShowMysqlVars'] boolean
633 $cfg['ShowPhpInfo'] boolean
634 $cfg['ShowChgPassword'] boolean
635 Defines whether to display the "MySQL runtime information",
636 "MySQL system variables", "PHP information" and "Change
637 password " links or not for simple users at the starting main
638 (right) frame. This setting does not check MySQL commands
640 Please note that to block the usage of phpinfo() in scripts,
641 you have to put this in your php.ini:
642 disable_functions = phpinfo()
643 Also note that enabling the "Change password " link has no
644 effect with "config" authentication mode: because of the hard
645 coded password value in the configuration file, end users can't
646 be allowed to change their passwords.
648 $cfg['SuggestDBName'] boolean
649 Defines whether to suggest a database name on the "Create
650 Database" form or to keep the textfield empty.
652 $cfg['ShowBlob'] boolean
653 Defines whether BLOB fields are shown when browsing a table's
656 $cfg['NavigationBarIconic'] boolean
657 Defines whether navigation bar buttons contain text or symbols
660 $cfg['ShowAll'] boolean
661 Defines whether an user should be displayed a "show all
662 (records)" button in browse mode or not.
664 $cfg['MaxRows'] integer
665 Number of rows displayed when browsing a resultset. If the
666 resultset contains more rows, Previous/Next links will be
669 $cfg['Order'] string [DESC|ASC|SMART]
670 Defines whether fields are displayed in ascending (ASC) order,
671 in descending (DESC) order or in a "smart" (SMART) order -ie
672 descending order for fields of type TIME, DATE, DATETIME &
673 TIMESTAMP, ascending order else- by default.
675 $cfg['ProtectBinary'] boolean or string
676 Defines whether BLOB or BINARY fields are protected from
677 edition when browsing a table's content or not. Valid values
679 - FALSE to allow edition of all fields;
680 - blob to allow edition of all fields except BLOBS;
681 - all to disallow edition of all BINARY or BLOB fields.
683 $cfg['ShowFunctionFields'] boolean
684 Defines whether MySQL functions fields should be displayed or
685 not in edit/insert mode.
687 $cfg['CharEditing'] string
688 Defines which type of editing controls should be used for CHAR
689 and VARCHAR fields. Possible values are:
691 + input - this allows to limit size of text to size of field in
692 MySQL, but has problems with newlines in fields
693 + textarea - no problems with newlines in fields, but also no
696 Default is old behavior so input.
698 $cfg['ZipDump'] boolean
699 $cfg['GZipDump'] boolean
700 $cfg['BZipDump'] boolean
701 Defines whether to allow the use of zip/gzip/bzip compression
702 when creating a dump file or not.
704 $cfg['DefaultTabDatabase'] string
705 Defines the tab displayed by default on database view. Possible
706 values: "db_details_structure.php3", "db_details.php3" or
709 $cfg['DefaultTabTable'] string
710 Defines the tab displayed by default on table view. Possible
711 values: "tbl_properties_structure.php3", "tbl_properties.php3",
712 "tbl_select.php3" or "tbl_change.php3".
714 $cfg['MySQLManualBase'] string
715 If set to an URL which points to the MySQL documentation (type
716 depends on $cfg['MySQLManualType']), appropriate help links are
718 See MySQL Documentation page for more information about MySQL
719 manuals and their types.
721 $cfg['MySQLManualType'] string
722 Type of MySQL documentation:
724 + old - old style used in phpMyAdmin 2.3.0 and sooner
725 + searchable - "Searchable, with user comments"
726 + chapters - "HTML, one page per chapter"
727 + big - "HTML, all on one page"
728 + none - do not show documentation links
730 $cfg['DefaultLang'] string
731 Defines the default language to use, if not browser-defined or
733 See the select_lang.inc.php3 script to know the valid values
737 Force: always use this language (must be defined in the
738 select_lang.inc.php3 script).
740 $cfg['DefaultCharset'] string
741 Default charset to use for recoding of MySQL queries. This must
742 be enabled and it's described by $cfg['AllowAnywhereRecoding']
744 You can give here any charset which is in
745 $cfg['AvailableCharsets'] array and this is just default
746 choice, user can select any of them.
748 $cfg['AllowAnywhereRecoding'] boolean
749 Allow charset recoding of MySQL queries. You need recode or
750 iconv support (compiled in or module) in php to allow MySQL
751 queries recoding and used language file must have it enabled
752 (by default only these which are in unicode, just to avoid
753 losing some characters).
755 $cfg['RecodingEngine'] string
756 You can select here which functions will be used for charset
757 conversion. Possible values are:
759 + auto - automatically use available one (first is tested
761 + iconv - use iconv or libiconv functions
762 + recode - use recode_string function
766 $cfg['AvailableCharsets'] array
767 Available charsets for MySQL conversion. You can add your own
768 (any of supported by recode/iconv) or remove these which you
769 don't use. Charsets will be shown in same order as here listed,
770 so if you frequently use some of these move them to the top.
772 $cfg['LeftWidth'] integer
773 Left frame width in pixel.
775 $cfg['LeftBgColor'] string [HTML color]
776 $cfg['RightBgColor'] string [HTML color]
777 The background colors (HTML) used for both the frames.
779 $cfg['RightBgImage'] string
780 The URI of the background image used for the right frame. It
781 can be absolute as well as relative from your phpMyAdmin
784 $cfg['LeftPointerColor'] string [HTML color]
785 The color (HTML) used for the pointer in the left frame (does
788 $cfg['Border'] integer
789 The size of a table's border.
791 $cfg['ThBgcolor'] string [HTML color]
792 The color (HTML) used for table headers.
794 $cfg['BgcolorOne'] string [HTML color]
795 The color (HTML) #1 for table rows.
797 $cfg['BgcolorTwo'] string [HTML color]
798 The color (HTML) #2 for table rows.
800 $cfg['BrowsePointerColor'] string [HTML color]
801 $cfg['BrowseMarkerColor'] string [HTML color]
802 The colors (HTML) uses for the pointer and the marker in browse
803 mode (does not work with NS4).
804 The former feature highlights the row over which your mouse is
805 passing and the latter lets you visually mark/unmark rows by
807 You can disable both of these features by emptying the
808 respective directive.
810 $cfg['TextareaCols'] integer
811 $cfg['TextareaRows'] integer
812 $cfg['CharTextareaCols'] integer
813 $cfg['CharTextareaRows'] integer
814 Number of columns and rows for the textareas.
815 This value will be emphasized (*2) for sql query textareas.
816 The Char* values are used for CHAR and VARCHAR editing (if
817 configured via $cfg['CharEditing']).
819 $cfg['TextareaAutoSelect'] boolean
820 Defines if the whole textarea of the query box will be selected
823 $cfg['LimitChars'] integer
824 Maximal number of Chars showed in a TEXT OR a BLOB field on
825 browse view. Can be turned off by a toggle button on the browse
828 $cfg['ModifyDeleteAtLeft'] boolean
829 $cfg['ModifyDeleteAtRight'] boolean
830 Defines the place where modify and delete links would be put
831 when tables contents are displayed (you may have them displayed
832 both at the left and at the right). "Left" and "right" are
833 parsed as "top" and "bottom" with vertical display mode.
835 $cfg['DefaultDisplay'] string
836 There are 2 display modes: horizontal and vertical. Define
837 which one is displayed by default.
839 $cfg['UploadDir'] string
840 The name of the directory, ending with a slash, where SQL files
841 have been uploaded by other means than phpMyAdmin (for example,
842 ftp). Those files are available under a drop-down box when you
843 click the database name, then the SQL tab.
844 Please note that the file names must have the suffix ".sql".
845 This feature is useful when your file is too big to be uploaded
846 via HTTP, or when file uploads are disabled in PHP.
847 Please note that if PHP is running in safe mode, this directory
848 must be owned by the same user as the owner of the phpMyAdmin
851 $cfg['RepeatCells'] integer
852 Repeat the headers every X cells, or 0 to deactivate.
854 $cfg['SQP']['enable'] boolean
855 As of phpMyAdmin 2.3.0, we now have a fully functional SQL
856 Parser system. It is enabled by default, as it is used to
857 format the SQL queries.
858 As of 2.3.1, it will become an integral part of phpMyAdmin, as
859 it will analyze certain queries to improve the behavior of
860 phpMyAdmin. But as it is very new, and not yet heavily used, we
861 offer you an option to turn it off.
863 $cfg['SQP']['fmtType'] string [html|none]
864 The main use of the new SQL Parser is to pretty-print SQL
865 queries. By default we use HTML to format the query, but you
866 can disable this by setting this varible to 'none'
868 $cfg['SQP']['fmtInd'] float
869 $cfg['SQP']['fmtIndUnit'] string [em|px|pt|ex]
870 For the pretty-printing of SQL queries, under some cases the
871 part of a query inside a bracket is indented. By changing
872 $cfg['SQP']['fmtInd'] you can change the amount of this indent.
873 Related in purpose is $cfg['SQP']['fmtIndUnit'] which specifies
874 the units of the indent amount that you specified. This is used
877 $cfg['SQP']['fmtColor'] array of string tuples
878 This array is used to define the colours for each type of
879 element of the pretty-printed SQL queries. The tuple format is
880 class => [HTML colour code | empty string]
881 If you specify an empty string for the color of a class, it is
882 ignored in creating the stylesheet. You should not alter the
883 class names, only the colour strings.
886 + comment Applies to all comment sub-classes
887 + comment_mysql Comments as "#...\n"
888 + comment_ansi Comments as "-- ...\n"
889 + comment_c Comments as "/*...*/"
890 + digit Applies to all digit sub-classes
891 + digit_hex Hexadecimal numbers
892 + digit_integer Integer numbers
893 + digit_float Floating point numbers
894 + punct Applies to all punctuation sub-classes
895 + punct_bracket_open_round Opening brackets"("
896 + punct_bracket_close_round Closing brackets ")"
897 + punct_listsep List item seperator ","
898 + punct_qualifier Table/Column Qualifer "."
899 + punct_queryend End of query marker ";"
900 + alpha Applies to all alphabetic classes
901 + alpha_columnType Identifers matching a column type
902 + alpha_columnAttrib Identifers matching a
903 database/table/column attribute
904 + alpha_functionName Identifiers matching a MySQL function name
905 + alpha_reservedWord Identifiers matching any other reserved
907 + alpha_variable Identifers matching a SQL variable "@foo"
908 + alpha_identifier All other identifiers
909 + quote Applies to all quotation mark classes
910 + quote_double Double quotes "
911 + quote_single Single quotes '
912 + quote_backtick Backtick quotes `
914 $cfg['SQLValidator']['use'] boolean
915 phpMyAdmin now supports use of the Mimer SQL Validator service,
916 as originally published on Slashdot.
917 For help in setting up your system to use the service, see the
920 $cfg['SQLValidator']['username'] string
921 $cfg['SQLValidator']['password'] string
922 The SOAP service allows you to login with anonymous and any
923 password, so we use those by default.. Instead, if you have an
924 account with them, you can put your login details here, and it
925 will be used in place of the anonymous login.
927 $cfg['ColumnTypes'] array
928 All possible types of a MySQL column. In most cases you don't
931 $cfg['AttributeTypes'] array
932 Possible attributes for fields. In most cases you don't need to
935 $cfg['Functions'] array
936 A list of functions MySQL supports. In most cases you don't
938 ______________________________________________________________________
940 Top - Requirements - Introduction - Installation -
941 Configuration - FAQ - Developers - Credits
942 ______________________________________________________________________
944 FAQ - Frequently Asked Questions
946 Server - Configuration - Limitations - Multi-user - Browsers
947 - Usage tips - Project
951 [1.1] I'm running php 4+ and my server is crashing each time a
952 specific action is required or phpMyAdmin sends a blank page or a page
953 full of cryptic characters to my browser, what can I do?
954 There are some known php bugs with output buffering and compression.
955 Try to set the $cfg['OBGzip'] directive to FALSE in your
956 config.inc.php or .php3 file and the zlib.output_compression directive
957 to Off in your php configuration file.
958 Furthermore, we know about such problems connected to the release
959 candidates of php 4.2.0 (tested with php 4.2.0 RC1 to RC4) together
960 with MS Internet Explorer. Please upgrade to the release version php
963 [1.2] My Apache server crashes when using phpMyAdmin.
964 You should first try the latest versions of Apache (and possibly
966 See also the other FAQ entry about php bugs with output buffering.
967 If your server keeps crashing, please ask for help in the various
968 Apache support groups.
970 [1.3] I'm running phpMyAdmin with "cookie" authentication mode under
971 PHP 4.2.0 or 4.2.1 loaded as an Apache 2+ module but can't enter the
972 script: I'm always displayed the login screen.
973 This is a known PHP bug (see this bug report) from the official php
974 bug database. It means there is and won't be any phpMyAdmin fix
975 against it because there is no way to code a fix.
977 [1.4] Using phpMyAdmin on IIS, I'm displayed the error message: "The
978 specified CGI application misbehaved by not returning a complete set
980 You just forgot to read the install.txt file from the php
981 distribution. Have a look at the last message in this bug report from
982 the official php bug database.
984 [1.5] Using phpMyAdmin on IIS, I'm facing crashes and/or many error
985 messages with the http or advanced authentication mode.
986 This is a known problem with the php ISAPI filter: it's not so stable.
987 For some more information and complete testings see the messages
988 posted by André B. aka "djdeluxe76" in this thread from the phpWizard
990 Please use instead the cookie authentication mode.
992 [1.6] I can't use phpMyAdmin on PWS: nothing is displayed!
993 This seems to be a PWS bug. Filippo Simoncini found a workaroud (at
994 this time there is no better fix): remove or comment the DOCTYPE
995 declarations (2 lines) from the scripts header.inc.php3,
996 header_printview.inc.php3, index.php3, left.php3 and
997 libraries/common.lib.php3.
999 [1.7] How can I GZip or Bzip a dump or a CSV export. It seems to not
1001 These features are based on the gzencode() and bzcompress() php
1002 functions to be more independent of the platform (Unix/Windows, Safe
1003 Mode or not, and so on). So, you must have PHP4 >= 4.0.4 and
1004 Zlib/Bzip2 support (--with-zlib and --with-bz2).
1005 We faced php crashes when trying to download a dump with MS Internet
1006 Explorer when phpMyAdmin is run with a release candidate of php 4.2.0.
1007 In this case you should switch to the release version of php 4.2.0.
1009 [1.8] I cannot insert a text file in a table, and I get an error about
1010 safe mode being in effect.
1011 Your uploaded file is saved by PHP in the "upload dir", as defined in
1012 php.ini by the variable upload_tmp_dir (usually the system default is
1014 We recommend the following setup for Apache servers running in safe
1015 mode, to enable uploads of files while being reasonably secure:
1016 * create a separate directory for uploads: mkdir /tmp/php
1017 * give ownership to the Apache server's user.group: chown
1018 apache.apache /tmp/php
1019 * give proper permission: chmod 600 /tmp/php
1020 * put upload_tmp_dir = /tmp/php in php.ini
1023 [1.9] I'm having troubles when uploading files. In general file
1024 uploads don't work on my system and uploaded files have a
1025 Content-Type: header in the first line.
1026 It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat
1027 7.0 and you updated your php rpm to php-4.0.4pl1-3.i386.rpm, didn't
1029 So the problem is that this package has a serious bug that was
1030 corrected ages ago in php (2001-01-28: see php's bug tracking system
1031 for more details). The problem is that the bugged package is still
1032 available though it was corrected (see redhat's bugzilla for more
1034 So please download the fixed package (4.0.4pl1-9) and the problem
1036 And that fixes the \r\n problem with file uploads!
1038 [1.10] I'm having troubles when uploading files with phpMyAdmin
1039 running on a secure server. My browser is Internet Explorer and I'm
1040 using the Apache server.
1041 As suggested by "Rob M" in the phpWizard forum, add this line to your
1043 SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
1044 It seems to clear up many problems between IE and SSL.
1046 [1.11] I get an 'open_basedir restriction' while uploading a file from
1048 Since version 2.2.4, phpMyAdmin supports servers with open_basedir
1049 restrictions. Assuming that the restriction allows you to open files
1050 in the current directory ('.'), all you have to do is create a 'tmp'
1051 directory under the phpMyAdmin install directory, with permissions 777
1052 and the same owner as the owner of your phpMyAdmin directory. The
1053 uploaded files will be moved there, and after execution of your SQL
1056 [1.12] I have lost my MySQL root password, what can I do?
1057 The MySql manual explains how to reset the permissions.
1059 [1.13] I get an error 'No SQL query' when trying to execute a
1061 If PHP does not have read/write access to its upload_tmp_dir, it
1062 cannot access the uploaded query.
1064 [1.14] I get an error 'No SQL query' when trying to submit a query
1065 from the convenient text area.
1066 Check the post_max_size directive from your php configuration file and
1069 [1.15] I have problems with mysql.user field names.
1070 In older MySQL versions, the User and Password fields were named user
1071 and password. Please modify your field names to align with current
1074 [1.16] I cannot upload big dump files.
1075 The first things to check (or ask your host provider to check) are the
1076 values of upload_max_filesize, memory_limit and post_max_size in the
1077 php.ini configuration file.
1078 All of these three settings limit the maximum size of data that can be
1079 submitted and handled by php. One user also said that post_max_size
1080 and memory_limit need to be larger than upload_max_filesize.
1082 [1.17] Does phpMyAdmin support MySQL 4?
1083 MySQL 4 is not yet fully supported by phpMyAdmin.
1084 Because of MySQL 4's backwards compatibility you can use phpMyAdmin
1085 for administering MySQL 4 servers, but phpMyAdmin does not yet support
1086 its new features. Please notice that in this case it is recommended to
1087 use php >= 4.1 since older versions of php are not compatible to
1089 Furthermore, several users reported problems with phpMyAdmin related
1090 to bugs in MySQL 4. MySQL 4 is still a beta release and should be used
1091 for test purposes only! Because of a major change in the definition
1092 syntax of string field types, this version of phpMyAdmin probably
1093 won't work correctly with MySQL >= 4.1.0! We will work on the support
1094 as soon as MySQL 4.1.0 is released.
1096 [1.18] I'm running MySQL <= 4.0.1 having lower_case_table_names set to
1097 1. If I create a new table with a capital letter in its name it is
1098 changed to lowercase as it should. But if I try to DROP this table
1099 MySQL is unable to find the corresponding file.
1100 This is a bug of MySQL <= 4.0.1. Please upgrade to at least
1101 MySQL 4.0.2 or turn off your lower_case_table_names directive.
1103 [1.19] I can't run the "display relations" feature because the script
1104 seems not to know the font face I'm using!
1105 The "FPDF" library we're using for this feature requires some special
1106 files to use font faces.
1107 Please refers to the FPDF manual to build these files.
1109 [1.20] I receive the error "cannot load MySQL extension, please check
1111 To connect to a MySQL server, PHP needs a set of MySQL functions
1112 called "MySQL extension". This extension may be part of the PHP server
1113 (compiled-in), otherwise it needs to be loaded dynamically. Its name
1114 is probably mysql.so or mysql.dll. phpMyAdmin tried to load the
1115 extension but failed.
1116 Usually, the problem is solved by installing a software package called
1117 "PHP-MySQL" or something similar.
1119 [1.21] I am running the CGI version of PHP under Unix, and I cannot
1120 login using cookie auth.
1121 In php.ini, set mysql.max_links higher than 1.
1123 [1.22] I don't see the "Location of text file" field, so I cannot
1125 This is most likely because in php.ini, your file_uploads parameter is
1128 [1.23] I'm running MySQL on a Win32 machine. Each time I create a new
1129 table the table and field names are changed to lowercase!
1130 This happens because the MySQL directive lower_case_table_names
1131 defaults to 1 (ON) in the Win32 version of MySQL. You can change this
1132 behavior by simply changing the directive to 0 (OFF):
1133 Just edit you my.ini file that should be located in your Windows
1134 directory and add the following line:
1135 lower-case-table-names=0
1136 Next, save the file and restart the MySQL service. You can always
1137 check the value of this directive using the query
1138 SHOW VARIABLES LIKE 'lower_case_table_names';
1140 [1.24] Some characters are being truncated in my queries, or I get
1141 characters randomly added. I am running PHP 4.2.3.
1142 This is a PHP 4.2.3 bug.
1144 [1.25] I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and
1145 I get problems, such as undefined variables when I run a SQL query.
1146 A tip from Jose Fandos: put a comment on the following two lines in
1147 httpd.conf, like this:
1148 # mod_gzip_item_include file \.php$
1149 # mod_gzip_item_include mime "application/x-httpd-php.*"
1150 as this version of mod_gzip on Apache (Windows) has problems handling
1151 php scripts. Of course you have to restart Apache.
1153 [1.26] I just installed phpMyAdmin in my document root of IIS but I
1154 get the error "No input file specified" when trying to run phpMyAdmin.
1155 This is a permission problem. Right-click on the phpmyadmin folder and
1156 choose properties. Under the tab Security, click on "Add" and select
1157 the user "IUSER_machine" from the list. Now set his permissions and it
1160 [1.27] I get empty page when I want to view huge page (eg.
1161 db_details_structure.php3 with plenty of dabases).
1162 This is a PHP bug that occur when GZIP output buffering enabled. If
1163 you turn off it (by $cfg['OBGzip'] = FALSE in config.inc.php3, it
1164 should work. This bug will be fixed least in PHP >= 4.5.0.
1168 [2.1] The error message "Warning: Cannot add header information -
1169 headers already sent by ..." is displayed, what's the problem?
1170 Edit your config.inc.php or .php3 file and ensure there is nothing (ie
1171 no blank lines, no spaces, no characters...) neither before the <?php
1172 tag at the beginning, neither after the ?> tag at the end.
1174 [2.2] phpMyAdmin can't connect to MySQL. What's wrong?
1175 Either there is an error with your PHP setup or your username/password
1176 is wrong. Try to make a small script which uses mysql_connect and see
1177 if it works. If it doesn't, it may be you haven't even compiled MySQL
1180 [2.3] The error message "Warning: MySQL Connection Failed: Can't
1181 connect to local MySQL server through socket '/tmp/mysql.sock'
1182 (111)..." is displayed. What can I do?
1183 For RedHat users, Harald Legner suggests this on the mailing list:
1184 On my RedHat-Box the socket of mysql is /var/lib/mysql/mysql.sock. In
1185 your php.ini you will find a line
1186 mysql.default_socket = /tmp/mysql.sock
1188 mysql.default_socket = /var/lib/mysql/mysql.sock
1189 Then restart apache and it will work.
1190 Here is a fix suggested by Brad Ummer in the phpwizard forum:
1191 * First, you need to determine what socket is being used by MySQL.
1192 To do this, telnet to your server and go to the MySQL bin
1193 directory. In this directory there should be a file named
1194 mysqladmin. Type ./mysqladmin variables, and this should give you
1195 a bunch of info about your MySQL server, including the socket
1196 (/tmp/mysql.sock, for example).
1197 * Then, you need to tell PHP to use this socket.
1198 Assuming you are using PHP 3.0.10 or better, you can specify the
1199 socket to use when you open the connection. To do this in
1200 phpMyAdmin, you need to complete the socket information in the
1202 For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';
1204 Have also a look at the corresponding section of the MySQL
1207 [2.4] Nothing is displayed by my browser when I try to run phpMyAdmin,
1209 Try to set the $cfg['OBGZip'] directive to FALSE in the phpMyAdmin
1210 configuration file. It helps sometime.
1211 Also have a look at your php version number: if it contains "4.0b..."
1212 it means you're running a beta version of PHP. That's not a so good
1213 idea, please upgrade to a plain revision.
1215 [2.5] Each time I want to insert or change a record or drop a database
1216 or a table, an error 404 (page not found) is displayed or, with http
1217 or cookie authentication, I'm asked to login again. What's wrong?
1218 Check the value you set for the $cfg['PmaAbsoluteUri'] directive in
1219 the phpMyAdmin configuration file.
1221 [3. Known limitations]
1223 [3.1] When using http authentication, an user who logged out can not
1224 relog in with the same nick.
1225 This is related to the authentication mechanism (protocol) used by
1226 phpMyAdmin. We plan to change it as soon as we may find enough free
1227 time to do it, but you can bypass this problem: just close all the
1228 opened browser windows and then go back to phpMyAdmin. You should be
1229 able to logs in again.
1231 [3.2] When dumping a large table in compressed mode, I get a memory
1232 limit error or a time limit error.
1233 As of version 2.2.4, we build the compressed dump in memory, so large
1234 tables dumps may hang. The only alternative we can think about (using
1235 system calls to mysqldump then gzip or bzip2) would not be applicable
1236 in environments where PHP is in safe mode: access to system programs
1237 is is limited by the system administrator, and time limit is enforced.
1239 [3.3] With InnoDB tables, I lose foreign key relationships when I
1240 rename or alter a table.
1241 This seems to be a InnoDB bug (fixed in MySQL 3.23.50?). However, keep
1242 in mind that phpMyAdmin as of version 2.3.0 does not support InnoDB.
1244 [3.4] I am unable to import dumps I created with the mysqldump tool
1245 bundled with the MySQL server distribution.
1246 The problem is that mysqldump creates invalid comments like this:
1250 -- Host: localhost Database: database
1251 ---------------------------------------------------------
1252 -- Server version 3.23.54
1254 The invalid part of the code is the horizontal line made of dashes
1255 that appears once in every dump created with mysqldump. If you want to
1256 run your dump you have to turn it into valid MySQL. This means, you
1257 have to add a whitespace after the first to dashes of the line or add
1259 -- -------------------------------------------------------
1261 #---------------------------------------------------------
1263 [4. ISPs, multi-user installations ]
1265 [4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I
1266 need to install it for each customer?
1267 Since version 2.0.3, you can setup a central copy of phpMyAdmin for
1268 all your users. The development of this feature was kindly sponsored
1269 by NetCologne GmbH. This requires a properly setup MySQL user
1270 management and phpMyAdmin http or cookie authentication. See the
1271 install section on "Using http authentication".
1273 [4.2] What's the preferred way of making phpMyAdmin secure against
1275 This depends on your system.
1276 If you're running a server which cannot be accessed by other people,
1277 it's sufficient to use the directory protection bundled with your
1278 webserver (with Apache you can use .htaccess files, for example).
1279 If other people have telnet access to your server, you should use
1280 phpMyAdmin's http authentication feature.
1282 * Your config.inc.php3 file should be chmod 660.
1283 * All your phpMyAdmin files should be chown phpmy.apache, where
1284 phpmy is a user whose password is only known to you, and apache is
1285 the group under which Apache runs.
1286 * You should use PHP safe mode, to protect from other users that try
1287 to include your config.inc.php3 in their scripts.
1289 [4.3] I get errors about not being able to include a file in /lang or
1291 Check php.ini, or ask your sysadmin to check it. The include_path must
1292 contain "." somewhere in it, and open_basedir, if used, must contain
1293 "." and "./lang" to allow normal operation of phpMyAdmin.
1295 [4.4] phpMyAdmin always gives "Access denied" when using http
1297 This could happen for several reasons:
1298 * $cfg['Servers'][$i]['controluser'] and/or
1299 $cfg['Servers'][$i]['controlpass'] are wrong.
1300 * The username/password you specify in the login-dialog are invalid.
1301 * You have already setup a security mechanism for the
1302 phpMyAdmin-directory, eg. a .htaccess file. This would interfere
1303 with phpMyAdmin's authentication, so remove it.
1305 [4.5] Is it possible to let users create their own databases?
1306 Starting with 2.2.5, in the user management page, you can enter a
1307 wildcard database name for a user, and put the privileges you want.
1308 For example, adding SELECT, INSERT, UPDATE, DELETE, CREATE, DROP,
1309 INDEX, ALTER would let a user create/manage his/her database(s).
1311 [4.6] How can I use the Host-based authentication additions?
1312 If you have existing rules from an old .htaccess file, you can take
1313 them and add a username between the 'deny'/'allow' and 'from' strings.
1314 Using the username wildcard of '%' would be a major benefit here if
1315 your installation is suited to using it. Then you can just add those
1316 updated lines into the $cfg['Servers'][$i]['AllowDeny']['rules']
1318 If you want a pre-made sample, you can try this fragment. It stops the
1319 'root' user from logging in from any networks other than the private
1321 //block root from logging in except from the private networks
1322 $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow';
1323 $cfg['Servers'][$i]['AllowDeny']['rules'] = array(
1324 'deny root from all',
1325 'allow root from localhost',
1326 'allow root from 10.0.0.0/8',
1327 'allow root from 192.168.0.0/16',
1328 'allow root from 172.16.0.0/12',
1331 [5. Browsers or client OS]
1333 [5.1] I get an out of memory error, and my controls are
1334 non-functional, when trying to create a table with more than 14
1336 We could reproduce this problem only under Win98/98SE. Testing under
1337 WinNT4 or Win2K, we could easily create more than 60 fields.
1338 A workaround is to create a smaller number of fields, then come back
1339 to your table properties and add the other fields.
1341 [5.2] With Xitami 2.5b4, phpMyAdmin won't process form fields.
1342 This is not a phpMyAdmin problem but a Xitami known bug: you'll face
1343 it with each script/website that use forms.
1344 Upgrade or downgrade your Xitami server.
1346 [5.3] I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2)
1347 With Konqueror 2.1.1: plain dumps, zip and gzip dumps work ok, except
1348 that the proposed file name for the dump is always 'tbl_dump.php'.
1349 Bzip2 dumps don't seem to work.
1350 With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the
1351 user's temporary directory, so they must be moved before closing
1352 Konqueror, or else they disappear. Gzip dumps give an error message.
1353 Testing needs to be done for Konqueror 2.2.2.
1355 [5.4] I can't use the cookie authentication mode because Internet
1356 Explorer never stores the cookies.
1357 MS Internet Explorer seems to be really buggy about cookies, at least
1358 till version 6. And thanks to Andrew Zivolup we've traced also a php
1359 4.1.1 bug in this area!
1360 Then, if you're running php 4.1.1, try to upgrade or downgrade... it
1363 [5.5] In Internet Explorer 5.0, I get Javascript errors when browsing
1365 Upgrade to at least Internet Explorer 5.5SP2.
1367 [5.6] In Internet Explorer 5.0, 5.5 or 6.0, I get an error when trying
1368 to modify a row in a table with many fields, or with a text field.
1369 Your table neither have a primary key nor an unique one, so we must
1370 use a long URL to identify this row. There is a limit on the lenght of
1371 the URL in those browsers, and this not happen in Netscape, for
1372 example. The workaround is to create a primary or unique key, or use
1375 [5.7] I refresh (reload) my browser, and come back to the welcome
1377 Some browsers support right-clicking into the frame you want to
1378 refresh, just do this in the right frame.
1380 [5.8] With Mozilla 0.9.7 I have problems sending a query modified in
1382 Looks like a Mozilla bug: 0.9.6 was ok. We will keep an eye on future
1385 [5.9] With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a
1386 whitespace in the SQL-Query edit area: the page scrolls down.
1387 This is a Mozilla bug (see bug #26882 at Bugzilla).
1389 [5.10] With Netscape 4.75 I get empty rows between each row of data in
1390 a CSV exported file.
1391 This is a known Netscape 4.75 bug: it adds some line feeds when
1392 exporting data in octet-stream mode. Since we can't detect the
1393 specific Netscape version, we cannot workaround this bug.
1395 [5.11] Extended-ASCII characters like German umlauts are displayed
1397 Please ensure that you have set your browser's charset to the one of
1398 the language file you have selected on phpMyAdmin's start page.
1399 Alternatively, you can try the auto detection mode that is supported
1400 by the recent versions of the most browsers.
1402 [5.12] Apple OS X: Safari browser changes special characters to "?".
1403 This issue has been reported by a OS X user, who adds that Chimera,
1404 Netscape and Mozilla do not have this problem.
1406 [6. Using phpMyAdmin]
1408 [6.1] I can't insert new rows into a table / I can't create a table -
1409 MySQL brings up a SQL-error.
1410 Examine the SQL error with care. Often the problem is caused by
1411 specifying a wrong field-type.
1412 Common errors include:
1413 * Using VARCHAR without a size argument
1414 * Using TEXT or BLOB with a size argument
1416 Also, look at the syntax chapter in the MySQL manual to confirm that
1417 your syntax is correct.
1419 [6.2] When I create a table, I click the Index checkbox for 2 fields
1420 and phpMyAdmin generates only one index with those 2 fields.
1421 In phpMyAdmin 2.2.0 and 2.2.1, this is the way to create a
1422 multi-fields index. If you want two indexes, create the first one when
1423 creating the table, save, then display the table properties and click
1424 the Index link to create the other index.
1426 [6.3] How can I insert a null value into my table?
1427 Since version 2.2.3, you have a checkbox for each field that can be
1428 null. Before 2.2.3, you had to enter "null", without the quotes, as
1431 [6.4] How can I backup my database or table?
1432 Click on a database or table name in the left frame, the properties
1433 will be displayed. Then on the menu, click "Export", you can dump the
1434 structure, the data, or both. This will generate standard SQL
1435 statements that can be used to recreate your database/table.
1436 You will need to choose "Save as file", so that phpMyAdmin can
1437 transmit the resulting dump to your station. Depending on your PHP
1438 configuration, you will see options to compress the dump. See also the
1439 $cfg['ExecTimeLimit'] configuration variable.
1440 For additional help on this subject, look for the word "dump" in this
1443 [6.5] How can I restore (upload) my database or table using a dump?
1444 How can I run a ".sql" file?
1445 Click on a database name in the left frame, the properties will be
1446 local displayed. Then in the "Run SQL query" section, type in your
1447 dump filename, or use the Browse button. Then click Go.
1448 For additional help on this subject, look for the word "upload" in
1451 [6.6] How can I use the relation table in Query-by-example?
1452 Here is an example with the tables persons, towns and countries, all
1453 located in the database mydb. If you don't have a PMA_relation table,
1454 create it as explained in the configuration section. Then create the
1456 CREATE TABLE REL_countries (
1457 country_code char(1) NOT NULL default '',
1458 description varchar(10) NOT NULL default '',
1459 PRIMARY KEY (country_code)
1461 INSERT INTO REL_countries VALUES ('C', 'Canada');
1462 CREATE TABLE REL_persons (
1463 id tinyint(4) NOT NULL auto_increment,
1464 person_name varchar(32) NOT NULL default '',
1465 town_code varchar(5) default '0',
1466 country_code char(1) NOT NULL default '',
1469 INSERT INTO REL_persons VALUES (11, 'Marc', 'S', '');
1470 INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C');
1471 CREATE TABLE REL_towns (
1472 town_code varchar(5) NOT NULL default '0',
1473 description varchar(30) NOT NULL default '',
1474 PRIMARY KEY (town_code)
1476 INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
1477 INSERT INTO REL_towns VALUES ('M', 'Montréal');
1478 To setup appropriate links and display information:
1479 * on table "REL_persons" click Structure, then Relation view
1480 * in Links, for "town_code" choose "REL_towns->code"
1481 * in Links, for "country_code" choose "REL_countries->country_code"
1482 * on table "REL_towns" click Structure, then Relation view
1483 * in "Choose field to display", choose "description"
1484 * repeat the two previous steps for table "REL_countries"
1486 Then test like this:
1487 * Click on your db name in the left frame
1489 * Use tables: persons, towns, countries
1490 * Click "Update query"
1491 * In the fields row, choose persons.person_name and click the "Show"
1493 * Do the same for towns.description and countries.descriptions in
1495 * Click "Update query" and you will see in the query box that the
1496 correct joins have been generated
1497 * Click "Submit query"
1499 [6.7] How can I use the "display field" feature?
1500 Starting from the previous example, create the PMA_table_info as
1501 explained in the configuration section, then browse your persons
1502 table, and move the mouse over a town code or country code.
1504 [6.8] How can I produce a PDF schema of my database?
1505 First you have to fill the "relation", "table_coords" and "pdf_pages"
1506 configuration variables.
1507 Then, think about your schema layout: which tables will go on which
1509 * Click on your db name in the left frame
1510 * Choose "Structure" in the navigation on top
1511 * Choose "Edit PDF Pages" which should be somewhere at the bottom of
1513 * Enter the name for a first pdf page and submit
1514 * Choose this page to edit
1515 * Now add a table you want to show on this page and it's coordinates
1517 First you will have to guess this coordinates of course, so just
1518 expect to have an area of about 297 * 210 and put the tables
1519 coordinates somewhere in there, you will be able to have a look at
1520 what happened and change them later.
1521 For example, x=100 and y=200 means that the table will be at 200
1522 mm down and 100 mm right from the upper left corner.
1523 Actually if you have a width of more than 300 or a height of more
1524 than 200 than it will automatically be scaled but 300*100 is a
1525 good start to have an idea of what coordinates to use.
1526 * After every table you submitted you will have the possibility to
1528 * When you have entered enough tables Click on your db name in the
1530 * Now, again at the bottom of the page you should be able to choose
1531 "Display PDF schema"
1532 For testing it might be useful to show the grid as well, so you
1533 can see the coordinates used.
1534 Maybe also choose color and submit.
1535 * Save the file he will offer you to something like Schema.pdf
1536 (Internet Explorer has some bug there which might make it offer it
1537 without an extension. Under Windows it is important to have the
1538 extension ".pdf", under other OSes you should be fine just saving
1539 the file under the name it offers).
1541 [6.9] phpMyAdmin is changing the type of one of my columns!
1542 No, it's MySQL that is doing silent column type changing.
1544 [6.10] My database has an underscore in it's name, and when I grant
1545 privileges to a user for this database, a backslash is added before
1547 This is normal and means that the grant is done only for this
1548 database. If there was no backslash, this would be a wildcard grant,
1549 and the underscore would mean "any character". So, if the database
1550 name is "john_db", the user would get rights to john1db, john2db...
1551 instead of just john_db.
1552 If you really want to grant using a wildcard, there is a dialog box "
1553 Database (wildcards allowed)" for this.
1555 [6.11] What is the curious symbol ø in the table statistics?
1558 [6.12] I want to understand some Export options.
1559 "Complete inserts" adds the column names on every INSERT command, for
1560 better documentation (but resulting file is bigger).
1561 "Extended inserts" provides a shorter dump file by using only once the
1562 INSERT verb and the table name.
1563 "Enclose table and field names with backquotes" ensures that field and
1564 table names formed with special characters are protected.
1566 [6.13] I would like to create a database with a dot in its name.
1567 This is a bad idea, because in MySQL the syntax "database.table" is
1568 the normal way to reference a database and table name. Worse, MySQL
1569 will usually let you create a database with a dot, but then you cannot
1570 work with it, nor delete it.
1572 [6.14] How do I set up the SQL validator?
1573 To use it, you need a very recent version of PHP, 4.3.0 recommended,
1574 with XML, PCRE and PEAR support. On your system command line, run
1575 "pear install Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP"
1576 to get the nessecary PEAR modules for usage.
1577 If you use it, you should be aware that any SQL statement you submit
1578 will be stored anonymously (database/table/column names, strings,
1579 numbers replaced with generic values). The Mimer SQL Validator itself,
1580 is © 2001 Upright Database Technology. We utilize it as free SOAP
1583 [6.15] I want to add a BLOB field and put an index on it, but MySQL
1584 says "BLOB column '...' used in key specification without a key
1586 The right way to do this, is to create the field without any indexes,
1587 then display the table structure and use the "Create an index" dialog.
1588 On this page, you will be able to choose your BLOB field, and set a
1589 size to the index, which is the condition to create an index on a BLOB
1592 [6.16] How can I simply move in page with plenty editing fields?
1593 You can use Ctrl+arrows for moving on most pages with plenty editing
1594 fields (table structure changes, row editing, etc.).
1596 [7. phpMyAdmin project]
1598 [7.1] I have found a bug. How do I inform developers?
1599 Our Bug Tracker is located at
1600 http://sourceforge.net/projects/phpmyadmin/ under the Bugs section.
1601 But please first discuss your bug with other users:
1602 http://sourceforge.net/projects/phpmyadmin/ (and choose Forums)
1604 [7.2] I want to translate the messages to a new language or upgrade an
1605 existing language, where do I start?
1606 Always use the current cvs version of your language file. For a new
1607 language, start from english-iso-8859-1.inc.php3. If you don't know
1608 how to get the cvs version, please ask one of the developers.
1609 Please note that we try not to use html entities like é in the
1610 translations, since we define the right character set in the file.
1611 With html entities, the text on buttons would not display correctly.
1612 You can then put your translations, as a zip file to avoid losing
1613 special characters, on the sourceforge.net translation tracker.
1614 It would be a good idea to subscribe to the phpmyadmin-translators
1615 mailing list, because this is where we ask for translations of new
1618 [7.3] I would like to help out with the development of phpMyAdmin. How
1620 The following method is preferred for new developers:
1621 * fetch the current CVS tree over anonymous CVS:
1623 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
1625 [Password: simply press the Enter key]
1627 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
1628 admin checkout phpMyAdmin
1629 [This will create a new sub-directory named phpMyAdmin]
1631 * put the modified files (tar'ed and gzip'ed) inside the patch
1632 tracker of the phpMyAdmin SourceForge account.
1634 Write access to the CVS tree is granted only to experienced developers
1635 who have already contributed something useful to phpMyAdmin.
1636 Also, have a look at the Developers section.
1637 ______________________________________________________________________
1639 Top - Requirements - Introduction - Installation -
1640 Configuration - FAQ - Developers - Credits
1641 ______________________________________________________________________
1643 Developers Information
1645 phpMyAdmin is Open Source, so you're invited to contribute to it. Many
1646 great features have been written by other people and you too can help
1647 to make phpMyAdmin a useful tool.
1649 If you're planning to contribute source, please read the following
1651 * All files include header.inc.php3 (layout),
1652 libraries/common.lib.php3 (common functions) and config.inc.php3.
1653 All configuration data belongs in config.inc.php3. Please keep it
1654 free from other code.
1655 Commonly used functions should be added to
1656 libraries/common.lib.php3 and more specific ones may be added
1657 within a library stored into the libraries sub-directory.
1658 * Obviously, you're free to use whatever coding style you want. But
1659 please try to keep your code as simple as possible: beginners are
1660 using phpMyAdmin as an example application.
1661 As far as possible, we want the scripts to be XHTML1.0 and CSS2
1662 compliant on one hand, they fit PEAR coding standards on the other
1663 hand. Please pay attention to this.
1664 * Please try to keep up the file-naming conventions. Table-related
1665 stuff goes to tbl_*.php3, db-related code to db_*.php3,
1666 server-related tools to server_*.php3 and so on.
1667 * Please don't use verbose strings in your code, instead add the
1668 string (at least) to english-iso-8859-1.inc.php3 and print() it
1670 * If you want to be really helpful, write an entry for the
1673 IMPORTANT: With 1.4.1, development has switched to CVS. The following
1674 method is preferred for new developers:
1675 * fetch the current CVS tree over anonymous CVS:
1677 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
1679 [Password: simply press the Enter key]
1681 -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmy
1682 admin checkout phpMyAdmin
1683 [This will create a new sub-directory named phpMyAdmin]
1685 * put the modified files (tar'ed and gzip'ed) inside the patch
1686 tracker of the phpMyAdmin SourceForge account
1687 (http://sourceforge.net/projects/phpmyadmin/)
1689 Write access to the CVS tree is granted only to developers who have
1690 already contributed something useful to phpMyAdmin. If you're
1691 interested in that, please contact us using the phpmyadmin-devel
1693 ______________________________________________________________________
1695 Top - Requirements - Introduction - Installation -
1696 Configuration - FAQ - Developers - Credits
1697 ______________________________________________________________________
1702 phpMyAdmin - Credits
1703 ====================
1705 CREDITS, in chronological order
1706 -------------------------------
1708 - Tobias Ratschiller <tobias.ratschiller_at_maguma.com>
1709 * creator of the phpmyadmin project
1710 * maintainer from 1998 to summer 2000
1712 - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca>
1713 * multi-language version
1714 * various fixes and improvements
1715 * project co-administrator
1717 - Olivier Müller <om_at_omnis.ch>
1718 * started SourceForge phpMyAdmin project in March 2001
1719 * sync'ed different existing CVS trees with new features and bugfixes
1720 * multi-language improvements, dynamic language selection
1721 * current project maintainer
1722 * many bugfixes and improvements
1724 - Loïc Chapeaux <lolo_at_phpheaven.net>
1725 * rewrote and optimized javascript, DHTML and DOM stuff
1726 * rewrote the scripts so they fit the PEAR coding standards and
1727 generate XHTML1.0 and CSS2 compliant codes
1728 * improved the language detection system
1729 * many bugfixes and improvements
1731 - Robin Johnson <robbat2_at_users.sourceforge.net>
1732 * database maintence controls
1734 * Host authentication IP Allow/Deny
1735 * DB-based configuration (Not completed)
1738 * many bugfixes and improvements
1740 - Armel Fauveau <armel.fauveau_at_globalis-ms.com>
1742 * multiple dump feature
1746 - Geert Lund <glund_at_silversoft.dk>
1748 * moderator of the phpMyAdmin users forum at phpwizard.net
1750 - Korakot Chaovavanich <korakot_at_iname.com>
1751 * "insert as new row" feature
1753 - Pete Kelly <webmaster_at_trafficg.com>
1754 * rewrote and fix dump code
1757 - Steve Alberty <alberty_at_neptunlabs.de>
1758 * rewrote dump code for PHP4
1759 * mySQL table statistics
1762 - Benjamin Gandon <gandon_at_isia.cma.fr>
1763 * main author of the version 2.1.0.1
1766 - Alexander M. Turek <rabus_at_bugfixes.info>
1768 * MySQL 4 related features
1769 * various small features and fixes
1770 * German language file updates
1772 - Mike Beck <mike.beck_at_ibmiller.de>
1773 * automatic joins in QBE
1774 * links column in printview
1777 - Michal Cihar <nijel_at_users.sourceforge.net>
1778 * enhanced index creation/display feature
1779 * feature to use a different charset for HTML than for MySQL
1780 * Czech language file updates
1782 - Christophe Gesché from the "MySQL Form Generator for PHPMyAdmin"
1783 (http://sourceforge.net/projects/phpmysqlformgen/)
1784 * suggested the patch for multiple table printviews
1786 - Garvin Hicking <hicking_at_faktor-e.de>
1787 * built the patch for vertical display of table rows
1789 - Yukihiro Kawada <kawada_at_den.fujifilm.co.jp>
1790 * japanese kanji encoding conversion feature
1792 - Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson
1793 * the Cookie authentication mode
1795 - Axel Sander <n8falke_at_users.sourceforge.net>
1796 * table relation-links feature
1798 - Maxime Delorme <delorme.maxime_at_free.fr>
1799 * PDF schema output, thanks also to Olivier Plathey for the
1800 "FPDF" library (see http://www.fpdf.org/).
1802 - Olof Edlund <olof.edlund_at_upright.se>
1803 * SQL validator server
1805 - Ivan R. Lanin <ivanlanin_at_users.sourceforfe.net>
1808 And also to the following people who have contributed minor changes,
1809 enhancements, bugfixes or support for a new language since version 2.1.0:
1811 Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
1812 Péter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,
1813 Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kläger,
1814 Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley
1816 Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,
1817 www.securereality.com.au, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky,
1818 Rachim Tamsjadi, Kositer Uros, Luís V., Martijn W. van der Lee,
1819 Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai,
1820 Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas.
1823 Original Credits of Version 2.1.0
1824 ---------------------------------
1826 This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea
1827 to create a web-based interface to MySQL using PHP3. Although I have not
1828 used any of his source-code, there are some concepts I've borrowed from
1829 him. phpMyAdmin was created because Peter told me he wasn't going to
1830 further develop his (great) tool.
1832 - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the
1833 code for the check when dropping a table or database. He also suggested
1834 that you should be able to specify the primary key on tbl_create.php3. To
1835 version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as
1836 well as a bug-report. Plus many smaller improvements.
1837 - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes that
1838 were introduced in 1.3.0 (including quite significant ones like the
1839 authentication). For 1.4.1 he enhanced the table-dump feature. Plus
1841 - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made phpMyAdmin
1842 language-independent by outsourcing the strings to a separate file. He
1843 also contributed the French translation.
1844 - Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed
1845 tbl_select.php3, a feature to display only some fields from a table.
1846 - Chris Jackson <chrisj_at_ctel.net> added support for MySQL
1847 functions in tbl_change.php3. He also added the
1848 "Query by Example" feature in 2.0.
1849 - Dave Walton <walton_at_nordicdms.com> added support for multiple
1850 servers and is a regular contributor for bug-fixes.
1851 - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access
1853 The following people have contributed minor changes, enhancements, bugfixes
1854 or support for a new language:
1855 Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,
1856 Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov,
1857 Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,
1860 And thanks to everyone else who sent me email with suggestions, bug-reports
1861 and or just some feedback.
1862 ______________________________________________________________________
1864 Top - Requirements - Introduction - Installation -
1865 Configuration - FAQ - Developers - Credits
1866 ______________________________________________________________________
1868 Valid XHTML 1.0! Valid CSS!