Hello all,
I am using XAMPP to develop my prototype website locally and will transfer the whole prototype to a web hosting company after everything is ready.
Here are the questions:
By default the content of the Authentication type and info section is as follows: C:\xampp\phpMyAdmin\config.inc.php
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
While I am in the prototype development period, I modify the password of root to XXX
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'XXX';
$cfg['Servers'][$i]['AllowNoPassword'] = false;
Q1> When I upload my website to a hosting site, do I have to provide such a password for the root?
Q2> When I upload my website to a hosting site, is it safe to write download my root password explicitly as this?
Q3> what $cfg['Servers'][$i]['auth_type'] should I use?
I saw some tutorials which change the auth_type from config to http.
So what is the meaning of each type (config and http) and when should I use which?
Q4> What is the meaning of $cfg['Servers'][$i]['AllowNoPassword']?
Thank you