also @ TechSpot: Apple's iOS 7 to be "black, white and flat all over"

Page loading progress bar

Discussion in 'Site Feedback and Suggestions' started by crunchie, Nov 25, 2010.

Post New Reply
  1. crunchie Malware Helper Posts: 761

    keeps on popping up in Opera after the page has loaded. It is as if the page is trying to refresh.
    Only comes up for two or three seconds.
    Does not happen on any other site I visit.
    I have a custom Hosts file, so it is possibly blocking something.
  2. Julio Franco TechSpot Editor Posts: 6,055   +121

    Site wide or forums only?
  3. crunchie Malware Helper Posts: 761

    Site wide.
  4. crunchie Malware Helper Posts: 761

    Still occurring.
  5. mario TechSpot Developer Posts: 384   +6

    Hello,

    Could you tell us which versions of Opera is this occurring on?
  6. crunchie Malware Helper Posts: 761

    It happens on 10.10 on one PC and also on 10.63 on another.
     
  7. mario TechSpot Developer Posts: 384   +6

    It is a javascript we use for tracking and analytics, and Opera seems to show a loading bar everytime there's a request.
  8. crunchie Malware Helper Posts: 761

    Doesn't happen anywhere else that I have noticed.
  9. Julio Franco TechSpot Editor Posts: 6,055   +121

    I will file a bug complaint with chartbeat (the tracking service that we use), no guarantees on getting them to fix this soon though. I will also try moving the code around later today to see if that helps to some degree.
  10. jobeard TS Ambassador Posts: 12,236   +123

    Opera uses a different approach to showing web responses - - it waits for all results to arrive.

    As most connections are made with keep-alive active, the connections are not terminated immediately by are kept to do more work for the next request (making the browser & server more efficient).

    However, it also creates an issue were ALL of reply#1 may not be generate (eg: response length off-by-1) and progress is left looking for still more :sigh:

    It's an easy mistake and drives programmers crazy to find it :)