Произошла фатальная ошибка javascript phpmyadmin

I upgraded phpMyAdmin to latest version some days ago following a tutorial from a site (deleting and replacing all the content of phpMyAdmin folder in Xampp and replacing with latest one and placing old config.inc.php again). After upgrading, I frequently get the error message and error code.

         {
"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"
}
}

I can’t revert back to the old version since I already deleted it, the error cause no response to mouse click and I stuck in it.

Я использую phpMyAdmin версии 4.4.4 на сервере CentOS Linux (2.6.32-504.12.2). Я продолжаю получать розовый баннер в нижней части окна PMA с указанием: Произошла фатальная ошибка JavaScript. Вы хотите отправить сообщение об ошибке? Если я нажму на Отправить отчет, ничего не произойдет. Если я отображаю детали отчета, это то, что я вижу:

{
"pma_version": "4.4.4",
"browser_name": "FIREFOX",
"browser_version": "37.0",
"user_os": "Mac",
"server_software": "Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips",
"user_agent_string": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0",
"locale": "en",
"configuration_storage": "disabled",
"php_version": "5.6.7",
"exception_type": "js",
"exception": {
"mode": "stack",
"name": "TypeError",
"message": "field_id.match(...) is null",
"stack": [
{
"func": "getFieldValidators",
"args": "",
"line": 302,
"column": "16",
"context": [
" * @return array of [function, parameters to be passed to function]",
" */",
"function getFieldValidators(field_id, onKeyUpOnly)",
"{",
"    // look for field bound validator",
"    var name = field_id.match(/[^-]+$/)[0];",
"    if (typeof validators._field[name] != 'undefined') {",
"        return [[validators._field[name], null]];",
"    }",
"",
"    // look for registered validators"],
"filename": "config.js"},
{
"func": "validate_field",
"args": "",
"line": 418,
"column": "21",
"context": [
"{",
"    var args, result;",
"    var $field = $(field);",
"    var field_id = $field.attr('id');",
"    errors[field_id] = [];",
"    var functions = getFieldValidators(field_id, isKeyUp);",
"    for (var i = 0; i < functions.length; i++) {",
"        if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== n//...",
"            args = functions[i][1].slice(0);",
"        } else {",
"            args = [];"],
"filename": "config.js"},
{
"func": "?",
"args": "",
"line": 511,
"column": "13",
"context": [
"    var $check_page_refresh = $('#check_page_refresh');",
"    if ($check_page_refresh.length === 0 || $check_page_refresh.val() == '1') {",
"        // run all field validators",
"        var errors = {};",
"        for (var i = 0; i < $elements.length; i++) {",
"            validate_field($elements[i], false, errors);",
"        }",
"        // run all fieldset validators",
"        $('fieldset').each(function () {",
"            validate_fieldset(this, false, errors);",
"        });"],
"filename": "config.js"},
{
"func": "ErrorReport.wrap_function/new_func",
"args": "",
"line": 277,
"column": "28",
"context": [
"     */",
"    wrap_function: function (func) {",
"        if (!func.wrapped) {",
"            var new_func = function () {",
"                try {",
"                    return func.apply(this, arguments);",
"                } catch (x) {",
"                    TraceKit.report(x);",
"                }",
"            };",
"            new_func.wrapped = true;"],
"filename": "error_report.js"},
{
"func": "m.event.dispatch",
"args": "",
"line": 3,
"column": "8384",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "$event.dispatch",
"args": "",
"line": 374,
"column": "9",
"context": [
"$event.dispatch = function( event ){",
"tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){",
"tt$.removeData( this, "suppress."+ event.type );",
"ttreturn;",
"t}",
"treturn $dispatch.apply( this, arguments );",
"};",
"",
"// event fix hooks for touch events...",
"var touchHooks = ",
"$event.fixHooks.touchstart = "],
"filename": "jquery/jquery.event.drag-2.2.js"},
{
"func": "m.event.add/r.handle",
"args": "",
"line": 3,
"column": "5122",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.event.trigger",
"args": "",
"line": 3,
"column": "7535",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".trigger/<",
"args": "",
"line": 3,
"column": "15396",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".each",
"args": "",
"line": 2,
"column": "2971",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.prototype.each",
"args": "",
"line": 2,
"column": "833",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".trigger",
"args": "",
"line": 3,
"column": "15375",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "AJAX.fireOnload",
"args": "",
"line": 109,
"column": "9",
"context": [
"     *",
"     * @return void",
"     */",
"    fireOnload: function (file) {",
"        var eventName = 'onload_' + AJAX.hash(file);",
"        $(document).trigger(eventName);",
"        if (this._debug) {",
"            console.log(",
"                // no need to translate",
"                "Fired event " + eventName + " for file " + file",
"            );"],
"filename": "ajax.js"},
{
"func": "?",
"args": "",
"line": "4",
"column": "632",
"uri": "sql.php?target=",
"scriptname": "sql.php"},
{
"func": "m.Callbacks/j",
"args": "",
"line": 2,
"column": "27239",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.Callbacks/k.fireWith",
"args": "",
"line": 2,
"column": "28057",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".ready",
"args": "",
"line": 2,
"column": "29889",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "J",
"args": "",
"line": 2,
"column": "30255",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"}
],
"useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0",
"incomplete": "false",
"uri": "sql.php?target="},
"script_name": "sql.php",
"microhistory": {
"current_index": "0"}
}

Я попытался запустить phpMyAdmin в последних версиях Safari, Chrome и Firefox на Mac (OS X Yosemite) и получил ту же фатальную ошибку во всех трех браузерах. Кто-нибудь знает, как это исправить? Спасибо!

0

When I open phpMyAdmin — Status — Monitor I get an error: A fatal JavaScript error has occurred. Would you like to send an error report?

Report message is:

{
"exception": {
    "mode": "stack",
    "name": "TypeError",
    "message": "chartObj is undefined",
    "stack": [
        {
            "func": "addChart",
            "args": "",
            "line": 1042,
            "column": "30",
            "context": [
                "    /* Adds a chart to the chart grid */",
                "    function addChart(chartObj, initialize) {",
                "",
                "        var i;",
                "        var settings = {",
                "            title: escapeHtml(chartObj.title),",
                "            grid: {",
                "                drawBorder: false,",
                "                shadow: false,",
                "                background: 'rgba(0,0,0,0)'",
                "            },"
            ],
            "filename": "server_status_monitor.js"
        },
        {
            "func": "initGrid",
            "args": "",
            "line": 991,
            "column": "",
            "context": [
                "        $.each(runtime.charts, function (key, value) {",
                "            keys.push(key);",
                "        });",
                "        keys.sort();",
                "        for (i = 0; i < keys.length; i++) {",
                "            addChart(runtime.charts[keys[i]], true);",
                "        }",
                "",
                "        /* Fill in missing cells */",
                "        var numCharts = $('#chartGrid .monitorChart').length;",
                "        var numMissingCells = (monitorSettings.columns - numCharts % monito//..."
            ],
            "filename": "server_status_monitor.js"
        },
        {
            "func": "?",
            "args": "",
            "line": 667,
            "column": "",
            "context": [
                "        if (! runtime.redrawCharts) {",
                "            $(this).html(PMA_getImage('play.png') + ' ' + PMA_messages.strR//...",
                "        } else {",
                "            $(this).html(PMA_getImage('pause.png') + ' ' + PMA_messages.str//...",
                "            if (! runtime.charts) {",
                "                initGrid();",
                "                $('a[href="#settingsPopup"]').show();",
                "            }",
                "        }",
                "        return false;",
                "    });"
            ],
            "filename": "server_status_monitor.js"
        },
        {
            "func": "ErrorReport.wrap_function/new_func",
            "args": "",
            "line": 249,
            "column": "",
            "context": [
                "     */",
                "    wrap_function: function (func) {",
                "        if (!func.wrapped) {",
                "            var new_func = function () {",
                "                try {",
                "                    return func.apply(this, arguments);",
                "                } catch (x) {",
                "                    TraceKit.report(x);",
                "                }",
                "            };",
                "            new_func.wrapped = true;"
            ],
            "filename": "error_report.js"
        },
        {
            "func": "v.event.dispatch",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "$event.dispatch",
            "args": "",
            "line": 374,
            "column": "",
            "context": [
                "$event.dispatch = function( event ){",
                "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){",
                "tt$.removeData( this, "suppress."+ event.type );",
                "ttreturn;",
                "t}",
                "treturn $dispatch.apply( this, arguments );",
                "};",
                "",
                "// event fix hooks for touch events...",
                "var touchHooks = ",
                "$event.fixHooks.touchstart = "
            ],
            "filename": "jquery/jquery.event.drag-2.2.js"
        },
        {
            "func": "v.event.add/u",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "v.event.trigger",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".trigger/<",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".each",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "v.prototype.each",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".trigger",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "?",
            "args": "",
            "line": 2090,
            "column": "",
            "context": [
                "    }",
                "});",
                "",
                "// Run the monitor once loaded",
                "AJAX.registerOnload('server_status_monitor.js', function () {",
                "    $('a[href="#pauseCharts"]').trigger('click');",
                "});",
                "",
                "function serverResponseError() {",
                "    var btns = {};",
                "    btns[PMA_messages.strReloadPage] = function () {"
            ],
            "filename": "server_status_monitor.js"
        },
        {
            "func": "ErrorReport.wrap_function/new_func",
            "args": "",
            "line": 249,
            "column": "",
            "context": [
                "     */",
                "    wrap_function: function (func) {",
                "        if (!func.wrapped) {",
                "            var new_func = function () {",
                "                try {",
                "                    return func.apply(this, arguments);",
                "                } catch (x) {",
                "                    TraceKit.report(x);",
                "                }",
                "            };",
                "            new_func.wrapped = true;"
            ],
            "filename": "error_report.js"
        },
        {
            "func": "v.event.dispatch",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "$event.dispatch",
            "args": "",
            "line": 374,
            "column": "",
            "context": [
                "$event.dispatch = function( event ){",
                "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){",
                "tt$.removeData( this, "suppress."+ event.type );",
                "ttreturn;",
                "t}",
                "treturn $dispatch.apply( this, arguments );",
                "};",
                "",
                "// event fix hooks for touch events...",
                "var touchHooks = ",
                "$event.fixHooks.touchstart = "
            ],
            "filename": "jquery/jquery.event.drag-2.2.js"
        },
        {
            "func": "v.event.add/u",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "v.event.trigger",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".trigger/<",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".each",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "v.prototype.each",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": ".trigger",
            "args": "",
            "line": 2,
            "column": "",
            "context": [
                "/*! jQuery v1.8.3 jquery.com | jquery.org/license */r",
                "(function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),functio//...",
                "",
                "/* vim: set expandtab sw=4 ts=4 sts=4: */",
                "/**",
                " * This object handles ajax requests for pages. It also",
                " * handles the reloading of the main menu and scripts."
            ],
            "filename": "jquery/jquery-1.8.3.min.js"
        },
        {
            "func": "AJAX.fireOnload",
            "args": "",
            "line": 105,
            "column": "",
            "context": [
                "     *",
                "     * @return void",
                "     */",
                "    fireOnload: function (file) {",
                "        var eventName = 'onload_' + AJAX.hash(file);",
                "        $(document).trigger(eventName);",
                "        if (this._debug) {",
                "            console.log(",
                "                // no need to translate",
                "                "Fired event " + eventName + " for file " + file",
                "            );"
            ],
            "filename": "ajax.js"
        },
        {
            "func": "AJAX.scriptHandler.done",
            "args": "",
            "line": 430,
            "column": "",
            "context": [
                "        done: function () {",
                "            if (typeof ErrorReport !== 'undefined') {",
                "                ErrorReport.wrap_global_functions();",
                "            }",
                "            for (var i in this._scriptsToBeFired) {",
                "                AJAX.fireOnload(this._scriptsToBeFired[i]);",
                "            }",
                "            AJAX.active = false;",
                "        },",
                "        /**",
                "         * Appends a script element to the head to load the scripts"
            ],
            "filename": "ajax.js"
        },
        {
            "func": "?",
            "args": "",
            "line": null,
            "column": "",
            "context": [
                "        }",
                "    });",
                "});",
                ";",
                "",
                "AJAX.scriptHandler.done();"
            ],
            "filename": "server_status_sorter.js"
        }
    ],
    "useragent": "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0",
    "uri": "server_status_monitor.php?target="
},
"script_name": "server_status_monitor.php",
"pma_version": "4.1.12",
"browser_name": "FIREFOX",
"browser_version": "28.0",
"user_os": "Win",
"server_software": "Apache",
"user_agent_string": "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0",
"locale": "en",
"configuration_storage": "enabled",
"php_version": "5.4.27",
"microhistory": {
    "pages": [
        {
            "hash": "index.php?db=&table=&server=1&target=&token=032efd2ec46abfaaf1ff3bbb7c2a9f0d"
        },
        {
            "hash": "server_status.php?db=&table=&server=1&target=&token=032efd2ec46abfaaf1ff3bbb7c2a9f0d",
            "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": "server_status_monitor.php?db=&table=&server=1&target=&token=032efd2ec46abfaaf1ff3bbb7c2a9f0d",
            "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"
}

}

I try in IE, FireFox and Chrome.
Can anybody help to fix it?

Добавляю первоначальные данные через Seeder, захожу в phpmyadmin, а там Протзошла фатальная ошибка JavaScript.
Вот подробности ошибки:
{
«pma_version»: «4.4.13.1deb1»,
«browser_name»: «CHROME»,
«browser_version»: «48.0.2564.97»,
«user_os»: «Linux»,
«server_software»: «Apache/2.4.12 (Ubuntu)»,
«user_agent_string»: «Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36»,
«locale»: «ru»,
«configuration_storage»: «disabled»,
«php_version»: «5.6.11-1ubuntu3.1»,
«exception_type»: «js»,
«exception»: {
«mode»: «stack»,
«name»: «TypeError»,
«message»: «Cannot read property ‘0’ of null»,
«stack»: [
{
«line»: 235,
«func»: «»,
«context»: [
» lastException = null;»,
» notifyHandlers.apply(null, [stack, null].concat(args));»,
» }»,
» }, (stack.incomplete ? 2000 : 0));»,
«»,
» throw ex; // re-throw to propagate to the top level (and cause wind//…»,
» }»,
«»,
» report.subscribe = subscribe;»,
» report.unsubscribe = unsubscribe;»,
» return report;»
],
«column»: «»,
«filename»: «tracekit/tracekit.js»
},
{
«func»: «getFieldValidators»,
«line»: 302,
«column»: «40»,
«context»: [
» * return array of [function, parameters to be passed to function]»,
» */»,
«function getFieldValidators(field_id, onKeyUpOnly)»,
«{«,
» // look for field bound validator»,
» var name = field_id.match(/[^-]+$/)[0];»,
» if (typeof validators._field[name] != ‘undefined’) {«,
» return [[validators._field[name], null]];»,
» }»,
«»,
» // look for registered validators»
],
«filename»: «config.js»
},
{
«func»: «validate_field»,
«line»: 418,
«column»: «21»,
«context»: [
«{«,
» var args, result;»,
» var $field = $(field);»,
» var field_id = $field.attr(‘id’);»,
» errors[field_id] = [];»,
» var functions = getFieldValidators(field_id, isKeyUp);»,
» for (var i = 0; i < functions.length; i++) {«,
» if (typeof functions[i][1] !== ‘undefined’ && functions[i][1] !== n//…»,
» args = functions[i][1].slice(0);»,
» } else {«,
» args = [];»
],
«filename»: «config.js»
},
{
«func»: «HTMLDocument.»,
«line»: 511,
«column»: «13»,
«context»: [
» var $check_page_refresh = $(‘#check_page_refresh’);»,
» if ($check_page_refresh.length === 0 || $check_page_refresh.val() == ‘1’) {«,
» // run all field validators»,
» var errors = {};»,
» for (var i = 0; i < $elements.length; i++) {«,
» validate_field($elements[i], false, errors);»,
» }»,
» // run all fieldset validators»,
» $(‘fieldset’).each(function () {«,
» validate_fieldset(this, false, errors);»,
» });»
],
«filename»: «config.js»
},
{
«func»: «HTMLDocument.new_func»,
«line»: 279,
«column»: «33»,
«context»: [
» */»,
» wrap_function: function (func) {«,
» if (!func.wrapped) {«,
» var new_func = function () {«,
» try {«,
» return func.apply(this, arguments);»,
» } catch (x) {«,
» TraceKit.report(x);»,
» }»,
» };»,
» new_func.wrapped = true;»
],
«filename»: «error_report.js»
},
{
«func»: «HTMLDocument.m.event.dispatch»,
«line»: 3,
«column»: «8436»,
«context»: [
«/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//…»,
«!function(a,b){«object»==typeof module&&»object»==typeof module.exports?mod//…»,
«if(k&&j[k]&&(e||j[k].data)||void 0!==d||»string»!=typeof b)return k||(k=i?a//…»,
«},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://…»,
«;»,
«»,
«function sprintf() {«,
«/*»
],
«filename»: «jquery/jquery-1.11.1.min.js»
},
{
«func»: «HTMLDocument.$event.dispatch»,
«line»: 374,
«column»: «19»,
«context»: [
«$event.dispatch = function( event ){«,
«tif ( $.data( this, «suppress.»+ event.type ) — new Date().getTime() > 0 ){«,


  • Вопрос задан

    более трёх лет назад

  • 1933 просмотра

I upgraded phpMyAdmin to latest version some days ago following a tutorial from a site (deleting and replacing all the content of phpMyAdmin folder in Xampp and replacing with latest one and placing old config.inc.php again). After upgrading, I frequently get the error message and error code.

         {
"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"
}
}

I can’t revert back to the old version since I already deleted it, the error cause no response to mouse click and I stuck in it.

I am running phpMyAdmin version 4.4.4 on a CentOS Linux (2.6.32-504.12.2) server. I keep getting get a pink banner at the bottom of the PMA window stating: A fatal JavaScript error has occurred. Would you like to send an error report? If I click on Send Report, nothing happens. If I display the report details, this is what I see:

{ "pma_version": "4.4.4", "browser_name": "FIREFOX", "browser_version": "37.0", "user_os": "Mac", "server_software": "Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips", "user_agent_string": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "locale": "en", "configuration_storage": "disabled", "php_version": "5.6.7", "exception_type": "js", "exception": { "mode": "stack", "name": "TypeError", "message": "field_id.match(...) is null", "stack": [ { "func": "getFieldValidators", "args": "", "line": 302, "column": "16", "context": [ " * @return array of [function, parameters to be passed to function]", " */", "function getFieldValidators(field_id, onKeyUpOnly)", "{", " // look for field bound validator", " var name = field_id.match(/[^-]+$/)[0];", " if (typeof validators._field[name] != 'undefined') {", " return [[validators._field[name], null]];", " }", "", " // look for registered validators" ], "filename": "config.js" }, { "func": "validate_field", "args": "", "line": 418, "column": "21", "context": [ "{", " var args, result;", " var $field = $(field);", " var field_id = $field.attr('id');", " errors[field_id] = [];", " var functions = getFieldValidators(field_id, isKeyUp);", " for (var i = 0; i < functions.length; i++) {", " if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== n//...", " args = functions[i][1].slice(0);", " } else {", " args = [];" ], "filename": "config.js" }, { "func": "?", "args": "", "line": 511, "column": "13", "context": [ " var $check_page_refresh = $('#check_page_refresh');", " if ($check_page_refresh.length === 0 || $check_page_refresh.val() == '1') {", " // run all field validators", " var errors = {};", " for (var i = 0; i < $elements.length; i++) {", " validate_field($elements[i], false, errors);", " }", " // run all fieldset validators", " $('fieldset').each(function () {", " validate_fieldset(this, false, errors);", " });" ], "filename": "config.js" }, { "func": "ErrorReport.wrap_function/new_func", "args": "", "line": 277, "column": "28", "context": [ " */", " wrap_function: function (func) {", " if (!func.wrapped) {", " var new_func = function () {", " try {", " return func.apply(this, arguments);", " } catch (x) {", " TraceKit.report(x);", " }", " };", " new_func.wrapped = true;" ], "filename": "error_report.js" }, { "func": "m.event.dispatch", "args": "", "line": 3, "column": "8384", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "$event.dispatch", "args": "", "line": 374, "column": "9", "context": [ "$event.dispatch = function( event ){", "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){", "tt$.removeData( this, "suppress."+ event.type );", "ttreturn;", "t}", "treturn $dispatch.apply( this, arguments );", "};", "", "// event fix hooks for touch events...", "var touchHooks = ", "$event.fixHooks.touchstart = " ], "filename": "jquery/jquery.event.drag-2.2.js" }, { "func": "m.event.add/r.handle", "args": "", "line": 3, "column": "5122", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.event.trigger", "args": "", "line": 3, "column": "7535", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".trigger/<", "args": "", "line": 3, "column": "15396", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".each", "args": "", "line": 2, "column": "2971", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.prototype.each", "args": "", "line": 2, "column": "833", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".trigger", "args": "", "line": 3, "column": "15375", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "AJAX.fireOnload", "args": "", "line": 109, "column": "9", "context": [ " *", " * @return void", " */", " fireOnload: function (file) {", " var eventName = 'onload_' + AJAX.hash(file);", " $(document).trigger(eventName);", " if (this._debug) {", " console.log(", " // no need to translate", " "Fired event " + eventName + " for file " + file", " );" ], "filename": "ajax.js" }, { "func": "?", "args": "", "line": "4", "column": "632", "uri": "sql.php?target=", "scriptname": "sql.php" }, { "func": "m.Callbacks/j", "args": "", "line": 2, "column": "27239", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.Callbacks/k.fireWith", "args": "", "line": 2, "column": "28057", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".ready", "args": "", "line": 2, "column": "29889", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "J", "args": "", "line": 2, "column": "30255", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" } ], "useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "incomplete": "false", "uri": "sql.php?target=" }, "script_name": "sql.php", "microhistory": { "current_index": "0" } } 

I’ve tried running phpMyAdmin in latest versions of Safari, Chrome and Firefox on a Mac (OS X Yosemite) and get the same fatal error in all three browsers. Anyone know how to fix this? Thanks!

I am running phpMyAdmin version 4.4.4 on a CentOS Linux (2.6.32-504.12.2) server. I keep getting get a pink banner at the bottom of the PMA window stating: A fatal JavaScript error has occurred. Would you like to send an error report? If I click on Send Report, nothing happens. If I display the report details, this is what I see:

{ "pma_version": "4.4.4", "browser_name": "FIREFOX", "browser_version": "37.0", "user_os": "Mac", "server_software": "Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips", "user_agent_string": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "locale": "en", "configuration_storage": "disabled", "php_version": "5.6.7", "exception_type": "js", "exception": { "mode": "stack", "name": "TypeError", "message": "field_id.match(...) is null", "stack": [ { "func": "getFieldValidators", "args": "", "line": 302, "column": "16", "context": [ " * @return array of [function, parameters to be passed to function]", " */", "function getFieldValidators(field_id, onKeyUpOnly)", "{", " // look for field bound validator", " var name = field_id.match(/[^-]+$/)[0];", " if (typeof validators._field[name] != 'undefined') {", " return [[validators._field[name], null]];", " }", "", " // look for registered validators" ], "filename": "config.js" }, { "func": "validate_field", "args": "", "line": 418, "column": "21", "context": [ "{", " var args, result;", " var $field = $(field);", " var field_id = $field.attr('id');", " errors[field_id] = [];", " var functions = getFieldValidators(field_id, isKeyUp);", " for (var i = 0; i < functions.length; i++) {", " if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== n//...", " args = functions[i][1].slice(0);", " } else {", " args = [];" ], "filename": "config.js" }, { "func": "?", "args": "", "line": 511, "column": "13", "context": [ " var $check_page_refresh = $('#check_page_refresh');", " if ($check_page_refresh.length === 0 || $check_page_refresh.val() == '1') {", " // run all field validators", " var errors = {};", " for (var i = 0; i < $elements.length; i++) {", " validate_field($elements[i], false, errors);", " }", " // run all fieldset validators", " $('fieldset').each(function () {", " validate_fieldset(this, false, errors);", " });" ], "filename": "config.js" }, { "func": "ErrorReport.wrap_function/new_func", "args": "", "line": 277, "column": "28", "context": [ " */", " wrap_function: function (func) {", " if (!func.wrapped) {", " var new_func = function () {", " try {", " return func.apply(this, arguments);", " } catch (x) {", " TraceKit.report(x);", " }", " };", " new_func.wrapped = true;" ], "filename": "error_report.js" }, { "func": "m.event.dispatch", "args": "", "line": 3, "column": "8384", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "$event.dispatch", "args": "", "line": 374, "column": "9", "context": [ "$event.dispatch = function( event ){", "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){", "tt$.removeData( this, "suppress."+ event.type );", "ttreturn;", "t}", "treturn $dispatch.apply( this, arguments );", "};", "", "// event fix hooks for touch events...", "var touchHooks = ", "$event.fixHooks.touchstart = " ], "filename": "jquery/jquery.event.drag-2.2.js" }, { "func": "m.event.add/r.handle", "args": "", "line": 3, "column": "5122", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.event.trigger", "args": "", "line": 3, "column": "7535", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".trigger/<", "args": "", "line": 3, "column": "15396", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".each", "args": "", "line": 2, "column": "2971", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.prototype.each", "args": "", "line": 2, "column": "833", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".trigger", "args": "", "line": 3, "column": "15375", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {", "/*" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "AJAX.fireOnload", "args": "", "line": 109, "column": "9", "context": [ " *", " * @return void", " */", " fireOnload: function (file) {", " var eventName = 'onload_' + AJAX.hash(file);", " $(document).trigger(eventName);", " if (this._debug) {", " console.log(", " // no need to translate", " "Fired event " + eventName + " for file " + file", " );" ], "filename": "ajax.js" }, { "func": "?", "args": "", "line": "4", "column": "632", "uri": "sql.php?target=", "scriptname": "sql.php" }, { "func": "m.Callbacks/j", "args": "", "line": 2, "column": "27239", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "m.Callbacks/k.fireWith", "args": "", "line": 2, "column": "28057", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": ".ready", "args": "", "line": 2, "column": "29889", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" }, { "func": "J", "args": "", "line": 2, "column": "30255", "context": [ "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...", "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...", "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...", "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...", ";", "", "function sprintf() {" ], "filename": "jquery/jquery-1.11.1.min.js" } ], "useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0", "incomplete": "false", "uri": "sql.php?target=" }, "script_name": "sql.php", "microhistory": { "current_index": "0" } } 

I’ve tried running phpMyAdmin in latest versions of Safari, Chrome and Firefox on a Mac (OS X Yosemite) and get the same fatal error in all three browsers. Anyone know how to fix this? Thanks!

Я использую phpMyAdmin версии 4.4.4 на сервере CentOS Linux (2.6.32-504.12.2). Я продолжаю получать розовый баннер в нижней части окна PMA с указанием: Произошла фатальная ошибка JavaScript. Вы хотите отправить сообщение об ошибке? Если я нажму на Отправить отчет, ничего не произойдет. Если я отображаю детали отчета, это то, что я вижу:

{
"pma_version": "4.4.4",
"browser_name": "FIREFOX",
"browser_version": "37.0",
"user_os": "Mac",
"server_software": "Apache/2.4.12 (Unix) OpenSSL/1.0.1e-fips",
"user_agent_string": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0",
"locale": "en",
"configuration_storage": "disabled",
"php_version": "5.6.7",
"exception_type": "js",
"exception": {
"mode": "stack",
"name": "TypeError",
"message": "field_id.match(...) is null",
"stack": [
{
"func": "getFieldValidators",
"args": "",
"line": 302,
"column": "16",
"context": [
" * @return array of [function, parameters to be passed to function]",
" */",
"function getFieldValidators(field_id, onKeyUpOnly)",
"{",
"    // look for field bound validator",
"    var name = field_id.match(/[^-]+$/)[0];",
"    if (typeof validators._field[name] != 'undefined') {",
"        return [[validators._field[name], null]];",
"    }",
"",
"    // look for registered validators"],
"filename": "config.js"},
{
"func": "validate_field",
"args": "",
"line": 418,
"column": "21",
"context": [
"{",
"    var args, result;",
"    var $field = $(field);",
"    var field_id = $field.attr('id');",
"    errors[field_id] = [];",
"    var functions = getFieldValidators(field_id, isKeyUp);",
"    for (var i = 0; i < functions.length; i++) {",
"        if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== n//...",
"            args = functions[i][1].slice(0);",
"        } else {",
"            args = [];"],
"filename": "config.js"},
{
"func": "?",
"args": "",
"line": 511,
"column": "13",
"context": [
"    var $check_page_refresh = $('#check_page_refresh');",
"    if ($check_page_refresh.length === 0 || $check_page_refresh.val() == '1') {",
"        // run all field validators",
"        var errors = {};",
"        for (var i = 0; i < $elements.length; i++) {",
"            validate_field($elements[i], false, errors);",
"        }",
"        // run all fieldset validators",
"        $('fieldset').each(function () {",
"            validate_fieldset(this, false, errors);",
"        });"],
"filename": "config.js"},
{
"func": "ErrorReport.wrap_function/new_func",
"args": "",
"line": 277,
"column": "28",
"context": [
"     */",
"    wrap_function: function (func) {",
"        if (!func.wrapped) {",
"            var new_func = function () {",
"                try {",
"                    return func.apply(this, arguments);",
"                } catch (x) {",
"                    TraceKit.report(x);",
"                }",
"            };",
"            new_func.wrapped = true;"],
"filename": "error_report.js"},
{
"func": "m.event.dispatch",
"args": "",
"line": 3,
"column": "8384",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "$event.dispatch",
"args": "",
"line": 374,
"column": "9",
"context": [
"$event.dispatch = function( event ){",
"tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){",
"tt$.removeData( this, "suppress."+ event.type );",
"ttreturn;",
"t}",
"treturn $dispatch.apply( this, arguments );",
"};",
"",
"// event fix hooks for touch events...",
"var touchHooks = ",
"$event.fixHooks.touchstart = "],
"filename": "jquery/jquery.event.drag-2.2.js"},
{
"func": "m.event.add/r.handle",
"args": "",
"line": 3,
"column": "5122",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.event.trigger",
"args": "",
"line": 3,
"column": "7535",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".trigger/<",
"args": "",
"line": 3,
"column": "15396",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".each",
"args": "",
"line": 2,
"column": "2971",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.prototype.each",
"args": "",
"line": 2,
"column": "833",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".trigger",
"args": "",
"line": 3,
"column": "15375",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {",
"/*"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "AJAX.fireOnload",
"args": "",
"line": 109,
"column": "9",
"context": [
"     *",
"     * @return void",
"     */",
"    fireOnload: function (file) {",
"        var eventName = 'onload_' + AJAX.hash(file);",
"        $(document).trigger(eventName);",
"        if (this._debug) {",
"            console.log(",
"                // no need to translate",
"                "Fired event " + eventName + " for file " + file",
"            );"],
"filename": "ajax.js"},
{
"func": "?",
"args": "",
"line": "4",
"column": "632",
"uri": "sql.php?target=",
"scriptname": "sql.php"},
{
"func": "m.Callbacks/j",
"args": "",
"line": 2,
"column": "27239",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "m.Callbacks/k.fireWith",
"args": "",
"line": 2,
"column": "28057",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": ".ready",
"args": "",
"line": 2,
"column": "29889",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"},
{
"func": "J",
"args": "",
"line": 2,
"column": "30255",
"context": [
"/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//...",
"!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//...",
"if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//...",
"},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://...",
";",
"",
"function sprintf() {"],
"filename": "jquery/jquery-1.11.1.min.js"}
],
"useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:37.0) Gecko/20100101 Firefox/37.0",
"incomplete": "false",
"uri": "sql.php?target="},
"script_name": "sql.php",
"microhistory": {
"current_index": "0"}
}

Я попытался запустить phpMyAdmin в последних версиях Safari, Chrome и Firefox на Mac (OS X Yosemite) и получил ту же фатальную ошибку во всех трех браузерах. Кто-нибудь знает, как это исправить? Спасибо!

0

I upgraded phpMyAdmin to latest version in ubuntu 18.04. After that, I frequently get this error message. I reinstalled it to v4.9.5 and again from latest source. Still I get this error everytime I login to phpmyadmin. This is the same case in chrome, firefox and in their incognito modes. The error causes no response to mouse clicks and I’m stuck in it. Please help.

{ "pma_version": "5.0.2", "browser_name": "CHROME", "browser_version": "84.0.4147.105", "user_os": "Linux", "server_software": "nginx/1.14.0", "user_agent_string": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36", "locale": "en", "configuration_storage": "disabled", "php_version": "7.2.33-1+ubuntu18.04.1+deb.sury.org+1", "script_name": "index.php", "exception_type": "js", "exception": { "mode": "stack", "name": "ReferenceError", "message": "isStorageSupported is not defined", "stack": [ { "func": "HTMLDocument.", "line": "1052", "column": "9", "context": [ " incInterval = window.setInterval(SetIdleTime, 1000);", " var sessionTimeout = Math.min(", " CommonParams.get('LoginCookieValidity'),", " CommonParams.get('session_gc_maxlifetime')", " );", " if (isStorageSupported('sessionStorage')) {", " window.sessionStorage.setItem('guid', guid());", " }", " var interval = (sessionTimeout - 5) * 1000;", " if (interval > Math.pow(2, 31) - 1) { // max value for setInterval(//...", " interval = Math.pow(2, 31) - 1;" ], "uri": "js/functions.js?v=5.0.2", "scriptname": "js/functions.js" }, { "func": "HTMLDocument.dispatch", "line": "2", "column": "42571", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "HTMLDocument.$event.dispatch", "line": "374", "column": "19", "context": [ "$event.dispatch = function( event ){", "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){", "tt$.removeData( this, "suppress."+ event.type );", "ttreturn;", "t}", "treturn $dispatch.apply( this, arguments );", "};", "", "// event fix hooks for touch events...", "var touchHooks = ", "$event.fixHooks.touchstart = " ], "uri": "js/vendor/jquery/jquery.event.drag-2.2.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.event.drag-2.2.js" }, { "func": "HTMLDocument.v.handle", "line": "2", "column": "40572", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Object.trigger", "line": "2", "column": "70627", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "HTMLDocument.", "line": "2", "column": "71222", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Function.each", "line": "2", "column": "2777", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "jQuery.fn.init.each", "line": "2", "column": "1419", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "jQuery.fn.init.trigger", "line": "2", "column": "71198", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Object.fireOnload", "line": "119", "column": "21", "context": [ " *", " * @return void", " */", " fireOnload: function (file) {", " var eventName = 'onload_' + AJAX.hash(file);", " $(document).trigger(eventName);", " if (this.debug) {", " // eslint-disable-next-line no-console", " console.log(", " // no need to translate", " 'Fired event ' + eventName + ' for file ' + file" ], "uri": "js/ajax.js?v=5.0.2", "scriptname": "js/ajax.js" } ], "uri": "index.php?" }

При добавлении данных с формы регистрации сайта, подключение к база данных происходит. скрипт добавления данных формы в таблицу работает без ошибок, но данные в базу данных mysql не добавляются. Обзор phpmyadmin выдаёт: Отображение строк 0 — 0 (1 всего, Запрос занял 0.0000 сек.)

Но внизу окна phpmyadmin высвечивается надпись следующего содержания:
«Произошла фатальная ошибка JavaScript. Хотите отправить отчёт об ошибке?»

Отчёт об ошибке:

pma_version: "4.4.15.5"
browser_name: "CHROME"
browser_version: "44.0.2403.130"
user_os: "Win"
server_software: "Apache"
user_agent_string: "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36"
locale: "ru"
configuration_storage: "disabled"
php_version: "5.3.29"
exception_type: "js"
exception[mode]: "stack"
exception[name]: "TypeError"
exception[message]: "Cannot read property '0' of null"
exception[stack][0][line]: "235"
exception[stack][0][func]: ""
exception[stack][0][context][0]: "                lastException = null;"
exception[stack][0][context][1]: "                notifyHandlers.apply(null, [stack, null].concat(args));"
exception[stack][0][context][2]: "            }"
exception[stack][0][context][3]: "        }, (stack.incomplete ? 2000 : 0));"
exception[stack][0][context][4]: ""
exception[stack][0][context][5]: "        throw ex; // re-throw to propagate to the top level (and cause wind//..."
exception[stack][0][context][6]: "    }"
exception[stack][0][context][7]: ""
exception[stack][0][context][8]: "    report.subscribe = subscribe;"
exception[stack][0][context][9]: "    report.unsubscribe = unsubscribe;"
exception[stack][0][context][10]: "    return report;"
exception[stack][0][column]: ""
exception[stack][0][filename]: "tracekit/tracekit.js"
exception[stack][1][func]: "getFieldValidators"
exception[stack][1][line]: "302"
exception[stack][1][column]: "40"
exception[stack][1][context][0]: " * @return array of [function, parameters to be passed to function]"
exception[stack][1][context][1]: " */"
exception[stack][1][context][2]: "function getFieldValidators(field_id, onKeyUpOnly)"
exception[stack][1][context][3]: "{"
exception[stack][1][context][4]: "    // look for field bound validator"
exception[stack][1][context][5]: "    var name = field_id.match(/[^-]+$/)[0];"
exception[stack][1][context][6]: "    if (typeof validators._field[name] != 'undefined') {"
exception[stack][1][context][7]: "        return [[validators._field[name], null]];"
exception[stack][1][context][8]: "    }"
exception[stack][1][context][9]: ""
exception[stack][1][context][10]: "    // look for registered validators"
exception[stack][1][filename]: "config.js"
exception[stack][2][func]: "validate_field"
exception[stack][2][line]: "418"
exception[stack][2][column]: "21"
exception[stack][2][context][0]: "{"
exception[stack][2][context][1]: "    var args, result;"
exception[stack][2][context][2]: "    var $field = $(field);"
exception[stack][2][context][3]: "    var field_id = $field.attr('id');"
exception[stack][2][context][4]: "    errors[field_id] = [];"
exception[stack][2][context][5]: "    var functions = getFieldValidators(field_id, isKeyUp);"
exception[stack][2][context][6]: "    for (var i = 0; i < functions.length; i++) {"
exception[stack][2][context][7]: "        if (typeof functions[i][1] !== 'undefined' && functions[i][1] !== n//..."
exception[stack][2][context][8]: "            args = functions[i][1].slice(0);"
exception[stack][2][context][9]: "        } else {"
exception[stack][2][context][10]: "            args = [];"
exception[stack][2][filename]: "config.js"
exception[stack][3][func]: "HTMLDocument.<anonymous>"
exception[stack][3][line]: "511"
exception[stack][3][column]: "37"
exception[stack][3][context][0]: "    var $check_page_refresh = $('#check_page_refresh');"
exception[stack][3][context][1]: "    if ($check_page_refresh.length === 0 || $check_page_refresh.val() == '1') {"
exception[stack][3][context][2]: "        // run all field validators"
exception[stack][3][context][3]: "        var errors = {};"
exception[stack][3][context][4]: "        for (var i = 0; i < $elements.length; i++) {"
exception[stack][3][context][5]: "            validate_field($elements[i], false, errors);"
exception[stack][3][context][6]: "        }"
exception[stack][3][context][7]: "        // run all fieldset validators"
exception[stack][3][context][8]: "        $('fieldset').each(function () {"
exception[stack][3][context][9]: "            validate_fieldset(this, false, errors);"
exception[stack][3][context][10]: "        });"
exception[stack][3][filename]: "config.js"
exception[stack][4][func]: "HTMLDocument.new_func"
exception[stack][4][line]: "279"
exception[stack][4][column]: "33"
exception[stack][4][context][0]: "     */"
exception[stack][4][context][1]: "    wrap_function: function (func) {"
exception[stack][4][context][2]: "        if (!func.wrapped) {"
exception[stack][4][context][3]: "            var new_func = function () {"
exception[stack][4][context][4]: "                try {"
exception[stack][4][context][5]: "                    return func.apply(this, arguments);"
exception[stack][4][context][6]: "                } catch (x) {"
exception[stack][4][context][7]: "                    TraceKit.report(x);"
exception[stack][4][context][8]: "                }"
exception[stack][4][context][9]: "            };"
exception[stack][4][context][10]: "            new_func.wrapped = true;"
exception[stack][4][filename]: "error_report.js"
exception[stack][5][func]: "HTMLDocument.m.event.dispatch"
exception[stack][5][line]: "3"
exception[stack][5][column]: "8436"
exception[stack][5][context][0]: "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//..."
exception[stack][5][context][1]: "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//..."
exception[stack][5][context][2]: "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//..."
exception[stack][5][context][3]: "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://..."
exception[stack][5][context][4]: ";"
exception[stack][5][context][5]: ""
exception[stack][5][context][6]: "function sprintf() {"
exception[stack][5][context][7]: "/*"
exception[stack][5][filename]: "jquery/jquery-1.11.1.min.js"
exception[stack][6][func]: "HTMLDocument.$event.dispatch"
exception[stack][6][line]: "374"
exception[stack][6][column]: "19"
exception[stack][6][context][0]: "$event.dispatch = function( event ){"
exception[stack][6][context][1]: "      if ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){"
exception[stack][6][context][2]: "              $.removeData( this, "suppress."+ event.type );"
exception[stack][6][context][3]: "              return;"
exception[stack][6][context][4]: "      }"
exception[stack][6][context][5]: "      return $dispatch.apply( this, arguments );"
exception[stack][6][context][6]: "};"
exception[stack][6][context][7]: ""
exception[stack][6][context][8]: "// event fix hooks for touch events..."
exception[stack][6][context][9]: "var touchHooks = "
exception[stack][6][context][10]: "$event.fixHooks.touchstart = "
exception[stack][6][filename]: "jquery/jquery.event.drag-2.2.js"
exception[stack][7][func]: "HTMLDocument.r.handle"
exception[stack][7][line]: "3"
exception[stack][7][column]: "5139"
exception[stack][7][context][0]: "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//..."
exception[stack][7][context][1]: "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//..."
exception[stack][7][context][2]: "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//..."
exception[stack][7][context][3]: "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://..."
exception[stack][7][context][4]: ";"
exception[stack][7][context][5]: ""
exception[stack][7][context][6]: "function sprintf() {"
exception[stack][7][context][7]: "/*"
exception[stack][7][filename]: "jquery/jquery-1.11.1.min.js"
exception[stack][8][func]: "Object.m.event.trigger"
exception[stack][8][line]: "3"
exception[stack][8][column]: "7537"
exception[stack][8][context][0]: "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//..."
exception[stack][8][context][1]: "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//..."
exception[stack][8][context][2]: "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//..."
exception[stack][8][context][3]: "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://..."
exception[stack][8][context][4]: ";"
exception[stack][8][context][5]: ""
exception[stack][8][context][6]: "function sprintf() {"
exception[stack][8][context][7]: "/*"
exception[stack][8][filename]: "jquery/jquery-1.11.1.min.js"
exception[stack][9][func]: "HTMLDocument.<anonymous>"
exception[stack][9][line]: "3"
exception[stack][9][column]: "15404"
exception[stack][9][context][0]: "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//..."
exception[stack][9][context][1]: "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//..."
exception[stack][9][context][2]: "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//..."
exception[stack][9][context][3]: "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://..."
exception[stack][9][context][4]: ";"
exception[stack][9][context][5]: ""
exception[stack][9][context][6]: "function sprintf() {"
exception[stack][9][context][7]: "/*"
exception[stack][9][filename]: "jquery/jquery-1.11.1.min.js"
exception[stack][10][func]: "Function.m.extend.each"
exception[stack][10][line]: "2"
exception[stack][10][column]: "2973"
exception[stack][10][context][0]: "/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/li//..."
exception[stack][10][context][1]: "!function(a,b){"object"==typeof module&&"object"==typeof module.exports?mod//..."
exception[stack][10][context][2]: "if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a//..."
exception[stack][10][context][3]: "},cur:function(){var a=Zb.propHooks[this.prop];return a&&a.get?a.get(this)://..."
exception[stack][10][context][4]: ";"
exception[stack][10][context][5]: ""
exception[stack][10][context][6]: "function sprintf() {"
exception[stack][10][filename]: "jquery/jquery-1.11.1.min.js"
exception[useragent]: "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.130 Safari/537.36"
exception[incomplete]: "false"
exception[partial]: "true"
exception[uri]: "index.php?target=sql.php"
script_name: "index.php"
microhistory[current_index]: "0"

Возникновение проблемы и способы устранения найти не удаётся.,нужна помощь..
Спасибо… Mihal/

#phpmyadmin

#phpmyadmin

Вопрос:

Я не могу получить доступ к области phpMyAdmin, потому что всякий раз, когда я нажимаю на вкладку базы данных, она выдает эту ошибку:

«Произошла фатальная ошибка Javascript. Хотите отправить отчет об ошибке?»

Я использую последнюю версию браузера Chrome, и у меня установлено несколько расширений, а именно: Adblock Plus, Ruler, PageXray и т. Д.

Ответ №1:

Я также столкнулся с точной проблемой на прошлой неделе, когда попытался создать новую базу данных на своем локальном хосте после установки расширения с именем PageXray. Поскольку у вас также установлено расширение PageXray, мое решение будет работать для вас. Есть два варианта решения этой проблемы:

  1. Удалите это расширение: PageXray, и ваш локальный хост phpMyAdmin будет работать нормально
  2. Если вы хотите продолжать использовать PageXray, прочитайте ниже, чтобы внести изменения в настройку расширения, чтобы обойти эту ошибку:
    • Щелкните правой кнопкой мыши значок PageXray, который будет размещен в адресной строке Chrome (как видно на скриншоте 1)
    • Наведите курсор на выпадающий список «Это может считывать и изменять данные сайта» и выберите опцию «При нажатии расширения»
    • Теперь вы сможете получить доступ к phpmyadmin и другим функциям без каких-либо проблем.

Скриншот 1: Скриншот: установите параметр расширения PageXray, чтобы удалить ошибку на панели phpmyadmin

Теперь вам нужно будет нажимать значок расширения PageXray каждый раз, когда вы хотите проверить, какой технологический стек используется на веб-сайте.

Пожалуйста, дайте мне знать в случае любого запроса, и я буду рад помочь больше. Приветствия!

Вопрос:

Я обновил phpMyAdmin до последней версии несколько дней назад после учебника с сайта (удаление и замена всего содержимого папки phpMyAdmin в Xampp и замена на последнюю версию и повторное размещение старого 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"
}
}

Я не могу вернуться к старой версии, так как я уже удалил ее, ошибка не вызвала ответа на щелчок мыши, и я застрял в ней.

Лучший ответ:

У меня также есть сообщение об ошибке (“Произошла фатальная ошибка JavaScript. Вы хотите отправить отчет об ошибке?”) В браузере Chrome. Я пытаюсь “localhost/phpmyadmin” в Internet Explorer, он работает хорошо. Поэтому я отключу расширение PageXray в браузере Chrome. Он хорошо работает с браузером Chrome. Удачи.

Ответ №1

Это проблема с последним обновлением Google Chrome. Эта проблема возникает в других jQuery и других кодах. Я предлагаю вам использовать Chromium.

Ответ №2

Эта проблема связана с браузером Chrome, когда установлены определенные расширения. Для моего случая это был PageXray. Отключено расширение PageXray, а phpmyadmin работает нормально и быстрее загружается.

Ответ №3

Я нашел решение этой проблемы для браузера Chrome. Я тоже столкнулся с этой проблемой на своем локальном хосте, когда попытался получить доступ к phpmyadmin, и у меня также было установлено расширение PageXray. Так что, если вы используете расширение PageXray для Chrome и хотите избавиться от этой ошибки, не удаляя расширение PageXray, сделайте следующее:

  • Щелкните правой кнопкой мыши значок PageXray, который будет расположен в адресной строке Chrome (как показано на скриншоте1).
  • Наведите указатель мыши на раскрывающийся список “Это может считывать и изменить данные сайта” и выберите параметр “При нажатии на расширение”.
  • Теперь вы сможете без проблем получить доступ к phpmyadmin и другим функциям.

Единственное отличие, которое он сделает, состоит в том, что теперь вам нужно будет щелкать значок расширения PageXray каждый раз, когда вы хотите проверить технологический стек, используемый на веб-сайте.

Снимок экрана 1: Screenshot: set PageXray extension option to remove the error on phpmyadmin panel

Я обновил phpMyAdmin до последней версии в ubuntu 18.04. После этого я часто получаю это сообщение об ошибке. Я переустановил его до версии 4.9.5 и снова из последнего источника. Тем не менее, я получаю эту ошибку каждый раз, когда вхожу в phpmyadmin. То же самое в chrome, firefox и в их режимах инкогнито. Ошибка не вызывает реакции на щелчки мышью, и я застрял в ней. Пожалуйста помоги.

{ "pma_version": "5.0.2", "browser_name": "CHROME", "browser_version": "84.0.4147.105", "user_os": "Linux", "server_software": "nginx/1.14.0", "user_agent_string": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36", "locale": "en", "configuration_storage": "disabled", "php_version": "7.2.33-1+ubuntu18.04.1+deb.sury.org+1", "script_name": "index.php", "exception_type": "js", "exception": { "mode": "stack", "name": "ReferenceError", "message": "isStorageSupported is not defined", "stack": [ { "func": "HTMLDocument.", "line": "1052", "column": "9", "context": [ " incInterval = window.setInterval(SetIdleTime, 1000);", " var sessionTimeout = Math.min(", " CommonParams.get('LoginCookieValidity'),", " CommonParams.get('session_gc_maxlifetime')", " );", " if (isStorageSupported('sessionStorage')) {", " window.sessionStorage.setItem('guid', guid());", " }", " var interval = (sessionTimeout - 5) * 1000;", " if (interval > Math.pow(2, 31) - 1) { // max value for setInterval(//...", " interval = Math.pow(2, 31) - 1;" ], "uri": "js/functions.js?v=5.0.2", "scriptname": "js/functions.js" }, { "func": "HTMLDocument.dispatch", "line": "2", "column": "42571", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "HTMLDocument.$event.dispatch", "line": "374", "column": "19", "context": [ "$event.dispatch = function( event ){", "tif ( $.data( this, "suppress."+ event.type ) - new Date().getTime() > 0 ){", "tt$.removeData( this, "suppress."+ event.type );", "ttreturn;", "t}", "treturn $dispatch.apply( this, arguments );", "};", "", "// event fix hooks for touch events...", "var touchHooks = ", "$event.fixHooks.touchstart = " ], "uri": "js/vendor/jquery/jquery.event.drag-2.2.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.event.drag-2.2.js" }, { "func": "HTMLDocument.v.handle", "line": "2", "column": "40572", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Object.trigger", "line": "2", "column": "70627", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "HTMLDocument.", "line": "2", "column": "71222", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Function.each", "line": "2", "column": "2777", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "jQuery.fn.init.each", "line": "2", "column": "1419", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "jQuery.fn.init.trigger", "line": "2", "column": "71198", "context": [ "/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/l//...", "!function(e,t){"use strict";"object"==typeof module&&"object"==typeof modul//...", "" ], "uri": "js/vendor/jquery/jquery.min.js?v=5.0.2", "scriptname": "js/vendor/jquery/jquery.min.js" }, { "func": "Object.fireOnload", "line": "119", "column": "21", "context": [ " *", " * <strong i="6">@return</strong> void", " */", " fireOnload: function (file) {", " var eventName = 'onload_' + AJAX.hash(file);", " $(document).trigger(eventName);", " if (this.debug) {", " // eslint-disable-next-line no-console", " console.log(", " // no need to translate", " 'Fired event ' + eventName + ' for file ' + file" ], "uri": "js/ajax.js?v=5.0.2", "scriptname": "js/ajax.js" } ], "uri": "index.php?" } 

Понравилась статья? Поделить с друзьями:
  • Произошла ошибка яндекс браузер не может продолжить работу
  • Произошла ошибка ютуб творческая студия
  • Произошла ошибка этот продукт уже скачивается обновить закрыть
  • Произошла ошибка чтения диска нажмите ctrl alt del
  • Произошла ошибка чтения диска как исправить