Page 1 of 1

PHPmyAdmin

PostPosted: 29. May 2005 13:32
by WarringtonNick
Hi

I am a mature student trying to learn PHP etc and have just recently installed XAMP 1.4.13-installer.exe.

I dont speak German but my question should be a simple one.

I cannot find a start command for PHPmyAdmin in the menu a :x Do I need to look for a script?

Thanks to anyone who can help.

PostPosted: 29. May 2005 14:00
by Dave_L

PostPosted: 30. May 2005 01:06
by sckoh
1. Open /xampp/phpmyadmin/config.inc.php, with a text editor like Ultraeditor.
2. Find "$cfg['PmaAbsoluteUri'] = '';" around line 39.
Replace it with the below;
Code: Select all
//$cfg['PmaAbsoluteUri'] = '';
$cfg['PmaAbsoluteUri'] = (!empty($HTTPS) ? 'https' : 'http') . '://' . $_SERVER["HTTP_HOST"] . substr($PHP_SELF, 0, strrpos($PHP_SELF, '/')+1);

*** The code above is same to " $cfg['PmaAbsoluteUri'] = 'http://URL/phpmyadmin'; "

3. Do setting for password and etc, as per xampp instructions.