lang
[phpmyadmin/crack.git] / config.inc.php3
blobf91c55d43ad21ce5c8e1b8d26b5352986fe6b58a
1 <?php
2 /* $Id$ */
3 // vim: expandtab sw=4 ts=4 sts=4:
5 /**
6 * phpMyAdmin Configuration File
8 * All directives are explained in Documentation.html
9 */
12 /**
13 * Sets the php error reporting - Please do not change this line!
15 if (!isset($old_error_reporting)) {
16 error_reporting(E_ALL);
17 @ini_set('display_errors', '1');
21 /**
22 * Your phpMyAdmin url
24 * Complete the variable below with the full url ie
25 * http://www.your_web.net/path_to_your_phpMyAdmin_directory/
27 * It must contain characters that are valid for a URL, and the path is
28 * case sensitive on some Web servers, for example Unix-based servers.
30 * In most cases you can leave this variable empty, as the correct value
31 * will be detected automatically. However, we recommend that you do
32 * test to see that the auto-detection code works in your system. A good
33 * test is to browse a table, then edit a row and save it. There will be
34 * an error message if phpMyAdmin cannot auto-detect the correct value.
36 * If the auto-detection code does work properly, you can set to TRUE the
37 * $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
39 $cfg['PmaAbsoluteUri'] = '';
42 /**
43 * Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
44 * You should use this if and ONLY if the PmaAbsoluteUri auto-detection
45 * works perfectly.
47 $cfg['PmaAbsoluteUri_DisableWarning'] = FALSE;
49 /**
50 * Disable the default warning that is displayed on the DB Details Structure page if
51 * any of the required Tables for the relationfeatures could not be found
53 $cfg['PmaNoRelation_DisableWarning'] = FALSE;
55 /**
56 * The 'cookie' auth_type uses blowfish algorithm to encrypt the password.
57 * If at least one server configuration uses 'cookie' auth_type,
58 * enter here a passphrase that will be used by blowfish.
60 $cfg['blowfish_secret'] = '';
62 /**
63 * Server(s) configuration
65 $i = 0;
66 // The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
67 // You can disable a server config entry by setting host to ''.
68 $i++;
69 $cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname
70 $cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
71 $cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
72 $cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
73 $cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
74 // (requires PHP >= 4.3.0)
75 $cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
76 // (this user must have read-only
77 $cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
78 // and "mysql/db" tables)
79 $cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
80 $cfg['Servers'][$i]['user'] = 'root'; // MySQL user
81 $cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
82 // with 'config' auth_type)
83 $cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only
84 // this db is displayed
85 // at left frame
86 // It may also be an array
87 // of db-names
88 $cfg['Servers'][$i]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
90 $cfg['Servers'][$i]['pmadb'] = ''; // Database used for Relation, Bookmark and PDF Features
91 // (see scripts/create_tables.sql)
92 // - leave blank for no support
93 // DEFAULT: 'phpmyadmin'
94 $cfg['Servers'][$i]['bookmarktable'] = ''; // Bookmark table
95 // - leave blank for no bookmark support
96 // DEFAULT: 'PMA_bookmark'
97 $cfg['Servers'][$i]['relation'] = ''; // table to describe the relation between links (see doc)
98 // - leave blank for no relation-links support
99 // DEFAULT: 'PMA_relation'
100 $cfg['Servers'][$i]['table_info'] = ''; // table to describe the display fields
101 // - leave blank for no display fields support
102 // DEFAULT: 'PMA_table_info'
103 $cfg['Servers'][$i]['table_coords'] = ''; // table to describe the tables position for the PDF schema
104 // - leave blank for no PDF schema support
105 // DEFAULT: 'PMA_table_coords'
106 $cfg['Servers'][$i]['pdf_pages'] = ''; // table to describe pages of relationpdf
107 // - leave blank if you don't want to use this
108 // DEFAULT: 'PMA_pdf_pages'
109 $cfg['Servers'][$i]['column_info'] = ''; // table to store column information
110 // - leave blank for no column comments/mime types
111 // DEFAULT: 'PMA_column_info'
112 $cfg['Servers'][$i]['history'] = ''; // table to store SQL history
113 // - leave blank for no SQL query history
114 // DEFAULT: 'PMA_history'
115 $cfg['Servers'][$i]['verbose_check'] = TRUE; // set to FALSE if you know that your PMA_* tables
116 // are up to date. This prevents compatibility
117 // checks and thereby increases performance.
118 $cfg['Servers'][$i]['AllowDeny']['order'] // Host authentication order, leave blank to not use
119 = '';
120 $cfg['Servers'][$i]['AllowDeny']['rules'] // Host authentication rules, leave blank for defaults
121 = array();
124 $i++;
125 $cfg['Servers'][$i]['host'] = '';
126 $cfg['Servers'][$i]['port'] = '';
127 $cfg['Servers'][$i]['socket'] = '';
128 $cfg['Servers'][$i]['connect_type'] = 'tcp';
129 $cfg['Servers'][$i]['compress'] = FALSE;
130 $cfg['Servers'][$i]['controluser'] = '';
131 $cfg['Servers'][$i]['controlpass'] = '';
132 $cfg['Servers'][$i]['auth_type'] = 'config';
133 $cfg['Servers'][$i]['user'] = 'root';
134 $cfg['Servers'][$i]['password'] = '';
135 $cfg['Servers'][$i]['only_db'] = '';
136 $cfg['Servers'][$i]['verbose'] = '';
137 $cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql
138 $cfg['Servers'][$i]['bookmarktable'] = ''; // 'PMA_bookmark'
139 $cfg['Servers'][$i]['relation'] = ''; // 'PMA_relation'
140 $cfg['Servers'][$i]['table_info'] = ''; // 'PMA_table_info'
141 $cfg['Servers'][$i]['table_coords'] = ''; // 'PMA_table_coords'
142 $cfg['Servers'][$i]['pdf_pages'] = ''; // 'PMA_pdf_pages'
143 $cfg['Servers'][$i]['column_info'] = ''; // 'PMA_column_info'
144 $cfg['Servers'][$i]['history'] = ''; // 'PMA_history'
145 $cfg['Servers'][$i]['verbose_check'] = TRUE;
146 $cfg['Servers'][$i]['AllowDeny']['order']
147 = '';
148 $cfg['Servers'][$i]['AllowDeny']['rules']
149 = array();
151 $i++;
152 $cfg['Servers'][$i]['host'] = '';
153 $cfg['Servers'][$i]['port'] = '';
154 $cfg['Servers'][$i]['socket'] = '';
155 $cfg['Servers'][$i]['connect_type'] = 'tcp';
156 $cfg['Servers'][$i]['compress'] = FALSE;
157 $cfg['Servers'][$i]['controluser'] = '';
158 $cfg['Servers'][$i]['controlpass'] = '';
159 $cfg['Servers'][$i]['auth_type'] = 'config';
160 $cfg['Servers'][$i]['user'] = 'root';
161 $cfg['Servers'][$i]['password'] = '';
162 $cfg['Servers'][$i]['only_db'] = '';
163 $cfg['Servers'][$i]['verbose'] = '';
164 $cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql
165 $cfg['Servers'][$i]['bookmarktable'] = ''; // 'PMA_bookmark'
166 $cfg['Servers'][$i]['relation'] = ''; // 'PMA_relation'
167 $cfg['Servers'][$i]['table_info'] = ''; // 'PMA_table_info'
168 $cfg['Servers'][$i]['table_coords'] = ''; // 'PMA_table_coords'
169 $cfg['Servers'][$i]['pdf_pages'] = ''; // 'PMA_pdf_pages'
170 $cfg['Servers'][$i]['column_info'] = ''; // 'PMA_column_info'
171 $cfg['Servers'][$i]['history'] = ''; // 'PMA_history'
172 $cfg['Servers'][$i]['verbose_check'] = TRUE;
173 $cfg['Servers'][$i]['AllowDeny']['order']
174 = '';
175 $cfg['Servers'][$i]['AllowDeny']['rules']
176 = array();
178 // If you have more than one server configured, you can set $cfg['ServerDefault']
179 // to any one of them to autoconnect to that server when phpMyAdmin is started,
180 // or set it to 0 to be given a list of servers without logging in
181 // If you have only one server configured, $cfg['ServerDefault'] *MUST* be
182 // set to that server.
183 $cfg['ServerDefault'] = 1; // Default server (0 = no default server)
184 $cfg['Server'] = '';
185 unset($cfg['Servers'][0]);
189 * Other core phpMyAdmin settings
191 $cfg['OBGzip'] = 'auto'; // use GZIP output buffering if possible (TRUE|FALSE|'auto')
192 $cfg['PersistentConnections'] = FALSE; // use persistent connections to MySQL database
193 $cfg['ExecTimeLimit'] = 300; // maximum execution time in seconds (0 for no limit)
194 $cfg['SkipLockedTables'] = FALSE; // mark used tables, make possible to show
195 // locked tables (since MySQL 3.23.30)
196 $cfg['ShowSQL'] = TRUE; // show SQL queries as run
197 $cfg['AllowUserDropDatabase'] = FALSE; // show a 'Drop database' link to normal users
198 $cfg['Confirm'] = TRUE; // confirm 'DROP TABLE' & 'DROP DATABASE'
199 $cfg['LoginCookieRecall'] = TRUE; // recall previous login in cookie auth. mode or not
200 $cfg['UseDbSearch'] = TRUE; // whether to enable the "database search" feature
201 // or not
203 // Left frame setup
204 $cfg['LeftFrameLight'] = TRUE; // use a select-based menu and display only the
205 // current tables in the left frame.
206 $cfg['LeftFrameTableSeparator']= '__'; // Which string will be used to generate table prefixes
207 // to split tables into multiple categories
208 $cfg['LeftFrameTableLevel'] = '1'; // How many sublevels should be displayed when splitting
209 // up tables by the above Separator
210 $cfg['ShowTooltip'] = TRUE; // display table comment as tooltip in left frame
211 $cfg['ShowTooltipAliasDB'] = FALSE; // if ShowToolTip is enabled, this defines that table/db comments
212 $cfg['ShowTooltipAliasTB'] = FALSE; // are shown (in the left menu and db_details_structure) instead of
213 // table/db names
215 $cfg['LeftDisplayLogo'] = TRUE; // display logo at top of left frame
216 $cfg['LeftDisplayServers'] = FALSE; // display server choice at top of left frame
218 // In the main frame, at startup...
219 $cfg['ShowStats'] = TRUE; // allow to display statistics and space usage in
220 // the pages about database details and table
221 // properties
222 $cfg['ShowMysqlInfo'] = FALSE; // whether to display the "MySQL runtime
223 $cfg['ShowMysqlVars'] = FALSE; // information", "MySQL system variables", "PHP
224 $cfg['ShowPhpInfo'] = FALSE; // information" and "change password" links for
225 $cfg['ShowChgPassword'] = FALSE; // simple users or not
226 $cfg['SuggestDBName'] = TRUE; // suggest a new DB name if possible (false = keep empty)
228 // In browse mode...
229 $cfg['ShowBlob'] = FALSE; // display blob field contents
230 $cfg['NavigationBarIconic'] = TRUE; // do not display text inside navigation bar buttons
231 $cfg['ShowAll'] = FALSE; // allows to display all the rows
232 $cfg['MaxRows'] = 30; // maximum number of rows to display
233 $cfg['Order'] = 'ASC'; // default for 'ORDER BY' clause (valid
234 // values are 'ASC', 'DESC' or 'SMART' -ie
235 // descending order for fields of type
236 // TIME, DATE, DATETIME & TIMESTAMP,
237 // ascending order else-)
239 // In edit mode...
240 $cfg['ProtectBinary'] = 'blob'; // disallow editing of binary fields
241 // valid values are:
242 // FALSE allow editing
243 // 'blob' allow editing except for BLOB fields
244 // 'all' disallow editing
245 $cfg['ShowFunctionFields'] = TRUE; // Display the function fields in edit/insert mode
246 $cfg['CharEditing'] = 'input';
247 // Which editor should be used for CHAR/VARCHAR fields:
248 // input - allows limiting of input length
249 // textarea - allows newlines in fields
251 // For the export features...
252 $cfg['ZipDump'] = TRUE; // Allow the use of zip/gzip/bzip
253 $cfg['GZipDump'] = TRUE; // compression for
254 $cfg['BZipDump'] = TRUE; // dump files
256 // Tabs display settings
257 $cfg['LightTabs'] = FALSE; // use graphically less intense menu tabs
258 $cfg['DefaultTabServer'] = 'main.php3';
259 // Possible values:
260 // 'main.php3' = the welcome page
261 // (recommended for multiuser setups)
262 // 'server_databases.php3' = list of databases
263 // 'server_status.php3' = runtime information
264 // 'server_variables.php3' = MySQL server variables
265 // 'server_privileges.php3' = user management
266 // 'server_processlist.php3' = process list
267 $cfg['DefaultTabDatabase'] = 'db_details_structure.php3';
268 // Possible values:
269 // 'db_details_structure.php3' = tables list
270 // 'db_details.php3' = sql form
271 // 'db_search.php3' = search query
272 $cfg['DefaultTabTable'] = 'tbl_properties_structure.php3';
273 // Possible values:
274 // 'tbl_properties_structure.php3' = fields list
275 // 'tbl_properties.php3' = sql form
276 // 'tbl_select.php3 = select page
277 // 'tbl_change.php3 = insert row page
280 * Export defaults
283 $cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml
284 $cfg['Export']['compression'] = 'none'; // none/zip/gzip/bzip2
286 $cfg['Export']['asfile'] = FALSE;
287 $cfg['Export']['onserver'] = FALSE;
288 $cfg['Export']['onserver_overwrite'] = FALSE;
289 $cfg['Export']['remember_file_template'] = TRUE;
291 $cfg['Export']['csv_columns'] = FALSE;
292 $cfg['Export']['csv_null'] = 'NULL';
293 $cfg['Export']['csv_separator'] = ';';
294 $cfg['Export']['csv_enclosed'] = '&quot;';
295 $cfg['Export']['csv_escaped'] = '\\';
296 $cfg['Export']['csv_terminated'] = 'AUTO';
297 $cfg['Export']['excel_null'] = 'NULL';
299 $cfg['Export']['latex_structure'] = TRUE;
300 $cfg['Export']['latex_data'] = TRUE;
301 $cfg['Export']['latex_columns'] = TRUE;
302 $cfg['Export']['latex_relation'] = TRUE;
303 $cfg['Export']['latex_comments'] = TRUE;
304 $cfg['Export']['latex_mime'] = TRUE;
305 $cfg['Export']['latex_null'] = '\textit{NULL}';
307 $cfg['Export']['sql_structure'] = TRUE;
308 $cfg['Export']['sql_data'] = TRUE;
309 $cfg['Export']['sql_drop_database'] = FALSE;
310 $cfg['Export']['sql_drop_table'] = FALSE;
311 $cfg['Export']['sql_auto_increment'] = TRUE;
312 $cfg['Export']['sql_backquotes'] = TRUE;
313 $cfg['Export']['sql_relation'] = FALSE;
314 $cfg['Export']['sql_columns'] = FALSE;
315 $cfg['Export']['sql_extended'] = FALSE;
316 $cfg['Export']['sql_comments'] = FALSE;
317 $cfg['Export']['sql_mime'] = FALSE;
320 * Link to the official MySQL documentation.
321 * Be sure to include no trailing slash on the path.
322 * See http://www.mysql.com/documentation/index.html for more information
323 * about MySQL manuals and their types.
325 $cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en';
328 * Type of MySQL documentation:
329 * old - old style used in phpMyAdmin 2.3.0 and sooner
330 * searchable - "Searchable, with user comments"
331 * chapters - "HTML, one page per chapter"
332 * big - "HTML, all on one page"
333 * none - do not show documentation links
335 $cfg['MySQLManualType'] = 'searchable';
339 * PDF options
341 $cfg['PDFPageSizes'] = array('A3', 'A4', 'A5', 'letter', 'legal');
342 $cfg['PDFDefaultPageSize'] = 'A4';
346 * Language and charset conversion settings
348 // Default language to use, if not browser-defined or user-defined
349 $cfg['DefaultLang'] = 'en-iso-8859-1';
351 // Force: always use this language - must be defined in
352 // libraries/select_lang.lib.php3
353 // $cfg['Lang'] = 'en-iso-8859-1';
355 // Default charset to use for recoding of MySQL queries, does not take
356 // any effect when charsets recoding is switched off by
357 // $cfg['AllowAnywhereRecoding'] or in language file
358 // (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
359 $cfg['DefaultCharset'] = 'iso-8859-1';
361 // Allow charset recoding of MySQL queries, must be also enabled in language
362 // file to make harder using other language files than unicode.
363 // Default value is FALSE to avoid problems on servers without the iconv
364 // extension and where dl() is not supported
365 $cfg['AllowAnywhereRecoding'] = FALSE;
367 // You can select here which functions will be used for charset conversion.
368 // Possible values are:
369 // auto - automatically use available one (first is tested iconv, then
370 // recode)
371 // iconv - use iconv or libiconv functions
372 // recode - use recode_string function
373 $cfg['RecodingEngine'] = 'auto';
375 // Specify some parameters for iconv used in charset conversion. See iconv
376 // documentation for details:
377 // http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html
378 $cfg['IconvExtraParams'] = '';
380 // Available charsets for MySQL conversion. currently contains all which could
381 // be found in lang/* files and few more.
382 // Charsets will be shown in same order as here listed, so if you frequently
383 // use some of these move them to the top.
384 $cfg['AvailableCharsets'] = array(
385 'iso-8859-1',
386 'iso-8859-2',
387 'iso-8859-3',
388 'iso-8859-4',
389 'iso-8859-5',
390 'iso-8859-6',
391 'iso-8859-7',
392 'iso-8859-8',
393 'iso-8859-9',
394 'iso-8859-10',
395 'iso-8859-11',
396 'iso-8859-12',
397 'iso-8859-13',
398 'iso-8859-14',
399 'iso-8859-15',
400 'windows-1250',
401 'windows-1251',
402 'windows-1252',
403 'windows-1257',
404 'koi8-r',
405 'big5',
406 'gb2312',
407 'utf-8',
408 'utf-7',
409 'x-user-defined',
410 'euc-jp',
411 'ks_c_5601-1987',
412 'tis-620',
413 'SHIFT_JIS'
416 // Loads language file
417 require('./libraries/select_lang.lib.php3');
421 * Customization & design
423 $cfg['LeftWidth'] = 150; // left frame width
424 $cfg['LeftBgColor'] = '#D0DCE0'; // background color for the left frame
425 $cfg['RightBgColor'] = '#F5F5F5'; // background color for the right frame
426 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
427 // (leave blank for no background image)
428 $cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
429 // (blank for no pointer)
430 $cfg['Border'] = 0; // border width on tables
431 $cfg['ThBgcolor'] = '#D3DCE3'; // table header row colour
432 $cfg['BgcolorOne'] = '#CCCCCC'; // table data row colour
433 $cfg['BgcolorTwo'] = '#DDDDDD'; // table data row colour, alternate
434 $cfg['BrowsePointerColor'] = '#CCFFCC'; // color of the pointer in browse mode
435 // (blank for no pointer)
436 $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
437 // by clicking on it) in browse mode
438 // (blank for no marker)
439 $cfg['TextareaCols'] = 40; // textarea size (columns) in edit mode
440 // (this value will be emphasized (*2) for sql
441 // query textareas and (*1.25) for query window)
442 $cfg['TextareaRows'] = 7; // textarea size (rows) in edit mode
443 $cfg['LongtextDoubleTextarea'] = TRUE; // double size of textarea size for longtext fields
444 $cfg['TextareaAutoSelect'] = TRUE; // autoselect when clicking in the textarea of the querybox
445 $cfg['CharTextareaCols'] = 40; // textarea size (columns) for CHAR/VARCHAR
446 $cfg['CharTextareaRows'] = 2; // textarea size (rows) for CHAR/VARCHAR
447 $cfg['CtrlArrowsMoving'] = TRUE; // Enable Ctrl+Arrows moving between fields when editing?
448 $cfg['LimitChars'] = 50; // Max field data length in browse mode for all non-numeric fields
449 $cfg['ModifyDeleteAtLeft'] = TRUE; // show edit/delete links on left side of browse
450 // (or at the top with vertical browse)
451 $cfg['ModifyDeleteAtRight'] = FALSE; // show edit/delete links on right side of browse
452 // (or at the bottom with vertical browse)
453 $cfg['DefaultDisplay'] = 'horizontal'; // default display direction
454 // (horizontal|vertical|horizontalflipped)
455 $cfg['DefaultPropDisplay'] = 'horizontal'; // default display direction for altering/
456 // creating columns (tbl_properties)
457 // (horizontal|vertical)
459 $cfg['HeaderFlipType'] = 'css'; // table-header rotation via faking or css? (css|fake)
460 // NOTE: CSS only works in IE browsers!
461 $cfg['ShowBrowseComments'] = TRUE; // shows stored relation-comments in 'browse' mode.
462 $cfg['ShowPropertyComments']= TRUE; // shows stored relation-comments in 'table property' mode.
463 $cfg['RepeatCells'] = 100; // repeat header names every X cells? (0 = deactivate)
465 $cfg['QueryFrame'] = TRUE; // displays a new frame where a link to a querybox is always displayed.
466 $cfg['QueryFrameJS'] = TRUE; // whether to use JavaScript functions for opening a new window for SQL commands.
467 // if set to 'false', the target of the querybox is always the right frame.
468 $cfg['QueryFrameDebug'] = FALSE; // display JS debugging link (DEVELOPERS only)
469 $cfg['QueryWindowWidth'] = 550; // Width of Query window
470 $cfg['QueryWindowHeight'] = 310; // Height of Query window
471 $cfg['QueryHistoryDB'] = FALSE; // Set to TRUE if you want DB-based query history.
472 // If FALSE, this utilizes JS-routines to display
473 // query history (lost by window close)
474 $cfg['QueryWindowDefTab'] = 'sql'; // which tab to display in the querywindow on startup
475 // (sql|files|history|full)
476 $cfg['QueryHistoryMax'] = 25; // When using DB-based query history, how many entries
477 // should be kept?
478 $cfg['BrowseMIME'] = TRUE; // Use MIME-Types (stored in column comments table) for
479 $cfg['MaxExactCount'] = 20000; // When approximate count < this, PMA will get exact count for
480 // table rows.
481 $cfg['WYSIWYG-PDF'] = TRUE; // Utilize DHTML/JS capabilities to allow WYSIWYG editing of
482 // the PDF page editor. Requires an IE6/Mozilla based browser.
485 * SQL Query box settings
486 * These are the links display in all of the SQL Query boxes
488 $cfg['SQLQuery']['Edit'] = TRUE; // Edit link to change a query
489 $cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
490 $cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
491 $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
495 * web-server upload directory
497 $cfg['UploadDir'] = ''; // for example, './upload/'; you must end it with
498 // a slash, and you leave it empty for no upload
499 // directory
500 $cfg['SaveDir'] = ''; // for example, './save/'; you must end it with
501 // a slash, and you leave it empty for no save
502 // directory
506 * Misc. settings
508 $cfg['GD2Available'] = 'auto'; // Is GD >= 2 available? Set to yes/no/auto. 'auto'
509 // does autodetection, which is a bit expensive for
510 // php < 4.3.0, but it is the only safe vay how to
511 // determine GD version.
513 * SQL Parser Settings
515 $cfg['SQP']['fmtType'] = 'html'; // Pretty-printing style to use on queries (html, text, none)
516 $cfg['SQP']['fmtInd'] = '1'; // Amount to indent each level (floats ok)
517 $cfg['SQP']['fmtIndUnit'] = 'em'; // Units for indenting each level (CSS Types - {em,px,pt})
518 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
519 'comment' => '#808000',
520 'comment_mysql' => '',
521 'comment_ansi' => '',
522 'comment_c' => '',
523 'digit' => '',
524 'digit_hex' => 'teal',
525 'digit_integer' => 'teal',
526 'digit_float' => 'aqua',
527 'punct' => 'fuchsia',
528 'alpha' => '',
529 'alpha_columnType' => '#FF9900',
530 'alpha_columnAttrib' => '#0000FF',
531 'alpha_reservedWord' => '#990099',
532 'alpha_functionName' => '#FF0000',
533 'alpha_identifier' => 'black',
534 'alpha_variable' => '#800000',
535 'quote' => '#008000',
536 'quote_double' => '',
537 'quote_single' => '',
538 'quote_backtick' => ''
543 * If you wish to use the SQL Validator service, you should be
544 * aware of the following:
545 * All SQL statements are stored anonymously for statistical purposes.
546 * Mimer SQL Validator, Copyright 2002 Upright Database Technology.
547 * All rights reserved.
549 $cfg['SQLValidator']['use'] = FALSE; // Make the SQL Validator available
550 $cfg['SQLValidator']['username'] = ''; // If you have a custom username, specify it here (defaults to anonymous)
551 $cfg['SQLValidator']['password'] = ''; // Password for username
554 * Developers ONLY!
555 * To use the following, please install the DBG extension from http://dd.cron.ru/dbg/
557 $cfg['DBG']['enable'] = FALSE; // Make the DBG stuff available
558 $cfg['DBG']['profile']['enable'] = FALSE; // Produce profiling results of PHP
559 $cfg['DBG']['profile']['threshold'] = 0.5; // Threshold of long running code to display
560 // Anything below the threshold is not displayed
564 * MySQL settings
566 // Column types;
567 // varchar, tinyint, text and date are listed first, based on estimated popularity
568 $cfg['ColumnTypes'] = array(
569 'VARCHAR',
570 'TINYINT',
571 'TEXT',
572 'DATE',
573 'SMALLINT',
574 'MEDIUMINT',
575 'INT',
576 'BIGINT',
577 'FLOAT',
578 'DOUBLE',
579 'DECIMAL',
580 'DATETIME',
581 'TIMESTAMP',
582 'TIME',
583 'YEAR',
584 'CHAR',
585 'TINYBLOB',
586 'TINYTEXT',
587 'BLOB',
588 'MEDIUMBLOB',
589 'MEDIUMTEXT',
590 'LONGBLOB',
591 'LONGTEXT',
592 'ENUM',
593 'SET'
596 // Atributes
597 $cfg['AttributeTypes'] = array(
599 'BINARY',
600 'UNSIGNED',
601 'UNSIGNED ZEROFILL'
604 // Available functions
605 if ($cfg['ShowFunctionFields']) {
606 $cfg['Functions'] = array(
607 'ASCII',
608 'CHAR',
609 'SOUNDEX',
610 'LCASE',
611 'UCASE',
612 'NOW',
613 'PASSWORD',
614 'MD5',
615 'ENCRYPT',
616 'RAND',
617 'LAST_INSERT_ID',
618 'COUNT',
619 'AVG',
620 'SUM',
621 'CURDATE',
622 'CURTIME',
623 'FROM_DAYS',
624 'FROM_UNIXTIME',
625 'PERIOD_ADD',
626 'PERIOD_DIFF',
627 'TO_DAYS',
628 'UNIX_TIMESTAMP',
629 'USER',
630 'WEEKDAY',
631 'CONCAT'
634 // Which column types will be mapped to which Group?
635 $cfg['RestrictColumnTypes'] = array(
636 'VARCHAR' => 'FUNC_CHAR',
637 'TINYINT' => 'FUNC_NUMBER',
638 'TEXT' => 'FUNC_CHAR',
639 'DATE' => 'FUNC_DATE',
640 'SMALLINT' => 'FUNC_NUMBER',
641 'MEDIUMINT' => 'FUNC_NUMBER',
642 'INT' => 'FUNC_NUMBER',
643 'BIGINT' => 'FUNC_NUMBER',
644 'FLOAT' => 'FUNC_NUMBER',
645 'DOUBLE' => 'FUNC_NUMBER',
646 'DECIMAL' => 'FUNC_NUMBER',
647 'DATETIME' => 'FUNC_DATE',
648 'TIMESTAMP' => 'FUNC_DATE',
649 'TIME' => 'FUNC_DATE',
650 'YEAR' => 'FUNC_DATE',
651 'CHAR' => 'FUNC_CHAR',
652 'TINYBLOB' => 'FUNC_CHAR',
653 'TINYTEXT' => 'FUNC_CHAR',
654 'BLOB' => 'FUNC_CHAR',
655 'MEDIUMBLOB' => 'FUNC_CHAR',
656 'MEDIUMTEXT' => 'FUNC_CHAR',
657 'LONGBLOB' => 'FUNC_CHAR',
658 'LONGTEXT' => 'FUNC_CHAR',
659 'ENUM' => '',
660 'SET' => ''
663 // Map above defined groups to any function
664 $cfg['RestrictFunctions'] = array(
665 'FUNC_CHAR' => array(
666 'ASCII',
667 'CHAR',
668 'SOUNDEX',
669 'LCASE',
670 'UCASE',
671 'PASSWORD',
672 'MD5',
673 'ENCRYPT',
674 'LAST_INSERT_ID',
675 'USER',
676 'CONCAT'
679 'FUNC_DATE' => array(
680 'NOW',
681 'CURDATE',
682 'CURTIME',
683 'FROM_DAYS',
684 'FROM_UNIXTIME',
685 'PERIOD_ADD',
686 'PERIOD_DIFF',
687 'TO_DAYS',
688 'UNIX_TIMESTAMP',
689 'WEEKDAY'
692 'FUNC_NUMBER' => array(
693 'ASCII',
694 'CHAR',
695 'MD5',
696 'ENCRYPT',
697 'RAND',
698 'LAST_INSERT_ID',
699 'COUNT',
700 'AVG',
701 'SUM'
705 } // end if
709 * Unset magic_quotes_runtime - do not change!
711 set_magic_quotes_runtime(0);
714 * File Revision - do not change either!
716 $cfg['FileRevision'] = '$Revision$';