Click to See Complete Forum and Search --> : installing phpmyadmin on Windows


buu
12-16-2004, 09:30 PM
Already tried to install the phpmyadmin, but it was failed. Below are some adjusment that I've done in the config.inc.php :

1) extract the files at : C:\Program Files\Apache Group\Apache2
\htdocs\phpMyAdmin-2.6.0-pl3

2) $cfg['PmaAbsoluteUri'] = 'C:\Program Files\Apache

Group\Apache2\htdocs\phpMyAdmin-2.6.0-pl3 ';

3) $cfg['Servers'][$i]['host'] = 'localhost';

4) $cfg['Servers'][$i]['user'] = 'root';

5) and put a pssword inside $cfg['Servers'][$i]['password']

6) And thats all.

But when I opened the index.php, only plain php text appeared .

Hope that you guys can help me on this

Thanks ...

tsinka
12-17-2004, 03:06 AM
Hi,

$cfg['PmaAbsoluteUri'] must be a URL, something like

http://localhost/phpMyAdmin-2.6.0-pl3

Thomas

buu
12-19-2004, 09:31 PM
I already changed it to :

$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin-2.6.0-pl3/';

but the result is still :

"cannot load mysql extension,
please check PHP Configuration "

Referring to the documentation, it suggest to install another software like "PHP-MySQL" or somthing similar. Do you have any idea, where could I get the software. Or maybe you have another solution on this.

Thanks

tsinka
12-20-2004, 02:56 AM
Ok,

which PHP version do you have ? Did you download the zip file or the PHP installer ?


You need to enable the MySQL extension or at least to copy libmysql.dll to system32.

EDIT: Which MySQL version do you have ?
Thomas

buu
12-20-2004, 10:56 PM
You're right, I haven't copy the mysql extension in system32 folder,

plus in php.ini ..

I didn't change the extension_dir ...... and so on.

After done few adjustments, now it can use.

Thanks for your help !!!!!!