我可以安装最新版本的 phpMyAdmin 并将其与 WampServer 一起使用吗?

发布于 2024-10-07 18:55:38 字数 290 浏览 0 评论 0原文

我有 WampServer 2.0 和 phpMyAdmin 3.2.0.1。 phpMyAdmin 的最新版本是 3.3.8.1。

我可以下载最新版本的 phpMyAdmin 并将其与 WampServer 一起使用吗?

我想要这样做的原因是,在 phpMyAdmin 3.2.0.1 中,表之间的关系线不会出现在 Internet Explorer 8 中(即使它们确实出现在 Firefox 和 Chrome 中)。我想看看最新版本是否修复了这个问题。

谢谢。

更新: 这些行显示在兼容性视图中。

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 has that fixed.

Thanks.

UPDATE:
The lines show up in compatibility view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

在你怀里撒娇 2024-10-14 18:55:38

按照以下步骤操作

  1. http://www.phpmyadmin.net/ 下载最新版本的 PHPMyAdmin home_page/downloads.php
    注意:如果您运行的是 PHP 5.3 版,则应下载最新的 PHPMyAdmin 3.x 版,否则下载最新的 PHPMyAdmin 2.x 版

  2. 转到 C:\wamp\apps\phpmyadmin3.2.0.1\ 并将 config.inc.php 文件复制到安全的地方。如果您有受密码保护的 MySQL 安装或您想要保留的特定 MySQL 选项,则执行此操作。

  3. C:\wamp\apps\phpmyadmin4.2.5\中创建文件夹

  4. < p>将解压后的文件夹(不是文件夹)的内容复制到C:\wamp\apps\phpmyadmin4.2.5\目录中。

  5. 然后将 config.inc.php 复制回您之前复制的 C:\wamp\apps\phpmyadmin4.2.5\

  6. 转到C:\wamp\alias\phpmyadmin.conf。更改以下内容:

    别名 /phpmyadmin "c:/wamp/apps/phpMyAdmin-3.2.0.1/"
    
    <目录“c:/wamp/apps/phpMyAdmin-3.2.0.1/”>
         选项索引 FollowSymLinks 多视图
         允许覆盖全部
         订单拒绝、允许
         所有人都否认
         允许来自 127.0.0.1
     
    

    至:

    别名 /phpmyadmin "c:/wamp/apps/phpmyadmin4.2.5/"
    
    <目录“c:/wamp/apps/phpmyadmin4.2.5/”>
        选项索引 FollowSymLinks 多视图
        允许覆盖全部
        订单拒绝、允许
        所有人都否认
        允许来自 127.0.0.1
    
    
  7. 重新启动 wamp 并在浏览器中启动 PHPMyAdmin,看看它是否有效。

PHPMyAdmin已升级

Follow these steps

  1. 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

  2. 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.

  3. Create folders in C:\wamp\apps\phpmyadmin4.2.5\

  4. Copy the contents of the unzipped folder (not the folder) into the C:\wamp\apps\phpmyadmin4.2.5\ directory.

  5. Then copy back the config.inc.php into C:\wamp\apps\phpmyadmin4.2.5\ you copied earlier.

  6. 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>
    
  7. Restart wamp and start up PHPMyAdmin in your browser and see if it works.

PHPMyAdmin has been upgraded

自找没趣 2024-10-14 18:55:38

绝对地!

