Jump to content
  • 0

wamp server problem pls help me :(


angelingh

Question


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  05/24/16
  • Last Seen:  

hi i have thar problem

then i install wamp the user and pass is

user: root

pass (no pass)

and its work but then i reset my pc the wamp server just broken..

i no work anymore

 

pls someone help me i make the database over 20 times:(

 

 

 

9vKqFLv.png

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  30
  • Reputation:   2
  • Joined:  06/17/16
  • Last Seen:  

hi i have thar problem

then i install wamp the user and pass is

user: root

pass (no pass)

and its work but then i reset my pc the wamp server just broken..

i no work anymore

 

pls someone help me i make the database over 20 times:(

 

 

 

9vKqFLv.png

 

Check your config.inc.php in wamp/apps/phpadmin

 

 

/* Authentication type */

$cfg['Servers'][$i]['verbose'] = 'mysql wampserver';
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

 

Then put your password in "$cfg['Servers'][$i]['password'] = '';"

 

e.g.

 

 

/* Authentication type */

$cfg['Servers'][$i]['verbose'] = 'mysql wampserver';
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'password';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

 

Link to comment
Share on other sites

  • 0

  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

if i recall correctly, you might need to set this to true if you want to remove the password to identify yourself.

$cfg['Servers'][$i]['AllowNoPassword'] = true;
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  7
  • Reputation:   0
  • Joined:  08/27/16
  • Last Seen:  

i got this error too, maybe you used the latest one, i fix mine by downgrading using the old version which is 2.4 much better and stable

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...