Salve.
Ho installato PhpMyAdmin sul mio spazio web. ora il problema è che non riesco a settare un'autorizzazione all'accesso. Sostanzialmente quando mi chiede nome utente e password per accedere, mi ci fa accedere qualsiasi sia il nome utente e la password immesso.
Io faccio così:
$cfg['blowfish_secret'] = 'METTO UNA PASSWORD QUI'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'scrivo "localhost" qui';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'scrivo il mio nome utente di altervista qui';
$cfg['Servers'][$i]['controlpass'] = 'scrivo la mia password di altervista qui';
/* Advanced phpMyAdmin features */
$cfg['Servers'][$i]['pmadb'] = 'scrivo "my_nomeutentealtervista" qui';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
/*
* End of servers configuration
Sì configura così? Che sbaglio?