Page 2 of 13
Re: Video#2
Posted: Mon Jun 15, 2009 1:00 am
by hallsofvallhalla
ah thanks for the mac assistance!
Re: Video#2
Posted: Tue Jun 16, 2009 2:29 am
by Socapex

So great stuff here, wouldn't want anyone to be restricted.
Re: Video#2
Posted: Thu Jul 09, 2009 9:08 pm
by Sakar
Every time I try to open phpMyAdmin I get this error
#1045 - Access denied for user 'root'@'localhost' (using password: NO)
Not sure what I did wrong. I followed all the steps exactly but got this. Any help?
Re: Video#2
Posted: Thu Jul 09, 2009 9:25 pm
by hallsofvallhalla
pm me your connect.php...
Re: Video#2
Posted: Thu Jul 09, 2009 9:29 pm
by Sakar
I can't seem to find one. I got to the point in the video where you open phpMyAdmin but no further. Maybe I'm just confused or I missed something

Re: Video#2
Posted: Thu Jul 09, 2009 9:58 pm
by mrmajic
id say it'll probably be worth starting from scratch .. rewatching all the vids .. if theres no connect.php. .. then you have nothing really ..
Re: Video#2
Posted: Thu Jul 09, 2009 10:20 pm
by Sakar
I started from scratch and still get the error. I'm not sure why this is happening. In the video it shows the phpMyAdmin panel for halls but all I get is this:

Re: Video#2
Posted: Thu Jul 09, 2009 10:38 pm
by mrmajic
This error has nothing to do with the videos .. its a config issue on your end
in your phpmyadmin folder .. do you have a config.inc.php file? if you dont make it and put this in it
Code: Select all
<?php
/* Servers configuration */
$i = 0;
/* Server localhost (config:root) [1] */
$i++;
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root'; <<< CHANGE TO WHAT EVER USERNAME YOU USED WHEN YOU SETUP MYSQL
$cfg['Servers'][$i]['password'] = 'PASSWORD'; <<< CHANGE TO WHAT EVER PASSWORD YOU USED WHEN YOU SETUP MYSQL
?>
also, in php.ini remove the ; from the start of extension=php_mbstring.dll
try all this first...
Re: Video#2
Posted: Thu Jul 09, 2009 10:59 pm
by Sakar
That did the trick, thanks!
Re: Video#2
Posted: Thu Jul 09, 2009 11:02 pm
by mrmajic
np .. its what were here for. just remember, to post in the right forum ..

Have a good one..