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 this is because in phpMyAdmin 3.2.0.1, the relationship lines between tables are not displayed in Internet Explorer 8 (even if they are displayed in Firefox and Chrome). I want to check if the latest version is fixed.

Thank.

UPDATE: Lines are displayed in compatibility mode.

+5
source share
4 answers

Can I download the latest version of phpMyAdmin and use it with WampServer?

. , .

+3

.

  • PHPMyAdmin http://www.phpmyadmin.net/home_page/downloads.php. . PHP 5.3, PHPMyAdmin 3.x, PHPMyAdmin 2.x

  • C:\wamp\apps\phpmyadmin3.2.0.1\ config.inc.php . , ​​ MySQL MySQL, .

  • C:\wamp\apps\phpmyadmin4.2.5\

  • ( ) C:\wamp\apps\phpmyadmin4.2.5\.

  • config.inc.php C:\wamp\apps\phpmyadmin4.2.5 \, .

  • C:\wamp\alias\phpmyadmin.conf. :

    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>
    

    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>
    
  • wamp PHPMyAdmin , .

PHPMyAdmin

+12

!

phpMyAdmin WAMP . .

  • phpMyAdmin.
  • WAMP, c:/wamp/apps.
  • config.inc.php phpMyAdmin .
  • phpmyadmin.conf, , c:/wamp/alias. Alias <Directory> phpMyAdmin.
  • wampmanager.conf, WAMP.
  • Finally, restart all services in WAMP (assuming WAMP is running) and enter the updated phpMyAdmin.
+5
source

you can easily update
-> just open the link to download the version you need and launch the Wampserver Homepage

0
source

All Articles