Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/11/2012, 13:35
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 13 años, 7 meses
Puntos: 6
que parametros se deben para que phpmyadmin usb pueda acceder bd remota

hola amigos me encuentro trabajando con xampp-usb-lite y necesito accedera una base de datos remota

en el config.inc.php

Código PHP:
Ver original
  1. <?php
  2. /*
  3.  * This is needed for cookie based authentication to encrypt password in
  4.  * cookie
  5.  */
  6. $cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
  7.  
  8. /*
  9.  * Servers configuration
  10.  */
  11. $i = 0;
  12.  
  13. /*
  14.  * First server
  15.  */
  16. $i++;
  17.  
  18. /* Authentication type and info */
  19. $cfg['Servers'][$i]['auth_type'] = 'config';
  20. $cfg['Servers'][$i]['user'] = 'root';
  21. $cfg['Servers'][$i]['password'] = '';
  22. $cfg['Servers'][$i]['extension'] = 'mysql';
  23. $cfg['Servers'][$i]['AllowNoPassword'] = true;
  24.  
  25. /* User for advanced features */
  26. $cfg['Servers'][$i]['controluser'] = 'pma';
  27. $cfg['Servers'][$i]['controlpass'] = '';
  28.  
  29. /* Advanced phpMyAdmin features */
  30. $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
  31. $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
  32. $cfg['Servers'][$i]['relation'] = 'pma_relation';
  33. $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
  34. $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
  35. $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
  36. $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
  37. $cfg['Servers'][$i]['history'] = 'pma_history';
  38. $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
  39. $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
  40. $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
  41.  
  42. /*
  43.  * End of servers configuration
  44.  */
  45.  
  46. ?>