Issue 429: Request Content Cannot be loaded ..Please try later in IE 8.0
Status:  Fixed
Owner: ----
Closed:  Apr 2010
Reported by natures...@gmail.com, Feb 13, 2010
What steps will reproduce the problem?
1. The code works very well in FF
2. Installed the latest version 1.5.5 of nyroModal
3.

What is the expected output? What do you see instead?

In IE I get the message on the summary line

What version of the product are you using? On what operating system?

1.5.5 and also tried it with 1.5.2

Please provide any additional information below.

I have a simple modal nyroModal form with an embedded simpletabs jquery
plugin that shows 3 tab windows in the modal form. It works very well in FF
but for some reason throws up this error in IE.

I have 2 other nyroModal windows that have only 1 embedded simpletab jquery
plugin tabbed window ..which works great in IE and FF. 

Appreciate any clues

Thanks
Mat

Feb 13, 2010
#1 i...@natureshop.com.au
Relevant code is as follows ..which is invoked when a person clicks on an icon from
another page:-

--------
<?php
// ////////////////////////////////////////////////////////////////////////////
// Modification History
//                      20100105  - Loyalty Toolbox 
//
//
// //////////////////////////////////////////////////////////////////////////////

include "Db_Cred.php";
session_start();
if (!class_exists ('Customer'))
   {
       include_once('Obj_3_Customer.php');
  }
if (!class_exists ('Claims'))
   {
       include_once('Obj_3_Accured_Claims.php');
  }

if (!class_exists ('Discnt_Voucher'))
   {
       include_once('Obj_3_Discnt_Vouch.php');
  }

if (!class_exists ('Discnt_Voucher_Typ'))
   {
       include_once('Obj_3_Discnt_Vouch_Typ.php');
  }

?>
<html><head>
<title>nyroModal :: Demo</title>
 <script type="text/javascript" src="jquery-1.3.2.min.js"></script>          
 <script type="text/javascript"
src="nyroModal-1.5.5/js/jquery.nyroModal-1.5.5.min.js"></script>
 <script type="text/javascript" src="simpleTabs/simpleTabs.jquery.js"></script>
 <link rel="stylesheet" href="simpleTabs/simpleTabs.css" type="text/css"
media="screen" />

<script type="text/javascript">
$(document).ready(function() {


	$("#simpleTabs3").simpleTabs({
		fadeSpeed: "medium", // @param : low, medium, fast
		defautContent: 1, // @param : number ( simpleTabs-nav-number)
		autoNav: "false", // @param : true or false
		closeTabs : "false" // @param : true or false;
	});
	
	
});

</script>




</head>


<body >

<div id="simpleTabs3">
	<div class="simpleTabs-nav">
	<ul>
	<li id="simpleTabs-nav-1"><strong>POINTS BALANCE</strong></li>
	<li id="simpleTabs-nav-2"><strong>REDEEMABLE VOUCHERS</strong></li>
	<li id="simpleTabs-nav-3"><strong>TRANSFERRED VOUCHERS</strong></li>
	</ul>
	</div>

		<div id="simpleTabs-content-1" class="simpleTabs-content" style="color:black;">
			<p>
				<?php
					$memberId = $_SESSION["membershipNumber"];

					$ns_customer_ob = new Customer($memberId);
					$ns_customer_ob_arr = $ns_customer_ob->_Get_Cust_Details();

					$customer_message = $ns_customer_ob->_Get_Message();

					$current_year = date("Y");
					$ns_claim_ob = New Claims($memberId,$customer_email,$current_year);
					$ns_claim_ob->_Lst_Cust_Claims_Tot('A01');
					$ns_claim_ob_arr = $ns_claim_ob->_Get_voucher();
				?>
				Dear <?php echo $ns_customer_ob_arr["First_Name"] ?>,
				<div>
					<span style="padding-right:50px;"><span style="font-weight:bold">POINT
BALANCE:</span> <?php echo $ns_claim_ob_arr[1]["Outstanding_points"] ?></span>
					<span><span style="font-weight:bold">VALID UNTIL:</span> 31/12/<?php echo
$current_year ?></span>
				</div>
				<div
