Forum Moderators: coopster
I have a problem with a script that I am running on a particular page of my site, the page loads fine, all data is correct and the form submits as requested. But, the status bar never seems to reach the completly loaded data stage. The only thing is I am retrieving some data from a table using mysql_fetch_object() and not using a loop, as there is only 1 row ever to be returned. The only reason I noticed this is because the status bar seems to always say transferring data from server.
Any suggestions for this happening are welcome - as I said though, the site functions - if the user has their status bar off, they would never know!
Cheers,
MRb
2. Are you using Flash anywhere? If the page cannot find the SWF, or finds the SWF and the Flash is waiting on something, it will spin forever . . .
3. Add simple echo's throughout.
echo "benchmark 1 ";
echo "benchmark 2 ";
echo "end of script ";
?>
If you see "end of script, it's not your program.
4. Included external libraries, like Analytics or other widgets?
5. Jquery/Ajax improperly configured so it's always waiting on something that never comes?
When all else fails, make a copy, break it down to it's smallest parts, start re-adding elements until you find it.
I'll try it now and post the results later on today.
Thanks again.
MRb