Lars-Christian
02-03-2005, 02:30 AM
I checked my site in IE today, and for some reason it is giving me an error message, as stated in the title:
www.zeldauniverse.net
Here's the top part of my source code:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// needed to seperate the ISO number from the language file constant _ISO
$iso = split( '=', _ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
if ( $my->id ) {
initEditor();
}
?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<link href="<?php echo $mosConfig_live_site;?>/templates/zuv1/css/stylesheet.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://www.zeldauniverse.net/favicon.ico" type="image/x-icon" />
</head>
<body>
<?php
@$collspan_offset = ( mosCountModules( 'right' ) + mosCountModules( 'user2' ) and !$_REQUEST['task'] == 'edit' ) ? 2 : 1;
?>
<div align="center">
<table width="775" border="0" cellspacing="0" cellpadding="0">
I'm running Mambo, so those php things are for that. Any ideas what I can do to recitfy the error? I am guessing it has to do with the PHP part, since w3 validator doesn't point out anything there.
www.zeldauniverse.net
Here's the top part of my source code:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
// needed to seperate the ISO number from the language file constant _ISO
$iso = split( '=', _ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
if ( $my->id ) {
initEditor();
}
?>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<link href="<?php echo $mosConfig_live_site;?>/templates/zuv1/css/stylesheet.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="http://www.zeldauniverse.net/favicon.ico" type="image/x-icon" />
</head>
<body>
<?php
@$collspan_offset = ( mosCountModules( 'right' ) + mosCountModules( 'user2' ) and !$_REQUEST['task'] == 'edit' ) ? 2 : 1;
?>
<div align="center">
<table width="775" border="0" cellspacing="0" cellpadding="0">
I'm running Mambo, so those php things are for that. Any ideas what I can do to recitfy the error? I am guessing it has to do with the PHP part, since w3 validator doesn't point out anything there.
