--- phpMyAdmin-2.4.0/config.inc.php 2003-02-23 21:05:16.000000000 +0000 +++ phpMyAdmin/config.inc.php 2003-03-26 13:50:05.000000000 +0000 @@ -36,7 +36,7 @@ * If the auto-detection code does work properly, you can set to TRUE the * $cfg['PmaAbsoluteUri_DisableWarning'] variable below. */ -$cfg['PmaAbsoluteUri'] = ''; +$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/'; /** @@ -44,7 +44,7 @@ * You should use this if and ONLY if the PmaAbsoluteUri auto-detection * works perfectly. */ -$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE; +$cfg['PmaAbsoluteUri_DisableWarning'] = TRUE; /** * Disable the default warning that is displayed on the DB Details Structure page if @@ -66,11 +66,12 @@ $cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket') $cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection // (requires PHP >= 4.3.0) -$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings +$cfg['Servers'][$i]['controluser'] = 'pma'; // MySQL control user settings // (this user must have read-only -$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user" +$cfg['Servers'][$i]['controlpass'] // access to the "mysql/user" // and "mysql/db" tables) -$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)? + = '@pmapass@'; +$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based)? $cfg['Servers'][$i]['user'] = 'root'; // MySQL user $cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed // with 'config' auth_type) @@ -81,19 +82,25 @@ // of db-names $cfg['Servers'][$i]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname -$cfg['Servers'][$i]['pmadb'] = ''; // Database used for Relation, Bookmark and PDF Features +$cfg['Servers'][$i]['pmadb'] = 'pmadb'; // Database used for Relation, Bookmark and PDF Features // - leave blank for no support -$cfg['Servers'][$i]['bookmarktable'] = ''; // Bookmark table - leave blank for no bookmark support -$cfg['Servers'][$i]['relation'] = ''; // table to describe the relation between links (see doc) +$cfg['Servers'][$i]['bookmarktable'] // Bookmark table - leave blank for no bookmark support + = 'PMA_bookmark'; +$cfg['Servers'][$i]['relation'] // table to describe the relation between links (see doc) // - leave blank for no relation-links support -$cfg['Servers'][$i]['table_info'] = ''; // table to describe the display fields + = 'PMA_relation'; +$cfg['Servers'][$i]['table_info'] // table to describe the display fields // - leave blank for no display fields support -$cfg['Servers'][$i]['table_coords'] = ''; // table to describe the tables position for the PDF + = 'PMA_table_info'; +$cfg['Servers'][$i]['table_coords'] // table to describe the tables position for the PDF // schema - leave blank for no PDF schema support -$cfg['Servers'][$i]['pdf_pages'] = ''; // table to describe pages of relationpdf + = 'PMA_table_coords'; +$cfg['Servers'][$i]['pdf_pages'] // table to describe pages of relationpdf // - leave blank if you don't want to use this + = 'PMA_pdf_pages'; $cfg['Servers'][$i]['column_comments'] // table to store columncomments - = ''; // - leave blank if you don't want to use this + // - leave blank if you don't want to use this + = 'PMA_column_comments'; $cfg['Servers'][$i]['AllowDeny']['order'] // Host authentication order, leave blank to not use = ''; $cfg['Servers'][$i]['AllowDeny']['rules'] // Host authentication rules, leave blank for defaults