help with an error of wamp
Posted by: johnchronis (---.dsl.hol.gr)
Date: June 15, 2009 11:00AM

i installed wamp,setup it up and now i get this message

Notice: Undefined variable: k in C:\Program Files\wamp\apps\phpmyadmin3.1.3.1\setup\lib\ConfigFile.class.php on line 283

what should i do?

Options: ReplyQuote
Re: help with an error of wamp
Posted by: toumimi (---.224.115-78.rev.gaoland.net)
Date: June 15, 2009 12:03PM

Hi,

This is a notice in phpMyAdmin app.
You can just ignore it since it is not an error.

Don't worry about that, simply continue your setup... winking smiley

Florian

WampServer Patch (Screenshots)
Topic EN : www.wampserver.com
Topic FR : www.wampserver.com

Options: ReplyQuote
Re: help with an error of wamp
Posted by: johnchronis (---.dsl.hol.gr)
Date: June 15, 2009 12:19PM

but when i go localhost/phpmyadmin and login it shows that message and nothing else, so it's a problem...



Edited 1 time(s). Last edit at 06/15/2009 12:38PM by johnchronis.

Options: ReplyQuote
Re: help with an error of wamp
Posted by: toumimi (---.224.115-78.rev.gaoland.net)
Date: June 15, 2009 04:16PM

I don't know why you go to setup when you log in from the login form, but
what you can do is : download the latest version of phpMyAdmin,
or you can manually correct this notice in the given file :

Replace :
foreach ($c['Servers'] as $id => $server) {
   $k = preg_replace('/[^A-Za-z0-9_]/', '_', $k);
   $ret .= '/* Server: ' . $this->getServerName($id) . " [$id] */" . $crlf
   . '$i++;' . $crlf;
      foreach ($server as $k => $v) {

by this code :
foreach ($c['Servers'] as $id => $server) {
   $ret .= '/* Server: ' . $this->getServerName($id) . " [$id] */" . $crlf
   . '$i++;' . $crlf;
      foreach ($server as $k => $v) {
         $k = preg_replace('/[^A-Za-z0-9_]/', '_', $k);

As this line does not contain important code, problem doesn't from here...
To run setup script of phpMyAdmin, you also have to create a folder config which will receive created config.inc.php.
When you have finished, copy this file to phpMyadmin folder and remove folder config...

Florian

WampServer Patch (Screenshots)
Topic EN : www.wampserver.com
Topic FR : www.wampserver.com

Options: ReplyQuote


Sorry, only registered users may post in this forum.