MX6.com User Control Panel


Go Back   MX6.com > Site Questions and Comments

       
Reply
 
LinkBack Thread Tools
Old 4-10-08, 8:01   #16 (permalink)
Another DSM owning prick!
  Total: 348 Power: 5
 
Mazda4ever's Avatar
 
Join Date: May 2004
Location: Woodstock, IL, USA
Age: 21
iTrader: (0)
Quote:
Originally Posted by chrmar View Post
...that whenever I open a thread or a reply page or something, the screen flashes white every time it loads? I'm running Firefox, if that helps.
Probably because you touch yourself at night..



Mine does that too inbetween pages.. big deal?

2004 Volcanic Red Mazda6 MTX Fully loaded!: MonsterKnobs.com Shift knob || SRT4 wannabe exhaust || TWM STS || CP-E Rear Engine mount || E-Gay CAI || Silviaparts.com Eyelids || 2-tone Sport grill || 18" Rota P1 Hyper Black rims
Mazda4ever is offline   Reply With Quote
Old 4-10-08, 10:22   #17 (permalink)
  Total: 60 Power: 3
 
Join Date: Dec 2005
Location: Newport News, VA, USA
iTrader: (0)


It's happening to me too.

OSX 10.5.2 and Firefox 2.0.0.13

'93 LS Orange Metallic
ZE Intake | CAI | Black Interior Conversion | PhenoKit | PaceSetter Headers | Shaved | Battery Relocation | KING6 B-Pillar Bar | KING6 Harness Bar | KING6 Front Strut Bar | Weight Reduction | Custom Paint | Full Shogun, Spoiler Delete | More to come...
RangerRick is offline   Reply With Quote
Old 4-10-08, 11:35   #18 (permalink)
  Total: 149 Power: 3
 
Join Date: Mar 2006
Location: , Les Maritimes eh?
Age: 22
iTrader: (0)
Quote:
Originally Posted by alwaysbrokenMX6 View Post
IE7...how do you do the ninja text anyway?

Like this

You suck at life and you suck period cause you cant write ninja text lmao jk jk!!!!!!!

THE FEEN

Quote:
Originally Posted by Mx6girl93 View Post
*Mx6girl93 accepts Feen's tapered ring* haha
Mazda SpeedFeen is offline   Reply With Quote
Old 4-14-08, 22:54   #19 (permalink)
  Total: 61 Power: 3
 
Join Date: Apr 2006
Location: Acworth, GA, USA
Age: 21
iTrader: (1)
anyone figure out why this happens yet?

If you want something you have never had, you have to do things you have never done - Paul Pollard
Looby is offline   Reply With Quote
Old 4-15-08, 0:16   #20 (permalink)
MX6.com Supporter - Click Here for Information
  Total: 719 Power: 5
 
David's Avatar
 
Join Date: Aug 2001
Location: Gold Bar, WA, USA
Age: 30
iTrader: (1)
Here's the long answer:

How To: Stop Firefox Dual Pageloads
« on: March 15, 2008, 04:04:48 PM »

Mozilla Firefox (Also Gecko Web Engine, powers multiple browsers), tends to pull pages in pieces from the server while error-checking code, and if it discovers a error, it may decide to download the entire page, render the error into the most readable format then re-download the entire page again, before displaying. This can cause a few issues.

1. PHP statistics counters will show 2 separate page loads for each page load.

2. When transferring page to page, if the error is present on all pages, the layout will flash to default white screen between each page load. Its very annoying for admins like myself with a dark background.


I discovered this issue with a some VERY small errors in my CSS Style Sheet. It caused the page to load twice every time. It would see the error half way processing, then re-render the page itself, presumably fixing the error, then re-download, and display. Played circles with my statistics, and white flashes between page changes.

Something good to note: Firefox by default, will load a page twice every time, if it is the first cache of the page. So, if you clear your browser cache, visit the site again, it will load twice that once until the cache is cleared, or overwritten.

Try these:

1. Verify all HTML Color Codes are prepended by # - E.G. "#ffffff" not "ffffff".
2. Verify all CSS Sheet parameters end with ; (Even though it may display properly. It may cause dual page loads.)
3. Verify any font parameters are specifically correct. E.G
Correct Font Code

