“发生了致命的JavaScript错误。你想发送一个错误报告吗?“在phpmyadmin上

问题描述 投票:2回答:4

几天前,我根据网站的教程将phpMyAdmin升级到最新版本(删除并替换Xampp中的phpMyAdmin文件夹的所有内容,并替换为最新版本并再次放置旧的config.inc.php)。升级后,我经常收到错误消息和错误代码。

         {
"exception": {
    "mode": "onerror",
    "message": "Uncaught ReferenceError: makeProfilingChart is not defined",
    "stack": [
        {
            "line": "1",
            "func": "?",
            "uri": "sql.php?target=",
            "scriptname": "sql.php"
        }
    ],
    "useragent": "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36",
    "uri": "sql.php?target="
},
"script_name": "sql.php",
"pma_version": "4.1.7",
"browser_name": "CHROME",
"browser_version": "32.0.1700.107",
"user_os": "Win",
"server_software": "Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.5.6",
"user_agent_string": "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36",
"locale": "en",
"configuration_storage": "enabled",
"php_version": "5.5.6",
"microhistory": {
    "pages": [
        {
            "hash": "index.php?db=&table=&server=1&target=&token=9e78f35e781e58d1a3a46f930985af27"
        },
        {
            "hash": "db_structure.php?db=widget_crop&table=&server=1&target=&token=9e78f35e781e58d1a3a46f930985af27",
            "params": {
                "opendb_url": "db_structure.php",
                "safari_browser": "0",
                "querywindow_height": "400",
                "querywindow_width": "600",
                "collation_connection": "utf8mb4_general_ci",
                "lang": "en",
                "server": "1",
                "text_dir": "ltr",
                "pma_text_default_tab": "Browse",
                "pma_text_left_default_tab": "Structure",
                "confirm": "true"
            }
        },
        {
            "hash": "sql.php?db=widget_crop&table=users&server=1&target=&token=9e78f35e781e58d1a3a46f930985af27",
            "params": {
                "opendb_url": "db_structure.php",
                "safari_browser": "0",
                "querywindow_height": "400",
                "querywindow_width": "600",
                "collation_connection": "utf8mb4_general_ci",
                "lang": "en",
                "server": "1",
                "text_dir": "ltr",
                "pma_text_default_tab": "Browse",
                "pma_text_left_default_tab": "Structure",
                "confirm": "true"
            }
        }
    ],
    "current_index": "3"
}
}

我不能恢复到旧版本,因为我已经删除它,错误导致没有响应鼠标点击,我陷入其中。

phpmyadmin
4个回答
12
投票

我还在Chrome浏览器中显示错误消息(“发生了致命的JavaScript错误。您要发送错误报告吗?”)。我在Internet Explorer中尝试'localhost / phpmyadmin',它运行良好。所以我在Chrome浏览器中禁用了PageXray扩展程序。它适用于Chrome浏览器。祝好运。


1
投票

这是Google Chrome上次更新时遇到的问题。其他jQuery和其他代码中会出现此问题。我建议你用Chromium。


1
投票

安装某些扩展程序时,Chrome浏览器会出现此问题。对于我的情况,它是PageXray。禁用PageXray扩展,phpmyadmin工作正常,加载速度也快。


0
投票

我找到了针对Chrome浏览器此问题的解决方案。当我尝试访问phpmyadmin并且我也安装了PageXray扩展时,我也在我的localhost上遇到了这个问题。因此,如果您正在使用Chrome的PageXray扩展程序并希望在不删除PageXray扩展名的情况下摆脱此错误,请执行以下操作:

  • 右键单击将放置在Chrome地址栏上的PageXray图标(如screenshot1所示)
  • 将鼠标悬停在“这可以读取和更改站点数据”下拉列表中,然后选择“当您单击扩展名时”选项
  • 现在您将能够毫无问题地访问phpmyadmin和其他功能。

它唯一的区别是,现在每次要检查网站上使用的技术堆栈时,您都需要单击PageXray扩展图标。

屏幕截图1:Screenshot: set PageXray extension option to remove the error on phpmyadmin panel

© www.soinside.com 2019 - 2024. All rights reserved.