This is a discussion on Re: [PHP] Re: Problem getting phpMyAdmin to work on localhost within the PHP General forums, part of the PHP Programming Forums category; Fr one, you'll probably want to make a symbolic link to make your url look a little prettier and ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Fr one, you'll probably want to make a symbolic link to make your url look a
little prettier and make it easy on you for upgrades. So for example if you make a symbolic link from phpMyAdmin-2.5.2-rc2 to phpMyAdmin then every single time you upgrade you just ungzip your directory, then recreate the symbolic link and there you have it. Now if you want to get rid of that error just set this variable: $cfg['PmaNoRelation_DisableWarning'] = TRUE; And that should take care of it! Cheers! Rick "The only way to have a friend is to be one." - Ralph Waldo Emerson > From: "Richard White" <whiter@mailops.com> > Organization: (none) > Reply-To: "Richard White" <whiter@mailops.com> > Date: Tue, 15 Jul 2003 10:45:00 +0100 > To: php-general@lists.php.net, php-windows@lists.php.net > Subject: [php] Re: Problem getting phpMyAdmin to work on localhost > > > "Shena Delian O'Brien" <shena@darklock.com> wrote in message > news:3F12F5F7.9060206@darklock.com... >> What's your: >> >> $cfg['PmaAbsoluteUri'] >> $cfg['Servers'][$i]['host'] >> >> ? Should be something like : >> >> $cfg['Servers'][$i]['host'] = 'http://localhost/phpMyAdmin'; >> $cfg['Servers'][$i]['host'] = 'localhost'; >> >> Post other config entries that you've changed...? What authentication >> method are you using, etc? Sounds like maybe just maybe your >> authentication isn't working... > > Hi Shena, > > Just in case it made a difference, I upgraded to V2.5.2 of phpMyAdmin. > > My entries (ie. those I've changed) are:- > > $cfg['PmaAbsoluteUri'] = 'http://127.0.0.1/phpMyAdmin-2.5.2-rc2/'; > $cfg['Servers'][$i]['host'] = 'localhost'; > $cfg['Servers'][$i]['controluser'] = 'root'; > $cfg['Servers'][$i]['controlpass'] = '...'; > $cfg['Servers'][$i]['auth_type'] = 'config'; > $cfg['Servers'][$i]['user'] = 'root'; > $cfg['Servers'][$i]['password'] = '...'; > $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; > $cfg['Servers'][$i]['bookmarktable'] = 'PMA_bookmark'; > $cfg['Servers'][$i]['relation'] = 'PMA_relation'; > $cfg['Servers'][$i]['table_info'] = 'PMA_table_info' > $cfg['Servers'][$i]['table_coords'] = 'PMA_table_coords' > $cfg['Servers'][$i]['pdf_pages'] = 'PMA_pdf_pages'; > $cfg['Servers'][$i]['column_info'] = 'PMA_column_info'; > $cfg['Servers'][$i]['history'] = 'PMA_history'; > > http://127.0.0.1/ is configured in Apache to be development directory on C: > (ie. C:\...\...\development) > > The {phpmyadmin} directory is thus > C:\...\...\development\phpmyadmin > > Apache is working, PHP is working and MySQL is working. phpMyAdmin is > working too, with the exception of this feature. > > On phpMyAdmin screens, I see:- > "Error > The additional Features for working with linked Tables have been > deactivated. To find out why click here." > > > Any ideas on the cause of the problem? > > PS: I get the same results running phpMyAdmin in Netscape. > > Thanks in advance, > Richard > > > > > > > > > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > |