Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
richardsteele  
#1 Posted : Thursday, July 28, 2005 9:48:00 PM(UTC)
richardsteele

Rank: Member

Groups: Member
Joined: 6/10/2004(UTC)
Posts: 9

We are getting constant crashing of the latest version of Firefox browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6.

We are using the trial 1.1 java version and 3 panes style.

These crashes occur usually on the 2nd or 3rd round of uploading of several images at a time.

It seems to work fine in IE (java version).

Please advise. Thanks.

Fedor  
#2 Posted : Saturday, July 30, 2005 11:29:00 AM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello Richard,

Could you post here or submit case with the code you use to embed Image Uploader on the page?

Edited by user Friday, May 23, 2008 2:47:23 PM(UTC)  | Reason: Not specified

Best regards,

Fedor Skvortsov

richardsteele  
#3 Posted : Sunday, July 31, 2005 12:04:00 PM(UTC)
richardsteele

Rank: Member

Groups: Member
Joined: 6/10/2004(UTC)
Posts: 9

Hi Fedor, Here is the code that is used to load the image uploader. Thx.

Code:
<html>
<head>
	<title>Image Upload</title>
	<script language="javascript" src="Includes/iuembed.js"></script>
	<style>
<!--
	.textlargebold {font-family: arial; font-size: 10pt; color:000000; font-weight:bold}
	.textlarge {font-family: arial; font-size: 10pt; color:000000}
-->
</style>
</head>
<body bgcolor="FFFFFF" leftmargin="15" topmargin="15">
<form id="Form1" name="Form1">
<table cellspacing="0" cellpadding="2" width="770" border="0">
	<tr>

		<td align="left" width="770" class="textlargebold">
			Portfolio: 			
			<select name="portfolioid" size="1">
			
			<option value="41">Portraiture</option>
			
			<option value="44">Nightlife</option>
			
			<option value="35">Valle de Mondego & Douro River </option>
			
			<option value="46">Creatures</option>

			
			<option value="31">Sugar Cane Harvesting</option>
			
			<option value="20">Polly</option>
			
			<option value="36">University of Coimbra 700th Year Anniversary </option>
			
			<option value="34">Ode to Home</option>
			
			<option value="42">Circus</option>
			
			<option value="43">Circus</option>

			
			</select>
			
		</td>
	</tr>
	<tr>
		<td width="770">
			<script language="javascript">
function ImageUploader_Progress(Status, Progress, ValueMax, Value, StatusText)
{
    if (Status=="COMPLETE"){
	   // When upload is finished, we are redirecting to the PictureGalery.cfm page
	   window.location = 'Image_Upload_Success.cfm';  
    }
} 
</script>
<script language="javascript">
var iu = new ImageUploaderWriter("ImageUploader", 770, 500);
iu.activeXControlEnabled = false;
iu.javaAppletEnabled = true;

//For ActiveX control we specify full path for CAB file
iu.activeXControlCodeBase = "./ImageUploader3.cab";
iu.activeXControlVersion = "3,5,50,0";

//For Java applet we specify only directory with JAR files
iu.javaAppletCodeBase = "./";
iu.javaAppletCached = true;
iu.javaAppletVersion = "1.0.28.0";

iu.addParam("Layout","TwoPanes"); //Doesn't work for Java version
iu.addParam("FileMask", "*.jpg");

iu.addParam("MaxFileSize", "1000000");
iu.addParam("FileIsTooLargeText", "Larger then 1 MG");
iu.addParam("MessageMaxFileSizeExceededText", "You can not select files larger than 1 MG.");

iu.addParam("MaxTotalFileSize", "3000000");
iu.addParam("MessageMaxTotalFileSizeExceededText", "You are not allowed to upload more than 3 MB at one time.");

iu.addParam("UploadThumbnail1FitMode","Fit");
iu.addParam("UploadThumbnail1Width","120");
iu.addParam("UploadThumbnail1Height","120");
iu.addParam("UploadThumbnail1JpegQuality","60");
iu.addParam("ShowDebugWindow","True");
iu.addParam("AdditionalFormName","Form1");
iu.addParam("EnableRotate","False");
iu.addParam("Action","Image_Upload_Action.cfm")						
iu.addEventListener("Progress", "ImageUploader_Progress");						
iu.writeHtml();
</script>
		</td>

	</tr>
</table> </body>
</form>
</html>

Edited by user Sunday, December 23, 2007 5:46:37 PM(UTC)  | Reason: Not specified

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.