tags:

views:

37

answers:

1

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

+1  A: 

Unless you have a dedicated server and your hosting company expects you to do all of your wn setup, you are not going to have to do any configuration on phpMyadmin on your hosting account. It will be set up by your hosting company. In both Plesk and cPanel, you would create a new database in the hosting manager, then create a new user for that database.

Brent Friar