我在博客中用一系列截图详细介绍了如何在 WAMP 中升级 phpMyAdmin邮政。以下是基本步骤。

  1. 下载最新稳定版本的 phpMyAdmin
  2. 将下载内容解压到 WAMP 根目录中的 apps 目录,通常为 c:/wamp/apps
  3. 将 config.inc.php 配置文件从当前版本的 phpMyAdmin 复制到新版本。
  4. 更新位于 alias 目录(通常为 c:/wamp/alias)中的 phpmyadmin.conf 配置文件。将 Alias 路径指向新的 phpMyAdmin 目录。
  5. 更新位于 WAMP 根目录中的 wampmanager.conf 配置文件。
  6. 最后但并非最不重要的一点是,重新启动 WAMP 中的所有服务(假设 WAMP 正在运行),然后登录升级后的 phpMyAdmin。

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.

  1. Download the most recent stable version of phpMyAdmin.
  2. Extract the contents of the download to the apps directory inside your WAMP root, typically c:/wamp/apps.
  3. Copy the config.inc.php configuration file from the current version of phpMyAdmin to the new version.
  4. Update the phpmyadmin.conf configuration file located in the alias directory, typically c:/wamp/alias. Point the Alias and <Directory> paths to your new phpMyAdmin directory.
  5. Update the wampmanager.conf configuration file located in the WAMP root directory.
  6. Last but not least, Restart All Services in WAMP (assuming WAMP is running), and login to your upgraded phpMyAdmin.
余罪 2024-10-14 18:55:38

我可以下载最新版本的 phpMyAdmin 并将其与 WampServer 一起使用吗?

当然。您甚至可以将其安装在单独的目录中,并使其指向与其他版本相同的数据库。

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.

芸娘子的小脾气 2024-10-14 18:55:38

您可以轻松更新
->只需打开链接下载您需要的版本并运行
Wampserver 主页

you can update easily
->just open the link download the version you need and run
Wampserver homepage

机场等船 2024-10-14 18:55:38

好吧,我这边的 phpMyAdmin 无法使用 WampServer 与 PHP 版本 8 一起工作。我所要做的就是以下步骤:

  1. 下载最新版本的phpMyAdmin 这里

  2. 解压下载的存档进入 .../wamp/apps

  3. 从旧版本中复制 ...wamp/apps/phpMyAdmin5.1.1/config.inc.php版本的 phpMyAdmin 并粘贴到我下载的最新版本

  4. 更改 中的 phpMyAdmin 路径。 ..wamp/alias/phpmyadmin.conf 到我下载的最新版本

  5. 退出Wamp服务器并重新启动

  6. 单击系统托盘上的Wamp Server图标,然后单击phpMyAdmin 5.1.1 或任何以前的版本,您应该在网络浏览器中看到 phpMyAdmin 页面

这就是我添加可与 PHP 8 正常工作的 phpMyAdmin 兼容版本所需要做的全部工作。

Well, phpMyAdmin on my side could not work with PHP version 8 using WampServer. All i had to do is the following steps:

  1. Download the latest version of phpMyAdmin here

  2. Extract the downloaded archive into .../wamp/apps

  3. Copy the ...wamp/apps/phpMyAdmin5.1.1/config.inc.php from the old version of phpMyAdmin and pasted into the newest version I downloaded

  4. Change phpMyAdmin path in ...wamp/alias/phpmyadmin.conf to the latest version I downloaded

  5. Quit the Wamp Server and start it again

  6. 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.

如梦亦如幻 2024-10-14 18:55:38

我正在使用 Wamp,我知道可能会很晚,但上述解决方案都不适合我。所以我尝试自己找到它,这是它工作的唯一方式(在 config/database.php 中):

'mysql' =>; [
            '司机' => 'mysql',
            '转储' => env('APP_ENV') == '本地' ? [
                'dump_binary_path'=>; 'D:\wamp64\bin\mysql\mysql5.7.36\bin',
                'use_single_transaction',
                '超时' => 60 * 5, // 5分钟超时
            ]:[],
            ...
           ],

您必须找到您的 wamp 文件所在的位置,并将您的 mySql 路径和版本的路径放入“dump_binary_path”。

I'm using Wamp, I know it might be very late, but non of the above solutions worked for me. So I tried to find it myself, and this is the only way it worked (in config/database.php):

'mysql' => [
            'driver' => 'mysql',
            'dump' => env('APP_ENV') == 'local'  ? [
                'dump_binary_path' => 'D:\wamp64\bin\mysql\mysql5.7.36\bin',
                'use_single_transaction',
                'timeout' => 60 * 5, // 5 minute timeout
            ] : [],
            ...
           ],

You have to find where your wamp files locate, and put the path of your mySql path and version to 'dump_binary_path'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文