Magento 2.1 js errors break backend - wrong paths in magento-ui? The Next CEO of Stack OverflowMagento2 getViewFileUrl on backend and frontendMagento 2 Admin Pointing to Wrong LocaleMagento 2 Default JS doesn't load properMagento 2 generating invalid JS filesMagento 2: What this bit of code does?Magento 2 Product checkout isnt loadOverriding Magento 2 static adminhtml backend isn't workingLocation of confirm.jsInstalled magento 2.1 on windows but it is is giving many require js errorsI am getting jquery error while adding custom field in payment method in magento 2?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Grabbing quick drinks
Is there a difference between "Fahrstuhl" and "Aufzug"
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
Should I tutor a student who I know has cheated on their homework?
What is the result of assigning to std::vector<T>::begin()?
If a black hole is created from light, can this black hole then move at speed of light?
What is the purpose of the Evocation wizard's Potent Cantrip feature?
Preparing Indesign booklet with .psd graphics for print
Why does standard notation not preserve intervals (visually)
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
Why do remote companies require working in the US?
Why do professional authors make "consistency" mistakes? And how to avoid them?
Is micro rebar a better way to reinforce concrete than rebar?
Why does the UK parliament need a vote on the political declaration?
Is "for causing autism in X" grammatical?
What happens if you roll doubles 3 times then land on "Go to jail?"
Elegant way to replace substring in a regex with optional groups in Python?
How do I make a variable always equal to the result of some calculations?
How long to clear the 'suck zone' of a turbofan after start is initiated?
Make solar eclipses exceedingly rare, but still have new moons
Would a completely good Muggle be able to use a wand?
Why do airplanes bank sharply to the right after air-to-air refueling?
Real integral using residue theorem - why doesn't this work?
Magento 2.1 js errors break backend - wrong paths in magento-ui?
The Next CEO of Stack OverflowMagento2 getViewFileUrl on backend and frontendMagento 2 Admin Pointing to Wrong LocaleMagento 2 Default JS doesn't load properMagento 2 generating invalid JS filesMagento 2: What this bit of code does?Magento 2 Product checkout isnt loadOverriding Magento 2 static adminhtml backend isn't workingLocation of confirm.jsInstalled magento 2.1 on windows but it is is giving many require js errorsI am getting jquery error while adding custom field in payment method in magento 2?
// EDIT:
This error was caused by the Firebug extension in Firefox.
I would recommend anyone that uses this ext to disable and remove it
immediately!
From a fresh composer setup, I receive a lot of js errors in both the backend and frontend. In the backend this actually breaks the navigation, does not load the products or order grid, so pretty much completely breaks the backend.
I tried 2.1.0 and 2.1.1, both seem to have the exact same issues. 2.0.7 did not have these issues. No extra modules installed, just a clean, fresh composer setup. I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct, but the missing files are never generated. The browser cache was flushed and pages force reloaded:
BE errors:
404 Not Found:
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/dom-observer.js
and sometimes:
/pub/static/adminhtml/Magento/backend/template/renderer.js
JS:
TypeError: ko is undefined (knockout-es5.js (line 428, col 5))
ko.track = track;
TypeError: utils.extend is not a function (class.js (line 129, col 30))
child.defaults = utils.extend(, parent.defaults || );
These .js files are never even created in the above path in the magento-ui.
instead I think the files now reside in js/lib/view/utils/
instead of js/lib/registry/
. So the error may be in the Magento magento/module-ui version 100.1.0.
FrontEnd:
404 errors:
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/dom-observer.js
However, the FE errors dissapear after a few reloads, sometimes at least?
other error is the same as in the BE:
TypeError: utils.extend is not a function ( class.js (line 129, col 30) )
child.defaults = utils.extend(, parent.defaults || );
I have not been able to find any bug reports on this and no fixes.
Test System:
- Docker container Debian 8
- Server version: Apache/2.4.10 (Debian)
- PHP 5.6.24
- MySQL Community Server 5.6.32
magento2
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
// EDIT:
This error was caused by the Firebug extension in Firefox.
I would recommend anyone that uses this ext to disable and remove it
immediately!
From a fresh composer setup, I receive a lot of js errors in both the backend and frontend. In the backend this actually breaks the navigation, does not load the products or order grid, so pretty much completely breaks the backend.
I tried 2.1.0 and 2.1.1, both seem to have the exact same issues. 2.0.7 did not have these issues. No extra modules installed, just a clean, fresh composer setup. I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct, but the missing files are never generated. The browser cache was flushed and pages force reloaded:
BE errors:
404 Not Found:
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/dom-observer.js
and sometimes:
/pub/static/adminhtml/Magento/backend/template/renderer.js
JS:
TypeError: ko is undefined (knockout-es5.js (line 428, col 5))
ko.track = track;
TypeError: utils.extend is not a function (class.js (line 129, col 30))
child.defaults = utils.extend(, parent.defaults || );
These .js files are never even created in the above path in the magento-ui.
instead I think the files now reside in js/lib/view/utils/
instead of js/lib/registry/
. So the error may be in the Magento magento/module-ui version 100.1.0.
FrontEnd:
404 errors:
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/dom-observer.js
However, the FE errors dissapear after a few reloads, sometimes at least?
other error is the same as in the BE:
TypeError: utils.extend is not a function ( class.js (line 129, col 30) )
child.defaults = utils.extend(, parent.defaults || );
I have not been able to find any bug reports on this and no fixes.
Test System:
- Docker container Debian 8
- Server version: Apache/2.4.10 (Debian)
- PHP 5.6.24
- MySQL Community Server 5.6.32
magento2
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36
add a comment |
// EDIT:
This error was caused by the Firebug extension in Firefox.
I would recommend anyone that uses this ext to disable and remove it
immediately!
From a fresh composer setup, I receive a lot of js errors in both the backend and frontend. In the backend this actually breaks the navigation, does not load the products or order grid, so pretty much completely breaks the backend.
I tried 2.1.0 and 2.1.1, both seem to have the exact same issues. 2.0.7 did not have these issues. No extra modules installed, just a clean, fresh composer setup. I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct, but the missing files are never generated. The browser cache was flushed and pages force reloaded:
BE errors:
404 Not Found:
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/dom-observer.js
and sometimes:
/pub/static/adminhtml/Magento/backend/template/renderer.js
JS:
TypeError: ko is undefined (knockout-es5.js (line 428, col 5))
ko.track = track;
TypeError: utils.extend is not a function (class.js (line 129, col 30))
child.defaults = utils.extend(, parent.defaults || );
These .js files are never even created in the above path in the magento-ui.
instead I think the files now reside in js/lib/view/utils/
instead of js/lib/registry/
. So the error may be in the Magento magento/module-ui version 100.1.0.
FrontEnd:
404 errors:
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/dom-observer.js
However, the FE errors dissapear after a few reloads, sometimes at least?
other error is the same as in the BE:
TypeError: utils.extend is not a function ( class.js (line 129, col 30) )
child.defaults = utils.extend(, parent.defaults || );
I have not been able to find any bug reports on this and no fixes.
Test System:
- Docker container Debian 8
- Server version: Apache/2.4.10 (Debian)
- PHP 5.6.24
- MySQL Community Server 5.6.32
magento2
// EDIT:
This error was caused by the Firebug extension in Firefox.
I would recommend anyone that uses this ext to disable and remove it
immediately!
From a fresh composer setup, I receive a lot of js errors in both the backend and frontend. In the backend this actually breaks the navigation, does not load the products or order grid, so pretty much completely breaks the backend.
I tried 2.1.0 and 2.1.1, both seem to have the exact same issues. 2.0.7 did not have these issues. No extra modules installed, just a clean, fresh composer setup. I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct, but the missing files are never generated. The browser cache was flushed and pages force reloaded:
BE errors:
404 Not Found:
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/adminhtml/Magento/backend/en_US/Magento_Ui/js/lib/registry/dom-observer.js
and sometimes:
/pub/static/adminhtml/Magento/backend/template/renderer.js
JS:
TypeError: ko is undefined (knockout-es5.js (line 428, col 5))
ko.track = track;
TypeError: utils.extend is not a function (class.js (line 129, col 30))
child.defaults = utils.extend(, parent.defaults || );
These .js files are never even created in the above path in the magento-ui.
instead I think the files now reside in js/lib/view/utils/
instead of js/lib/registry/
. So the error may be in the Magento magento/module-ui version 100.1.0.
FrontEnd:
404 errors:
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/bindings.js
/pub/static/frontend/Magento/luma/en_US/Magento_Ui/js/lib/registry/dom-observer.js
However, the FE errors dissapear after a few reloads, sometimes at least?
other error is the same as in the BE:
TypeError: utils.extend is not a function ( class.js (line 129, col 30) )
child.defaults = utils.extend(, parent.defaults || );
I have not been able to find any bug reports on this and no fixes.
Test System:
- Docker container Debian 8
- Server version: Apache/2.4.10 (Debian)
- PHP 5.6.24
- MySQL Community Server 5.6.32
magento2
magento2
edited Nov 3 '17 at 6:30
Teja Bhagavan Kollepara
3,01241949
3,01241949
asked Sep 6 '16 at 9:27
tecjamtecjam
2,75721540
2,75721540
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36
add a comment |
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36
add a comment |
1 Answer
1
active
oldest
votes
The issue is a problem with the Firefox Firebug add-on.
If you still use it, you should disable it and use the Firefox devtools.
Firebug has officially been deprecated.
Please see: https://getfirebug.com/
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f134908%2fmagento-2-1-js-errors-break-backend-wrong-paths-in-magento-ui%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The issue is a problem with the Firefox Firebug add-on.
If you still use it, you should disable it and use the Firefox devtools.
Firebug has officially been deprecated.
Please see: https://getfirebug.com/
add a comment |
The issue is a problem with the Firefox Firebug add-on.
If you still use it, you should disable it and use the Firefox devtools.
Firebug has officially been deprecated.
Please see: https://getfirebug.com/
add a comment |
The issue is a problem with the Firefox Firebug add-on.
If you still use it, you should disable it and use the Firefox devtools.
Firebug has officially been deprecated.
Please see: https://getfirebug.com/
The issue is a problem with the Firefox Firebug add-on.
If you still use it, you should disable it and use the Firefox devtools.
Firebug has officially been deprecated.
Please see: https://getfirebug.com/
answered Nov 21 '17 at 12:51
tecjamtecjam
2,75721540
2,75721540
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f134908%2fmagento-2-1-js-errors-break-backend-wrong-paths-in-magento-ui%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try to deploy the static content?
– Muk
Sep 6 '16 at 9:47
Yes, as mentioned above: " I tried deleting cache dirs and re-deploying the static-content, making sure the user and file permissions are correct"
– tecjam
Sep 6 '16 at 9:52
Please try once to redepoly static content after removing everything, except .htaccess file from pub/static folder.
– Muk
Sep 6 '16 at 10:01
Did that, checked the file owner (all still the same as the rest of the files) and the missing files are not generated in the folder. Backend grids still do not load. Version 2.0.7 has no such issues.
– tecjam
Sep 6 '16 at 12:13
@tecjam put your comment as an answer this is the firebug issue if you are running firefox version > 50 then you have to disable the firebug same thing causing me issue
– Murtuza Zabuawala
Nov 3 '17 at 5:36