style="margin-top:20px;border-style:solid;border-width:thin;height:150px;overflow:auto">
					<?php echo $customer_message ?>
				</div>
          </p>
		</div>

		<div id="simpleTabs-content-2" class="simpleTabs-content" style="color:black;">
			<p>
					<?php
					$memberId = $_SESSION["membershipNumber"];
					$ns_discuont_voucher_ob = New Discnt_Voucher($memberId);
					$ns_discuont_voucher_ob->_Get_Unclaimed_Vouch();
					$ns_discuont_voucher_ob_arr = $ns_discuont_voucher_ob->_Get_result();
					$ns_discuont_voucher_type_ob = New Discnt_Voucher_Typ();

					if($ns_discuont_voucher_ob_arr[0]!='0'){
						echo "No Discount Voucher";
					}
					else{
						echo "<div
style='border-style:solid;border-width:thin;height:200px;overflow:auto'><table
border=0 cellspacing=5px><tr style='vertical-align:top'><th>REDEEMABLE
VOUCHER</th><th>PROMOTION</th><th>VALID UNTIL</th></tr>";
						for($x=1;$x<count($ns_discuont_voucher_ob_arr);$x++){
							$voucher_number = $ns_discuont_voucher_ob_arr[$x]["Voucher"];
							$voucher_type = $ns_discuont_voucher_ob_arr[$x]["Voucher_type"];

							$ns_discuont_voucher_type_ob_arr =
$ns_discuont_voucher_type_ob->_Get_Promos_Metrics($voucher_type);
							$ns_discuont_voucher_type_ob_arr = $ns_discuont_voucher_type_ob->_Get_result();

							if($ns_discuont_voucher_type_ob_arr[0]=='0'){
								$vocher_description = $ns_discuont_voucher_type_ob_arr[1]["vou_descp"];
								$vocher_validityToDate =
strtotime($ns_discuont_voucher_type_ob_arr[1]["Validity_To_Date"]);
							}
							echo "<tr style='vertical-align:top'>";
							echo "<td>" .$voucher_number ."</td>";
							echo "<td>" .$vocher_description ."</td>";
							echo "<td>" .date('d/m/Y',$vocher_validityToDate) ."</td>";
							echo "</tr>";
						}
						echo "</table></div>";
					}
				?>
			</p>
		</div>

		<div id="simpleTabs-content-3" class="simpleTabs-content" style="color:black;">
			<p>
				<?php
				$memberId = $_SESSION["membershipNumber"];
				$ns_discuont_voucher_ob = New Discnt_Voucher($memberId);
				$ns_discuont_voucher_ob->_Get_Transfer_Details_Vouch();
				$ns_discuont_voucher_ob_arr = $ns_discuont_voucher_ob->_Get_result();
				if($ns_discuont_voucher_ob_arr[0]!='0'){
						echo "No Transfer Voucher";
				}
				else{
					echo "<div
style='border-style:solid;border-width:thin;height:200px;overflow:auto'><table
border=0 cellspacing=10px style='text-align:center'><tr><th>TRANSFERRED
VOUCHER</th><th>TRANSFERRED TO</th><th>TRANSFERRED ON</th></tr>";
					for($x=1;$x<count($ns_discuont_voucher_ob_arr);$x++){
						$voucher_number = $ns_discuont_voucher_ob_arr[$x]["Voucher"];
						$transfer_email = $ns_discuont_voucher_ob_arr[$x]["Transferee_email"];
						$transfer_date =  strtotime($ns_discuont_voucher_ob_arr[$x]["Transfer_Date"]);

						echo "<tr>";
						echo "<td>" .$voucher_number ."</td>";
						echo "<td>" .$transfer_email ."</td>";
						echo "<td>" .date('d/m/Y',$transfer_date) ."</td>";
						echo "</tr>";
					}
					echo "</table>";
				}
				?>
			</p>
		</div>



	</div>
</div>
</body>


</html>
Feb 14, 2010
Project Member #2 nyro...@gmail.com
First, Could you try by adding a doctype at the very top line of your page?
IE has some trouble without it...

Could we see your code in action?
It could be easier for debugging actually.
Feb 14, 2010
#3 natures...@gmail.com
Thanks for the tips ...the issue was a "bug" in the php code on an "if statement",
that for some reason FF could live with and IE hiccuped. I could not figure it out
but put a work .

Thanks again
Mat
Apr 17, 2010
Project Member #4 nyro...@gmail.com
(No comment was entered for this change.)
Status: Fixed