There's some chain reaction going on here. The html, body CSS rule inside HTML contains an empty url() value for the background-image property, which causes a second request to http://bsbasa.org/NewWebEntry/MeetEntry.php?Meet=AG14 (visible inside the Net panel). The response for the second request is empty, because it's requested as image (due to that background-image property). Firebug has a bug <http://code.google.com/p/fbug/issues/detail?id=5254>causing the initial contents of http://bsbasa.org/NewWebEntry/MeetEntry.php?Meet=AG14 to be overwritten by the contents of the second request, which is empty. This causes the error message "Reload the page to get source for: http://bsbasa.org/NewWebEntry/MeetEntry.php?Meet=AG14<http://www.google.com/url?q=http%3A%2F%2Fbsbasa.org%2FNewWebEntry%2FMeetEntry.php%3FMeet%3DAG14&sa=D&sntz=1&usg=AFQjCNH6uE1dJu78skZNvydCbJzY10FE1w>". This bug will be fixed in the next major version of Firebug.
Basically all you need to do is to add an image URL to the background-imageproperty or remove it. Sebastian On Wednesday, January 22, 2014 2:09:20 PM UTC+1, Jonathan Mills wrote: > > Hi > > I am having problems with a Web application I'm working on. It's a fairly > large app, but nothing > radical. It involved a PHP script generating a HTML page, which loads > other javascript > files for execution. > > However, when I start Firebug (1.12.6), I don't see the scripts/code on > the initial page. The > javascript loaded via <script ..> is there fine. > > Thinking it was the fact that I was passing parameters, I wrote a test > script that worked > fine, so I am trying to find out why I am not seeing the source code. > > There don't appear to be any error messages, save the > > 1 Reload the page to get source for: > http://bsbasa.org/NewWebEntry/MeetEntry.php?Meet=AG14 > > and when you refresh the page, you see what appears to be the source code > in the window, briefly, before it is replaced by this message. > > Anything I can turn on/monitor/etc so I can try and get to see my source > code - I'm blind without my firebug! > > > Jonathan > -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/63e68bf6-de56-488c-88ab-e5a75c916f30%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
