FYI, If you call MACR with a support question, they do not charge you the $150 if your problem is the result of a bug. In this case, I think you would be charged. However, if you really did find a bug in CF, you don't get charged. Jeremy
I just fixed it. Found the problem. Any CF comments above the <script...> causes it to hang for instance: <!--- Created: 9/18/01 ---> caused it not to work, so I took out the CF comment that was not inside the <script...> and it works now. Follows was the offending code: <html><head> <title>Login to Showbizjobs</title> <!--- jg I had to do this to make the form submit to the parent indow. ---> <SCRIPT LANGUAGE="JavaScript"> function targetparent(templatename){window.opener.location.href=templatename;} function sendValue(l, p){ var lname = l.value; var pword = p.value window.opener.logmein(lname, pword); window.close(); } function toForm() { document.loginform.UserName.focus(); } </script> Fix: <html><head> <title>Login to Showbizjobs</title> <SCRIPT LANGUAGE="JavaScript"> function targetparent(templatename){window.opener.location.href=templatename;} function sendValue(l, p){ var lname = l.value; var pword = p.value window.opener.logmein(lname, pword); window.close(); } function toForm() { document.loginform.UserName.focus(); } </script> -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 5:41 PM To: [EMAIL PROTECTED] Subject: Re: CF 5.0 problems. Jacob, I just went to both of your links on a MAC with I.E. 5.0 and clicked login.. with no problems and no lockup. Just FYI. Respectfully, <cf_developer> Phillip B. Holmes Media Resolutions Inc. Premier Allaire Alliance Partner http://www.mediares.com [EMAIL PROTECTED] 1-888-395-4678 ext. 101 972-889-0201 ext. 101 </cf_developer> Please send support requests to [EMAIL PROTECTED] ----- Original Message ----- From: "Jacob Cameron" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 18, 2001 12:42 PM Subject: CF 5.0 problems. > Ever since we upgraded one of our web servers to CF 5.0 we have had > problems. Basically, most JavaScript won't run on IE 5.0 on the Mac, but > does on NS on a MAC, IE and NS on PC. I have the exact code on a machine > with the same configuration except CF 4.5 and it runs fine. On the CF 5.0 > machine, I saved the pages that are having trouble out as .html and they > work fine. So I'm pretty sure that it must be CF. > For an example go to: http://www.showbizjobs.com/dsp_jobsearch.cfm and > click login. Then go to http://www.showbizjobs.com/dsp_jobsearch.html and > click login. If your on any browser except IE 5.0 on the MAC it works fine. > With IE 5.0 on the MAC, the .html works but the .cfm doesn't. On the .cfm > page there are no #'s or CFOUTPUTS around the JavaScript. > Also, a few months ago I wrote a onChange redirect select box and saved it > on a page with no CF in it and it wouldn't run on the MAC IE, but would with > all others and worked fine when I changed the extension to .html. > After calling Allaire/Macromedia support and being told $150.00 to even > look at it, I figured I'd ask the list and if no answers are given. I'll > just recommend to everyone not to user CF 5 and downgrade my server to 4.5. > This is a huge bug causing lots of problems to my clients. > > PS. On MAC IE 5 the pages just freeze and nothing happens. You have to > kill the browser. > > > > ------------------------------------------------------------------------- > This email server is running an evaluation copy of the MailShield anti- > spam software. Please contact your email administrator if you have any > questions about this message. MailShield product info: www.mailshield.com > > ----------------------------------------------- > To post, send email to [EMAIL PROTECTED] > To subscribe / unsubscribe: http://www.dfwcfug.org > ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org ------------------------------------------------------------------------- This email server is running an evaluation copy of the MailShield anti- spam software. Please contact your email administrator if you have any questions about this message. MailShield product info: www.mailshield.com ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org