Code:
.smalltext {color:#000000; font: bold 1px Verdana;}


Is Not The Same As (No Space Before "Bold"):

Code:
.smalltext {color:#000000; font:bold 1px Verdana;}


4. One very important issue that causes this. Make sure all CSS Background Image parameters are correct, or not present. Just deleting the image path, without removing the parameter, will cause the error in Firefox. I used to delete the image path, and leave the code for later use. But found this error was caused by that.

E.G. (This image path is non-existant, thus Firefox will read it as a error.)

Code:
body {background-image:url("");}


An efficient way to error-check all the code, is to use the Firefox built in Error Console, OR, remove pieces of the code in order, until the issue does not present itself, then find the error within the code that causes the dual loading.
________________________________________________________

Found this information which should help the problem:

How To: Stop Firefox Dual Pageloads
« on: March 15, 2008, 04:04:48 PM »

Mozilla Firefox (Also Gecko Web Engine, powers multiple browsers), tends to pull pages in pieces from the server while error-checking code, and if it discovers a error, it may decide to download the entire page, render the error into the most readable format then re-download the entire page again, before displaying. This can cause a few issues.

1. PHP statistics counters will show 2 separate page loads for each page load.

2. When transferring page to page, if the error is present on all pages, the layout will flash to default white screen between each page load. Its very annoying for admins like myself with a dark background.


I discovered this issue with a some VERY small errors in my CSS Style Sheet. It caused the page to load twice every time. It would see the error half way processing, then re-render the page itself, presumably fixing the error, then re-download, and display. Played circles with my statistics, and white flashes between page changes.

Something good to note: Firefox by default, will load a page twice every time, if it is the first cache of the page. So, if you clear your browser cache, visit the site again, it will load twice that once until the cache is cleared, or overwritten.

Try these:

1. Verify all HTML Color Codes are prepended by # - E.G. "#ffffff" not "ffffff".
2. Verify all CSS Sheet parameters end with ; (Even though it may display properly. It may cause dual page loads.)
3. Verify any font parameters are specifically correct. E.G
Correct Font Code

Code:
.smalltext {color:#000000; font: bold 1px Verdana;}


Is Not The Same As (No Space Before "Bold"):

Code:
.smalltext {color:#000000; font:bold 1px Verdana;}


4. One very important issue that causes this. Make sure all CSS Background Image parameters are correct, or not present. Just deleting the image path, without removing the parameter, will cause the error in Firefox. I used to delete the image path, and leave the code for later use. But found this error was caused by that.

E.G. (This image path is non-existant, thus Firefox will read it as a error.)

Code:
body {background-image:url("");}


An efficient way to error-check all the code, is to use the Firefox built in Error Console, OR, remove pieces of the code in order, until the issue does not present itself, then find the error within the code that causes the dual loading.

____________________________________________________________

I have made this information available to the admins, but can give you no idea as to when the problem will be fixed.

My Garage*KLZE*Spec Stage 2*9lb Fidanza Flywheel*Borla CatBack*Hot Shot Headers*RR-Racing Inserts*Ksports*22mm Addco RSB*B&M STS*Outlaw Spacers*Stainless Brake/clutch lines*VOA BBK Front/Rear*Black Altezza Tails*JDM Door Sills*Jspec Headlights*Molded Shogun Body Kit/scoop*Shaved*Front/Rear Camera*Custom Interior*Painted Engine bay*Dynamat Trunk/Doors*Aluminium Gauge Rings*Interior/Exterior LEDs*
David is offline   Reply With Quote
Reply



Thread Tools

Posting Permissions
New Threads
Post Replies
Post Attachments
Edit Your Posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 15:17.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0
© Copyright 2000-2006, MX6.com
MX6.com is in no way affiliated to Mazda Motor Corp.
All views expressed in this site are the personal opinion
of the author and not necessarily the owners of MX6.com.
MX6.com is sponsored, in part, by NuDatum Software
  • AutoForums.com
  • Truck
  • European
  • Import
  • Domestic
  • Manufacturer

AutoForums.com is the premier network of enthusiast-owned enthusiast-operated automotive communities.
We operate more than 100 automotive forums where our users consult peers for shopping information and advice, and share experiences and opinions as a community.

Visit AutoForums.com today.

For advertising information, please visit our AutoForums.com website and Contact Us, or send an email message to sales@autoforums.com.