Hi
I have made a site and I have tested it on the ie 7 and ie 6 . it seems good and it shows my web site good and without any praoblem ,

i have got a very bad scene in ie 6 and ie7 . I exactly uploaded the pages that I have used in localhost (xaml) but it was without any problem but after uploading it to the local , it has god too many problems

thanks

Dani AI

Generated

The problem describes — pages that work on a local server but break after upload in IE6/IE7 — often comes down to differences between the development environment and the live host. and correctly flagged resource and path issues; the checklist below adds server- and IE-specific items that are frequently missed and will help narrow the cause without repeating those earlier suggestions.

  • Confirm the document triggers standards mode in IE. A missing or incorrect DOCTYPE can push IE6/7 into quirks mode and change layout drastically.
  • Check server response headers for CSS/JS/images. Old IEs can ignore files served with the wrong MIME type or with broken compression. Use a header check to verify Content-Type and Content-Encoding.
  • Remember filesystem differences: many local dev setups on Windows are case-insensitive; most hosts are case-sensitive. Filename case mismatches show up only after upload.
  • Watch for mixed-content (HTTP assets on an HTTPS page) and server-side redirects or rewrite rules that alter resource URLs.
  • Inspect server error logs and file permissions; a 403 or 500 can leave parts of a page unstyled without an obvious 404 in the browser.
  • Account for IE-only quirks: PNG alpha handling in IE6, conditional comments, and X-UA-Compatible behavior can all produce divergent results from modern browsers.

Quick checks that often find the issue: request a problematic asset directly in a browser, or run a header probe such as

curl -I http://yourdomain/path/to/file.css

Collect the page DOCTYPE, the exact asset HTTP headers, and any server log entries before making changes; these facts pinpoint the difference between local and live environments without guessing.

Recommended Answers

All 2 Replies

either it didn't copy over correctly or you forgot to upload additional files it requires, such as a style sheet.

Hi
I have made a site and I have tested it on the ie 7 and ie 6 . it seems good and it shows my web site good and without any praoblem ,

i have got a very bad scene in ie 6 and ie7 . I exactly uploaded the pages that I have used in localhost (xaml) but it was without any problem but after uploading it to the local , it has god too many problems

thanks

May be you may have included hard coded reference for external css files & images; so try to use relative paths if so..
This may solve your issue..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.