Re: moving from CF 4.5 to 7.0

2007-02-06 Thread Pete Ruckelshaus
The biggest difference for our code was that we could no longer shorthand scopes. I.e., in 5 and below, cfset tmp.varname = value would create a scope called tmp and a variable named varname within the tmp scope. In MX, you need to cfset tmp = structnew() and then you can cfset tmp.varname =

Re: moving from CF 4.5 to 7.0

2007-02-06 Thread So Kenfused
If you could send that I would appreciate it. It would save me from having to search the adobe cite for it. There's an Adobe document called cfmx7_migrating.pdf. We basically just worked through it. Let me know if you want me to email you a copy of the document. Jaime

RE: moving from CF 4.5 to 7.0

2007-02-06 Thread Tero Pikala
I upgraded couple of sites from CF5.0 - CF7.0 few months ago, here's some things that required fixing: - cfsetting / catchexceptionsbypattern is no longer supported. I just removed it, can't remember what it is for. - cferror type=monitor was changed to type=exception. Again, can't remember

RE: moving from CF 4.5 to 7.0

2007-02-06 Thread WebSite CFtalk
http://www.google.com/search?q=cfmx7_migrating.pdf (-; -Original Message- From: So Kenfused [mailto:[EMAIL PROTECTED] Sent: 6. februar 2007 16:25 To: CF-Talk Subject: Re: moving from CF 4.5 to 7.0 If you could send that I would appreciate it. It would save me from having to search

RE: moving from CF 4.5 to 7.0

2007-02-05 Thread Mark Fuqua
No personal experience, but I think the info you find about 4.5 to MX or especially 6.1 would translate well. I think 7.0 was mostly about adding features and fixing bugs, not a big rewrite of the code base. Mark -Original Message- From: So Kenfused [mailto:[EMAIL PROTECTED] Sent:

Re: moving from CF 4.5 to 7.0

2007-02-05 Thread Mike Chabot
Step 1 is to run the site through the code analyzer in CF Admin. You shouldn't have too much trouble with the upgrade. -Mike Chabot On 2/5/07, Mark Fuqua [EMAIL PROTECTED] wrote: No personal experience, but I think the info you find about 4.5 to MX or especially 6.1 would translate well. I

RE: moving from CF 4.5 to 7.0

2007-02-05 Thread Nathan C. Smith
, February 05, 2007 3:15 PM To: CF-Talk Subject: RE: moving from CF 4.5 to 7.0 No personal experience, but I think the info you find about 4.5 to MX or especially 6.1 would translate well. I think 7.0 was mostly about adding features and fixing bugs, not a big rewrite of the code base. Mark

RE: moving from CF 4.5 to 7.0

2007-02-05 Thread Jaime Metcher
of the document. Jaime Metcher -Original Message- From: Nathan C. Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, 6 February 2007 8:31 AM To: CF-Talk Subject: RE: moving from CF 4.5 to 7.0 I'm in the process of doing this now. And 4.0 to 6.1 before that - on another box. For the most part