Can I install the latest version of phpMyAdmin and use it with WampServer?
I have WampServer 2.0 with phpMyAdmin 3.2.0.1. The latest version of phpMyAdmin is 3.3.8.1.
Can I download the latest version of phpMyAdmin and use it with WampServer?
The reason I want to do that is that in phpMyAdmin 3.2.0.1 the relationship lines between tables do not appear in Internet Explorer 8 (even though they do appear in Firefox and Chrome). I want to see if the latest version 开发者_如何学Gohas that fixed.
Thanks.
UPDATE: The lines show up in compatibility view.
Follow these steps
Download the latest version of PHPMyAdmin at http://www.phpmyadmin.net/home_page/downloads.php. Note: If you are running PHP version 5.3 you should download the latest PHPMyAdmin version 3.x, otherwise download the latest PHPMyAdmin version 2.x
Go to
C:\wamp\apps\phpmyadmin3.2.0.1\
and copy out the config.inc.php file to somewhere safe. You are doing this in case you have a password protected MySQL install or specific MySQL options set you to want to keep.Create folders in
C:\wamp\apps\phpmyadmin4.2.5\
Copy the contents of the unzipped folder (not the folder) into the
C:\wamp\apps\phpmyadmin4.2.5\
directory.Then copy back the config.inc.php into C:\wamp\apps\phpmyadmin4.2.5\ you copied earlier.
Go to
C:\wamp\alias\phpmyadmin.conf
. Change following:Alias /phpmyadmin "c:/wamp/apps/phpMyAdmin-3.2.0.1/" <Directory "c:/wamp/apps/phpMyAdmin-3.2.0.1/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
to:
Alias /phpmyadmin "c:/wamp/apps/phpmyadmin4.2.5/" <Directory "c:/wamp/apps/phpmyadmin4.2.5/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
Restart wamp and start up PHPMyAdmin in your browser and see if it works.
PHPMyAdmin has been upgraded
Absolutely!
I covered in detail how to upgrade phpMyAdmin in WAMP with a series of screenshots in a blog post. Below are the basic steps.
- Download the most recent stable version of phpMyAdmin.
- Extract the contents of the download to the apps directory inside your WAMP root, typically
c:/wamp/apps
. - Copy the
config.inc.php
configuration file from the current version of phpMyAdmin to the new version. - Update the
phpmyadmin.conf
configuration file located in the alias directory, typicallyc:/wamp/alias
. Point theAlias
and<Directory>
paths to your new phpMyAdmin directory. - Update the
wampmanager.conf
configuration file located in the WAMP root directory. - Last but not least, Restart All Services in WAMP (assuming WAMP is running), and login to your upgraded phpMyAdmin.
Can I download the latest version of phpMyAdmin and use it with WampServer?
Sure. You can even install it in a separate directory and have it point at the same database as the other version.
you can update easily
->just open the link download the version you need and run
Wampserver homepage
Well, phpMyAdmin on my side could not work with PHP version 8 using WampServer. All i had to do is the following steps:
Download the latest version of phpMyAdmin here
Extract the downloaded archive into
.../wamp/apps
Copy the
...wamp/apps/phpMyAdmin5.1.1/config.inc.php
from the old version of phpMyAdmin and pasted into the newest version I downloadedChange phpMyAdmin path in
...wamp/alias/phpmyadmin.conf
to the latest version I downloadedQuit the Wamp Server and start it again
Click the Wamp Server icon on the system tray and click
phpMyAdmin 5.1.1
or any previous version, you should see phpMyAdmin page in your web browser
That is all I had to do to add a compatible version of phpMyAdmin that would properly work with PHP 8.
精彩评论