Which web server was that Michael? Just want to be clear that it was not IIS and Apache, which are our primary concerns.
-jesse noller -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 9:16 AM To: CF-Talk Subject: Re: CFMX Updater If your using Website as your server, you have to reinstall the website MX connector after running the CFMX update. For some reason, the update kills it (removes some of the jrun files). Other than that, it all went smoothly. You can test that the CFMX update has installed properly by using this code below. It produced a wrong result for the datediff() function in the old version and works correctly in the new: <CFSCRIPT> function datediffm(startdate, enddate) { datepart1=DatePart('m', startdate); datepart2=DatePart('m', enddate); datepart2=datepart2+((datepart('yyyy', enddate)-datepart('yyyy', startdate))*12); return datepart2-datepart1; } </CFSCRIPT> <cfset startDay = CreateDate(2002, 1, 1)> <cfloop from="-5" to="10" index="i"> <cfset newDate = DateAdd('m', i, startDay)> <cfoutput>diff between #dateformat(startDay)# and #dateformat(newDate)# is #DateDiff('m', startDay, newDate)# (#datediffm(startDay, newDate)#)</cfoutput><BR> </cfloop> > Folks - we released an updater for CFMX last night. You can find it > here: > > http://dynamic.macromedia.com/bin/MM/software/trial/hwswrec.jsp?product= > cfmx_updater > > There is a large list of fixes contained with the updater. You can find > that here: > > http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenote > s_mx_updater.html > > ======================================================================= > Raymond Camden, ColdFusion Jedi Master for Hire > > Email : [EMAIL PROTECTED] > Yahoo IM : cfjedimaster > > "My ally is the Force, and a powerful ally it is." - Yoda > > > ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

