Found the problem. The IE check version number is returning version 6 and the external.php is exiting...
Just comment this part out in external.php:
- Code: Select all
/*
// Exit if IE6
if ((strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE 6.') !== FALSE)) {
exit;
}
*/
Also, if you want pages to load faster use this in the your header, it will get the jquery libraries form google code instead of locally. Many reasons why this should have been put into the instructions.
- Code: Select all
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript" src=" https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>