What can cause a persistent “Reload the page to get source for” error in firebug?

匆匆过客 提交于 2019-11-29 02:58:20

With firebug icon, you'll see a dropdown arrow. Click that arrow to open up the drop down menu.

Click Clear Activation List.

Refresh the page now.

Now under script tab you'd see the Reload link. Click that to reload the page again. This time when the page reloads, you'd see the script.

I have tried all the answers described here, but for me the issue was something else.

I got the same message "Reload to see all sources" in firebug, and the Chrome debugger didn't display anything in the sources tab as well. I saw that the debugger was working on other pages for my website, so the problem was the page itself and after hours of sequentially deleting everything I had in the page, all that remained was an 'img' tag.

    <img src="#" />

It seems the src attribute should not contain "#", perhaps someone with a deeper understanding of HTML could explain this, but removing it has solved the problem for me.

Hopefully this will be of use to someone else as well.

Joshua Jarman

I had the same issue, but had simply overlooked one obvious thing.

I had the noScript Firefox extension installed and hadn't enabled scripts from all the sources on the page, and it was blocking and causing that exact message persistently.

This might help anyone who has encountered this message too.

I had this message too and could not get what the problem was. But then I had found it: My problem was that I hade some urls in an jQuery Ajax call that were just the ones from the hosting provider, not the actual domain name. With those urls all was fine during development. Then, after launching, the site was accessed by the new domain name. The mixture of the urls was the problem.

Strange was also that the GET url that was called via Ajax has worked in the regular browser url bar. Only in JS it did not work. Seems that I still have a knowledge deficit...

I have this problem once.
the solve for me is the host name

page url: http://localhost
request url: http://192.168.0.1

You have 2 possibilities:

It may also be due to "302 Moved Temporarily" error. You can check it in firebug's Net tab.

One other potential cause of the “Reload the page to get source for” message is the server returning an empty response. Check the response headers for Content-Length:0. If this isn't what you anticipated for the response, it is probably time to do some debugging on the server side of things. Note that empty responses do not always cause the "Reload the page to get source for" message -- however, I encountered at least one situation where this was the underlying problem.

For the record, this can also happen if the certificate is jacked for https://www.xyz.com. You need to visit that site first and add a security exception.

I got this message displayed while opening a page that had a content-encoding error. The page returned gzip compressed data, but a HTTP module corrupted the gzip content.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!