A site I am working on that is built using PHP is sometimes showing a completely blank page. There are no error messages on the client or on the server. The same page may display sometimes but not others. All pages are working fine in IE7, Firefox 3, Safari and Opera. All pages are XHTML with this meta element:
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
Bu PHP kodu ekleyerek sorunu çözdünüz Bu appears ki:
header('Content-type: text/html; charset=utf-8');
Ben bu sorun XHTML, kodlama gzip sıkıştırma, ya da önbellekli neden olabilir, ama kimse bu tahminler yedeklemek mümkün olmuştur okudum.
Sorun aralıklı olarak benim çözüm aslında sorunu çözmüştür emin değilim.
My question is, are there reproducible ways of having IE6 show a blank page when other browsers display content? If so, what causes it and what solves it?