home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / config.sample.inc.php < prev    next >
PHP Script  |  2008-06-23  |  2KB  |  61 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * phpMyAdmin sample configuration, you can use it as base for
  5.  * manual configuration. For easier setup you can use scripts/setup.php
  6.  *
  7.  * All directives are explained in Documentation.html and on phpMyAdmin
  8.  * wiki <http://wiki.cihar.com>.
  9.  *
  10.  * @version $Id: config.sample.inc.php 10142 2007-03-20 10:32:13Z cybot_tm $
  11.  */
  12.  
  13. /*
  14.  * This is needed for cookie based authentication to encrypt password in
  15.  * cookie
  16.  */
  17. $cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
  18.  
  19. /*
  20.  * Servers configuration
  21.  */
  22. $i = 0;
  23.  
  24. /*
  25.  * First server
  26.  */
  27. $i++;
  28. /* Authentication type */
  29. $cfg['Servers'][$i]['auth_type'] = 'cookie';
  30. /* Server parameters */
  31. $cfg['Servers'][$i]['host'] = 'localhost';
  32. $cfg['Servers'][$i]['connect_type'] = 'tcp';
  33. $cfg['Servers'][$i]['compress'] = false;
  34. /* Select mysqli if your server has it */
  35. $cfg['Servers'][$i]['extension'] = 'mysql';
  36. /* User for advanced features */
  37. // $cfg['Servers'][$i]['controluser'] = 'pma';
  38. // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
  39. /* Advanced phpMyAdmin features */
  40. // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  41. // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
  42. // $cfg['Servers'][$i]['relation'] = 'pma_relation';
  43. // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
  44. // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
  45. // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
  46. // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
  47. // $cfg['Servers'][$i]['history'] = 'pma_history';
  48. // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
  49.  
  50. /*
  51.  * End of servers configuration
  52.  */
  53.  
  54. /*
  55.  * Directories for saving/loading files from server
  56.  */
  57. $cfg['UploadDir'] = '';
  58. $cfg['SaveDir'] = '';
  59.  
  60. ?>
  61.