Re: Upgrade From 7.0.2 Standard to 8.0.1 Enterprise

2008-09-28 Thread Matt Quackenbush
Adrian, Thanks for the info. The license.properties file tip was brilliant! Worked like a charm. :-) One note for those who might be doing such an upgrade later After doing the new install, be sure to copy your CFIDE directory **before** you uninstall the old version. After the

Re: Using session variable data to create a chart?

2008-09-28 Thread Azadi Saryev
what Rob, i guess, has implied is: you do not need a query to make a chart. you can use cfchartdata tags to provide your session data for the chart. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ ~| AdobeĀ®

CFCookie trouble

2008-09-28 Thread Phillip Perry
Hi, I'm trying to make a simple cookie for testing but its not working out. I use it for log in verification. The problem is the cookie gets stored but the redirect is not happening. I use the code below. The second redirect is the problem. Instead of going to newindex.cfm its loading the

SMS gateway not returning acknowledgment

2008-09-28 Thread Fawzi Amadu
I am using SMS to receive and enter data into my database. After successful processing of the data, I send an acknowledgment of receipt of the data sent to the recipient. My problem is that the acknowledgment is not being received by the simulator even though the data sent through it is

Re: Windows 2003 + CF8 = 401.3 Error

2008-09-28 Thread Gus Denton
I have a resolution I think to this I have installed CF8 as a standalone server running it's own webserver on a diffrent port 8501. My next task is to individually connect IIS site definitions to CF 8 as needed which I assumen can be acheived by simply changing the application extensions

onApplicationStart Vs onRequestStart

2008-09-28 Thread Sherif Abdou
I am new to ColdFusion and I am having trouble understanding what is the Difference between onApplicationStart method and onRequestStart method other than the Scope. For Example what does it mean by Application? First time a user comes to your site? Does it only run once? I tried to set a

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread Will Tomlinson
I am new to ColdFusion and I am having trouble understanding what is the Difference between onApplicationStart method and onRequestStart method other than the Scope. For Example what does it mean by Application? First time a onapplicationstart() runs when the first cfm or cfc is executed in

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread Steve Nelson
OnApplicationStart runs the first time ANY user hits your site. It's commonly used for setting application variables that rarely change. Things like datasources are a good place for that or initializing a ton of cfobjects. I commonly put a cfif statement in my onRequest event to reset the

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread s. isaac dealey
I am new to ColdFusion and I am having trouble understanding what is the Difference between onApplicationStart method and onRequestStart method other than the Scope. For Example what does it mean by Application? First time a user comes to your site? Does it only run once? I tried to set a

RE: (ot) Best development laptop

2008-09-28 Thread Andy Matthews
@all...it's a foregone conclusion that I'll be getting a 17 screen. @Aaron Rouse - I'm 6' 4 and 270 pounds. An extra pound or 4 on my laptop isn't going to phase me. Especially when I'm already used to lugging around a Dell Inspiron 6000 at almost 8 pounds. @JJ - I didn't say apps, I said

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread Sherif Abdou
Oh Ok I found what the problem is, I guess my Varaibles in the onApplicationStart got cached, so when I sent it once, launched and then I added another Variables after launched again the application variables dont' get updated. Now How would i prevent it from getting cached? -- Sherif Abdou

Re: onApplicationStart Vs onRequestStart

2008-09-28 Thread James Holmes
The whole point of putting variables into the application scope is to cache them so you don't have to set them on every request. The reason your variables didn't get set after you added new ones was that your application had already started; OnApplicationStart doesn't run on every request.

Re: CFCookie trouble

2008-09-28 Thread Azadi Saryev
for one thing, you are setting one cookie, but checking for another... there are more peculiar things in your code, but let's start with this. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Phillip Perry wrote: Hi, I'm trying to make a simple cookie for testing but its not working

Re: Windows 2003 + CF8 = 401.3 Error

2008-09-28 Thread Dave Watts
I have installed CF8 as a standalone server running it's own webserver on a diffrent port 8501. My next task is to individually connect IIS site definitions to CF 8 as needed which I assumen can be acheived by simply changing the application extensions associated with CF 6.1 to the CF8

Re: Windows 2003 + CF8 = 401.3 Error

2008-09-28 Thread James Holmes
http://livedocs.adobe.com/coldfusion/8/htmldocs/installmultiserver_3.html http://livedocs.adobe.com/coldfusion/8/htmldocs/clustering_2.html -- mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2008/9/29 Gus Denton If any of you rather kind persons can point me