In page.tpl.php:

<!--[if lte IE 6]>
<?php if (theme_get_setting('menutype')== '1') { ?>
<script type="text/javascript" src="/<?php print $directory; ?>/js/suckerfish.js"></script>
<?php } ?>
<link type="text/css" rel="stylesheet" media="all" href="/<?php print $directory; ?>/css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="/<?php print $directory; ?>/css/ie7.css" />
<![endif]-->

should be:

<!--[if lte IE 6]>
<?php if (theme_get_setting('menutype')== '1') { ?>
<script type="text/javascript" src="<?php print $base_path . $directory; ?>/js/suckerfish.js"></script>
<?php } ?>
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . $directory; ?>/css/ie6.css" />
<![endif]-->
<!--[if IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . $directory; ?>/css/ie7.css" />
<![endif]-->

to work with Drupal installed, for example in "/drupal/" subdirectory.

The same issue applies to maintenance-page.tpl.php.

Comments

florian’s picture

Status: Needs review » Fixed

Fixed in releases 6.x-1.10 and 6.x-2.3

florian’s picture

Status: Fixed » Closed (fixed)
megatech’s picture

Version: 6.x-1.7 » 6.x-1.10

This still seems to be a problem with ie 6 and 7 running zeropoint 6.x-1.10. i show different results depending on how page is called..

IE 6
http://server.com/drupal = display issues. images called locally are not displayed

http://drupal.server.com = images called locally are displayed.

IE 6 dosen't render the page correctly no matter how it's called. alignments are off and the rotate.php displays the image with a grey background.

IE 7
http://server.com/drupal = display issues. images called locally are not displayed. images called with rotate.php are not displayed

http://drupal.server.com everything is ok

Safari, Firefox and IE 8 work great!

any idea's whats going on?

megatech’s picture

Status: Closed (fixed) » Needs work
florian’s picture

Status: Needs work » Closed (fixed)

You should upgrade to the last version or modify the code as it was proposed by Albert here.