bug 780793
[phpmyadmin/crack.git] / config.inc.php3
blobceb7cfdd34dad3081b4dd2cc3c4659393acea849
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 or IP address
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
202 $cfg['IgnoreMultiSubmitErrors'] = FALSE; // if set to true, PMA continues computing multiple-statement queries
203 // even if one of the queries failed
204 $cfg['VerboseMultiSubmit'] = TRUE; // if set to true, PMA will show the affected rows of EACH statement on
205 // multiple-statement queries. See the read_dump.php3 file for hardcoded
206 // defaults on how many queries a statement may contain!
208 // Left frame setup
209 $cfg['LeftFrameLight'] = TRUE; // use a select-based menu and display only the
210 // current tables in the left frame.
211 $cfg['LeftFrameTableSeparator']= '__'; // Which string will be used to generate table prefixes
212 // to split tables into multiple categories
213 $cfg['LeftFrameTableLevel'] = '1'; // How many sublevels should be displayed when splitting
214 // up tables by the above Separator
215 $cfg['ShowTooltip'] = TRUE; // display table comment as tooltip in left frame
216 $cfg['ShowTooltipAliasDB'] = FALSE; // if ShowToolTip is enabled, this defines that table/db comments
217 $cfg['ShowTooltipAliasTB'] = FALSE; // are shown (in the left menu and db_details_structure) instead of
218 // table/db names
220 $cfg['LeftDisplayLogo'] = TRUE; // display logo at top of left frame
221 $cfg['LeftDisplayServers'] = FALSE; // display server choice at top of left frame
223 // In the main frame, at startup...
224 $cfg['ShowStats'] = TRUE; // allow to display statistics and space usage in
225 // the pages about database details and table
226 // properties
227 $cfg['ShowMysqlInfo'] = FALSE; // whether to display the "MySQL runtime
228 $cfg['ShowMysqlVars'] = FALSE; // information", "MySQL system variables", "PHP
229 $cfg['ShowPhpInfo'] = FALSE; // information" and "change password" links for
230 $cfg['ShowChgPassword'] = FALSE; // simple users or not
231 $cfg['SuggestDBName'] = TRUE; // suggest a new DB name if possible (false = keep empty)
233 // In browse mode...
234 $cfg['ShowBlob'] = FALSE; // display blob field contents
235 $cfg['NavigationBarIconic'] = TRUE; // do not display text inside navigation bar buttons
236 $cfg['ShowAll'] = FALSE; // allows to display all the rows
237 $cfg['MaxRows'] = 30; // maximum number of rows to display
238 $cfg['Order'] = 'ASC'; // default for 'ORDER BY' clause (valid
239 // values are 'ASC', 'DESC' or 'SMART' -ie
240 // descending order for fields of type
241 // TIME, DATE, DATETIME & TIMESTAMP,
242 // ascending order else-)
244 // In edit mode...
245 $cfg['ProtectBinary'] = 'blob'; // disallow editing of binary fields
246 // valid values are:
247 // FALSE allow editing
248 // 'blob' allow editing except for BLOB fields
249 // 'all' disallow editing
250 $cfg['ShowFunctionFields'] = TRUE; // Display the function fields in edit/insert mode
251 $cfg['CharEditing'] = 'input';
252 // Which editor should be used for CHAR/VARCHAR fields:
253 // input - allows limiting of input length
254 // textarea - allows newlines in fields
256 // For the export features...
257 $cfg['ZipDump'] = TRUE; // Allow the use of zip/gzip/bzip
258 $cfg['GZipDump'] = TRUE; // compression for
259 $cfg['BZipDump'] = TRUE; // dump files
261 // Tabs display settings
262 $cfg['LightTabs'] = FALSE; // use graphically less intense menu tabs
263 $cfg['PropertiesIconic'] = TRUE; // Use icons instead of text for the table display of a database (TRUE|FALSE|'both')
264 $cfg['PropertiesNumColumns'] = 1; // How many columns should be used for table display of a database?
265 // (a value larger than 1 results in some information being hidden)
267 $cfg['DefaultTabServer'] = 'main.php3';
268 // Possible values:
269 // 'main.php3' = the welcome page
270 // (recommended for multiuser setups)
271 // 'server_databases.php3' = list of databases
272 // 'server_status.php3' = runtime information
273 // 'server_variables.php3' = MySQL server variables
274 // 'server_privileges.php3' = user management
275 // 'server_processlist.php3' = process list
276 $cfg['DefaultTabDatabase'] = 'db_details_structure.php3';
277 // Possible values:
278 // 'db_details_structure.php3' = tables list
279 // 'db_details.php3' = sql form
280 // 'db_search.php3' = search query
281 $cfg['DefaultTabTable'] = 'tbl_properties_structure.php3';
282 // Possible values:
283 // 'tbl_properties_structure.php3' = fields list
284 // 'tbl_properties.php3' = sql form
285 // 'tbl_select.php3 = select page
286 // 'tbl_change.php3 = insert row page
289 * Export defaults
292 $cfg['Export']['format'] = 'sql'; // sql/latex/excel/csv/xml
293 $cfg['Export']['compression'] = 'none'; // none/zip/gzip/bzip2
295 $cfg['Export']['asfile'] = FALSE;
296 $cfg['Export']['onserver'] = FALSE;
297 $cfg['Export']['onserver_overwrite'] = FALSE;
298 $cfg['Export']['remember_file_template'] = TRUE;
300 $cfg['Export']['csv_columns'] = FALSE;
301 $cfg['Export']['csv_null'] = 'NULL';
302 $cfg['Export']['csv_separator'] = ';';
303 $cfg['Export']['csv_enclosed'] = '&quot;';
304 $cfg['Export']['csv_escaped'] = '\\';
305 $cfg['Export']['csv_terminated'] = 'AUTO';
306 $cfg['Export']['excel_null'] = 'NULL';
308 $cfg['Export']['latex_structure'] = TRUE;
309 $cfg['Export']['latex_data'] = TRUE;
310 $cfg['Export']['latex_columns'] = TRUE;
311 $cfg['Export']['latex_relation'] = TRUE;
312 $cfg['Export']['latex_comments'] = TRUE;
313 $cfg['Export']['latex_mime'] = TRUE;
314 $cfg['Export']['latex_null'] = '\textit{NULL}';
316 $cfg['Export']['sql_structure'] = TRUE;
317 $cfg['Export']['sql_data'] = TRUE;
318 $cfg['Export']['sql_drop_database'] = FALSE;
319 $cfg['Export']['sql_drop_table'] = FALSE;
320 $cfg['Export']['sql_auto_increment'] = TRUE;
321 $cfg['Export']['sql_backquotes'] = TRUE;
322 $cfg['Export']['sql_relation'] = FALSE;
323 $cfg['Export']['sql_columns'] = FALSE;
324 $cfg['Export']['sql_extended'] = FALSE;
325 $cfg['Export']['sql_comments'] = FALSE;
326 $cfg['Export']['sql_mime'] = FALSE;
329 * Link to the official MySQL documentation.
330 * Be sure to include no trailing slash on the path.
331 * See http://www.mysql.com/documentation/index.html for more information
332 * about MySQL manuals and their types.
334 $cfg['MySQLManualBase'] = 'http://www.mysql.com/doc/en';
337 * Type of MySQL documentation:
338 * old - old style used in phpMyAdmin 2.3.0 and sooner
339 * searchable - "Searchable, with user comments"
340 * chapters - "HTML, one page per chapter"
341 * big - "HTML, all on one page"
342 * none - do not show documentation links
344 $cfg['MySQLManualType'] = 'searchable';
348 * PDF options
350 $cfg['PDFPageSizes'] = array('A3', 'A4', 'A5', 'letter', 'legal');
351 $cfg['PDFDefaultPageSize'] = 'A4';
355 * Language and charset conversion settings
357 // Default language to use, if not browser-defined or user-defined
358 $cfg['DefaultLang'] = 'en-iso-8859-1';
360 // Force: always use this language - must be defined in
361 // libraries/select_lang.lib.php3
362 // $cfg['Lang'] = 'en-iso-8859-1';
364 // Default charset to use for recoding of MySQL queries, does not take
365 // any effect when charsets recoding is switched off by
366 // $cfg['AllowAnywhereRecoding'] or in language file
367 // (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
368 $cfg['DefaultCharset'] = 'iso-8859-1';
370 // Allow charset recoding of MySQL queries, must be also enabled in language
371 // file to make harder using other language files than unicode.
372 // Default value is FALSE to avoid problems on servers without the iconv
373 // extension and where dl() is not supported
374 $cfg['AllowAnywhereRecoding'] = FALSE;
376 // You can select here which functions will be used for charset conversion.
377 // Possible values are:
378 // auto - automatically use available one (first is tested iconv, then
379 // recode)
380 // iconv - use iconv or libiconv functions
381 // recode - use recode_string function
382 $cfg['RecodingEngine'] = 'auto';
384 // Specify some parameters for iconv used in charset conversion. See iconv
385 // documentation for details:
386 // http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html
387 $cfg['IconvExtraParams'] = '';
389 // Available charsets for MySQL conversion. currently contains all which could
390 // be found in lang/* files and few more.
391 // Charsets will be shown in same order as here listed, so if you frequently
392 // use some of these move them to the top.
393 $cfg['AvailableCharsets'] = array(
394 'iso-8859-1',
395 'iso-8859-2',
396 'iso-8859-3',
397 'iso-8859-4',
398 'iso-8859-5',
399 'iso-8859-6',
400 'iso-8859-7',
401 'iso-8859-8',
402 'iso-8859-9',
403 'iso-8859-10',
404 'iso-8859-11',
405 'iso-8859-12',
406 'iso-8859-13',
407 'iso-8859-14',
408 'iso-8859-15',
409 'windows-1250',
410 'windows-1251',
411 'windows-1252',
412 'windows-1257',
413 'koi8-r',
414 'big5',
415 'gb2312',
416 'utf-8',
417 'utf-7',
418 'x-user-defined',
419 'euc-jp',
420 'ks_c_5601-1987',
421 'tis-620',
422 'SHIFT_JIS'
425 // Loads language file
426 require('./libraries/select_lang.lib.php3');
430 * Customization & design
432 $cfg['LeftWidth'] = 150; // left frame width
433 $cfg['LeftBgColor'] = '#D0DCE0'; // background color for the left frame
434 $cfg['RightBgColor'] = '#F5F5F5'; // background color for the right frame
435 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
436 // (leave blank for no background image)
437 $cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
438 // (blank for no pointer)
439 $cfg['Border'] = 0; // border width on tables
440 $cfg['ThBgcolor'] = '#D3DCE3'; // table header row colour
441 $cfg['BgcolorOne'] = '#CCCCCC'; // table data row colour
442 $cfg['BgcolorTwo'] = '#DDDDDD'; // table data row colour, alternate
443 $cfg['BrowsePointerColor'] = '#CCFFCC'; // color of the pointer in browse mode
444 // (blank for no pointer)
445 $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
446 // by clicking on it) in browse mode
447 // (blank for no marker)
448 $cfg['TextareaCols'] = 40; // textarea size (columns) in edit mode
449 // (this value will be emphasized (*2) for sql
450 // query textareas and (*1.25) for query window)
451 $cfg['TextareaRows'] = 7; // textarea size (rows) in edit mode
452 $cfg['LongtextDoubleTextarea'] = TRUE; // double size of textarea size for longtext fields
453 $cfg['TextareaAutoSelect'] = TRUE; // autoselect when clicking in the textarea of the querybox
454 $cfg['CharTextareaCols'] = 40; // textarea size (columns) for CHAR/VARCHAR
455 $cfg['CharTextareaRows'] = 2; // textarea size (rows) for CHAR/VARCHAR
456 $cfg['CtrlArrowsMoving'] = TRUE; // Enable Ctrl+Arrows moving between fields when editing?
457 $cfg['LimitChars'] = 50; // Max field data length in browse mode for all non-numeric fields
458 $cfg['ModifyDeleteAtLeft'] = TRUE; // show edit/delete links on left side of browse
459 // (or at the top with vertical browse)
460 $cfg['ModifyDeleteAtRight'] = FALSE; // show edit/delete links on right side of browse
461 // (or at the bottom with vertical browse)
462 $cfg['DefaultDisplay'] = 'horizontal'; // default display direction
463 // (horizontal|vertical|horizontalflipped)
464 $cfg['DefaultPropDisplay'] = 'horizontal'; // default display direction for altering/
465 // creating columns (tbl_properties)
466 // (horizontal|vertical)
468 $cfg['HeaderFlipType'] = 'css'; // table-header rotation via faking or css? (css|fake)
469 // NOTE: CSS only works in IE browsers!
470 $cfg['ShowBrowseComments'] = TRUE; // shows stored relation-comments in 'browse' mode.
471 $cfg['ShowPropertyComments']= TRUE; // shows stored relation-comments in 'table property' mode.
472 $cfg['RepeatCells'] = 100; // repeat header names every X cells? (0 = deactivate)
474 $cfg['QueryFrame'] = TRUE; // displays a new frame where a link to a querybox is always displayed.
475 $cfg['QueryFrameJS'] = TRUE; // whether to use JavaScript functions for opening a new window for SQL commands.
476 // if set to 'false', the target of the querybox is always the right frame.
477 $cfg['QueryFrameDebug'] = FALSE; // display JS debugging link (DEVELOPERS only)
478 $cfg['QueryWindowWidth'] = 550; // Width of Query window
479 $cfg['QueryWindowHeight'] = 310; // Height of Query window
480 $cfg['QueryHistoryDB'] = FALSE; // Set to TRUE if you want DB-based query history.
481 // If FALSE, this utilizes JS-routines to display
482 // query history (lost by window close)
483 $cfg['QueryWindowDefTab'] = 'sql'; // which tab to display in the querywindow on startup
484 // (sql|files|history|full)
485 $cfg['QueryHistoryMax'] = 25; // When using DB-based query history, how many entries
486 // should be kept?
487 $cfg['BrowseMIME'] = TRUE; // Use MIME-Types (stored in column comments table) for
488 $cfg['MaxExactCount'] = 20000; // When approximate count < this, PMA will get exact count for
489 // table rows.
490 $cfg['WYSIWYG-PDF'] = TRUE; // Utilize DHTML/JS capabilities to allow WYSIWYG editing of
491 // the PDF page editor. Requires an IE6/Mozilla based browser.
494 * SQL Query box settings
495 * These are the links display in all of the SQL Query boxes
497 $cfg['SQLQuery']['Edit'] = TRUE; // Edit link to change a query
498 $cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
499 $cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
500 $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
504 * web-server upload directory
506 $cfg['UploadDir'] = ''; // for example, './upload/'; you must end it with
507 // a slash, and you leave it empty for no upload
508 // directory
509 $cfg['SaveDir'] = ''; // for example, './save/'; you must end it with
510 // a slash, and you leave it empty for no save
511 // directory
515 * Misc. settings
517 $cfg['GD2Available'] = 'auto'; // Is GD >= 2 available? Set to yes/no/auto. 'auto'
518 // does autodetection, which is a bit expensive for
519 // php < 4.3.0, but it is the only safe vay how to
520 // determine GD version.
522 * SQL Parser Settings
524 $cfg['SQP']['fmtType'] = 'html'; // Pretty-printing style to use on queries (html, text, none)
525 $cfg['SQP']['fmtInd'] = '1'; // Amount to indent each level (floats ok)
526 $cfg['SQP']['fmtIndUnit'] = 'em'; // Units for indenting each level (CSS Types - {em,px,pt})
527 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
528 'comment' => '#808000',
529 'comment_mysql' => '',
530 'comment_ansi' => '',
531 'comment_c' => '',
532 'digit' => '',
533 'digit_hex' => 'teal',
534 'digit_integer' => 'teal',
535 'digit_float' => 'aqua',
536 'punct' => 'fuchsia',
537 'alpha' => '',
538 'alpha_columnType' => '#FF9900',
539 'alpha_columnAttrib' => '#0000FF',
540 'alpha_reservedWord' => '#990099',
541 'alpha_functionName' => '#FF0000',
542 'alpha_identifier' => 'black',
543 'alpha_variable' => '#800000',
544 'quote' => '#008000',
545 'quote_double' => '',
546 'quote_single' => '',
547 'quote_backtick' => ''
552 * If you wish to use the SQL Validator service, you should be
553 * aware of the following:
554 * All SQL statements are stored anonymously for statistical purposes.
555 * Mimer SQL Validator, Copyright 2002 Upright Database Technology.
556 * All rights reserved.
558 $cfg['SQLValidator']['use'] = FALSE; // Make the SQL Validator available
559 $cfg['SQLValidator']['username'] = ''; // If you have a custom username, specify it here (defaults to anonymous)
560 $cfg['SQLValidator']['password'] = ''; // Password for username
563 * Developers ONLY!
564 * To use the following, please install the DBG extension from http://dd.cron.ru/dbg/
566 $cfg['DBG']['enable'] = FALSE; // Make the DBG stuff available
567 $cfg['DBG']['profile']['enable'] = FALSE; // Produce profiling results of PHP
568 $cfg['DBG']['profile']['threshold'] = 0.5; // Threshold of long running code to display
569 // Anything below the threshold is not displayed
573 * MySQL settings
575 // Column types;
576 // varchar, tinyint, text and date are listed first, based on estimated popularity
577 $cfg['ColumnTypes'] = array(
578 'VARCHAR',
579 'TINYINT',
580 'TEXT',
581 'DATE',
582 'SMALLINT',
583 'MEDIUMINT',
584 'INT',
585 'BIGINT',
586 'FLOAT',
587 'DOUBLE',
588 'DECIMAL',
589 'DATETIME',
590 'TIMESTAMP',
591 'TIME',
592 'YEAR',
593 'CHAR',
594 'TINYBLOB',
595 'TINYTEXT',
596 'BLOB',
597 'MEDIUMBLOB',
598 'MEDIUMTEXT',
599 'LONGBLOB',
600 'LONGTEXT',
601 'ENUM',
602 'SET'
605 // Atributes
606 $cfg['AttributeTypes'] = array(
608 'BINARY',
609 'UNSIGNED',
610 'UNSIGNED ZEROFILL'
613 // Available functions
614 if ($cfg['ShowFunctionFields']) {
615 $cfg['Functions'] = array(
616 'ASCII',
617 'CHAR',
618 'SOUNDEX',
619 'LCASE',
620 'UCASE',
621 'NOW',
622 'PASSWORD',
623 'MD5',
624 'ENCRYPT',
625 'RAND',
626 'LAST_INSERT_ID',
627 'COUNT',
628 'AVG',
629 'SUM',
630 'CURDATE',
631 'CURTIME',
632 'FROM_DAYS',
633 'FROM_UNIXTIME',
634 'PERIOD_ADD',
635 'PERIOD_DIFF',
636 'TO_DAYS',
637 'UNIX_TIMESTAMP',
638 'USER',
639 'WEEKDAY',
640 'CONCAT'
643 // Which column types will be mapped to which Group?
644 $cfg['RestrictColumnTypes'] = array(
645 'VARCHAR' => 'FUNC_CHAR',
646 'TINYINT' => 'FUNC_NUMBER',
647 'TEXT' => 'FUNC_CHAR',
648 'DATE' => 'FUNC_DATE',
649 'SMALLINT' => 'FUNC_NUMBER',
650 'MEDIUMINT' => 'FUNC_NUMBER',
651 'INT' => 'FUNC_NUMBER',
652 'BIGINT' => 'FUNC_NUMBER',
653 'FLOAT' => 'FUNC_NUMBER',
654 'DOUBLE' => 'FUNC_NUMBER',
655 'DECIMAL' => 'FUNC_NUMBER',
656 'DATETIME' => 'FUNC_DATE',
657 'TIMESTAMP' => 'FUNC_DATE',
658 'TIME' => 'FUNC_DATE',
659 'YEAR' => 'FUNC_DATE',
660 'CHAR' => 'FUNC_CHAR',
661 'TINYBLOB' => 'FUNC_CHAR',
662 'TINYTEXT' => 'FUNC_CHAR',
663 'BLOB' => 'FUNC_CHAR',
664 'MEDIUMBLOB' => 'FUNC_CHAR',
665 'MEDIUMTEXT' => 'FUNC_CHAR',
666 'LONGBLOB' => 'FUNC_CHAR',
667 'LONGTEXT' => 'FUNC_CHAR',
668 'ENUM' => '',
669 'SET' => ''
672 // Map above defined groups to any function
673 $cfg['RestrictFunctions'] = array(
674 'FUNC_CHAR' => array(
675 'ASCII',
676 'CHAR',
677 'SOUNDEX',
678 'LCASE',
679 'UCASE',
680 'PASSWORD',
681 'MD5',
682 'ENCRYPT',
683 'LAST_INSERT_ID',
684 'USER',
685 'CONCAT'
688 'FUNC_DATE' => array(
689 'NOW',
690 'CURDATE',
691 'CURTIME',
692 'FROM_DAYS',
693 'FROM_UNIXTIME',
694 'PERIOD_ADD',
695 'PERIOD_DIFF',
696 'TO_DAYS',
697 'UNIX_TIMESTAMP',
698 'WEEKDAY'
701 'FUNC_NUMBER' => array(
702 'ASCII',
703 'CHAR',
704 'MD5',
705 'ENCRYPT',
706 'RAND',
707 'LAST_INSERT_ID',
708 'COUNT',
709 'AVG',
710 'SUM'
714 } // end if
718 * Unset magic_quotes_runtime - do not change!
720 set_magic_quotes_runtime(0);
723 * File Revision - do not change either!
725 $cfg['FileRevision'] = '$Revision$';