Welcome Guest, Not a member yet? Register   Sign In
CI different response in IE and FF
#1

[eluser]Unknown[/eluser]
I do not know if this the right place I should ask this questions.

I am learning CI by trying to build support application here
http://202.137.6.98/support3/

I use DOJO as Javascript framework

I test the app in IE 7 and FireFox, it works just fine.

But When I try to load the URL to IE 6 and older,....

it returns error / The page cannot be displayed
Pop Up message :
"Internet Explorer can not open The Internet site at http://202.137.6.98/support3/
Operation aborted "


I thought it was coming from DOJO, .. but I am not sure.

May be it was coming from my htmlheader.php (in views folder)

filename /application/views/htmlheader.php
Code:
<html>
<head>

<title>Welcome to Globe Media Group Support System</title>
<base href="<?php echo $base; ?>">


<!-- -->


        <style type="text/css">
                @import "<?php echo $dojofolder; ?>dojo/resources/dojo.css";
                @import "<?php echo $dojofolder; ?>dijit/themes/soria/soria.css";
                @import "<?php echo $dojofolder; ?>dojo/resources/fieldset.css";
        </style>

<style>
        /* NOTE: for a full screen layout, must set body size equal to the viewport. */
        html, body { height: 100%; width: 100%; margin: 0; padding: 0; }
        p,ul,li,a {
                padding-left:5px;
                font-size:11px;
        }
    </style>




dojo.require("dojo.parser");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.layout.LayoutContainer");
dojo.require("dijit.layout.AccordionContainer");
dojo.require("dijit.form.Form");
dojo.require("dijit.form.TextBox");
dojo.require("dijit.form.Button");
dojo.require("dijit.form.ValidationTextBox");
dojo.require("dijit.layout.TabContainer");
dojo.require("dijit.form.Button");
dojo.require("dijit.form.FilteringSelect");
dojo.require("dijit.Tree");
dojo.require("dijit.Menu");

and from /application/views/welcome_message.php

The above htmlheader.php is called like this :
Code:
<?php $this->load->view('htmlheader');

?>


Is there anyone here help we with this problems ?

Thanks in advance


YUAN




Theme © iAndrew 2016 - Forum software by © MyBB