that’s a tough one MiMango … some questions;
1. does this only happen in firefox? what other browser(s) did you test in?
2. don’t know if you’re familiar with firefox’s developer tools and more specifically the network view in there. if you open that and you succeed in triggering the white page, what would be interesting is the http response code (most common are 200, 304, 404, 500, 502, …) for the page/ html and -if any- for the autoptimized css- and js-files.
3. if you have access to the server logs, it would be interesting to check if anything pops up in the webserver- and php-errorlogs.
frank
1. Seems like it’s just Mozilla. I couldn’t replicate the issue in Chrome, IE, or Edge.
2. I downloaded the Mozilla Developer Browser and replicated the issue.
>> Under the “Console” tab : The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol.
>> General Error (Red bar above the tabs): Stylesheet could not be loaded.
>> Network tab: https://gyazo.com/e89db7d889c5577f8f96157303902586
>> It also looks like one stylesheet was included: https://gyazo.com/802baf3ee9c4bc71233eccecbe871bed
Looks like it almost sort of gave up loading after it ran into an issue..?
Hope this helps!~
the network tab seems to indicate that server sent an normal HTTP 200 response for the HTML, but that it was empty (which is obviously not OK) and it’s logical that at that point no other resources (images, css, js, …) are loaded.
Now blank pages can be caused by AO (cfr. FAQ), but that wouldn’t be browser⁻specific and one would get a HTTP 50x (which is an internal server error) response, not a 200. Based on this info I can only assume the problem not to be autoptimize’s, but I have no idea where/ what to look for instead I’m afraid.
The stylesheet from the 2nd screenshot is very likely one that originates from youtube.com, so it’s normal AO would not aggregate that.
frank