[cfaussie] Re: Melbourne CFUG Reminder : This Thursday Night

2009-07-21 Thread George Lu
Hi Steve,

I'd like to come to the meeting. As I haven't been to the meeting for a
while it's my first time to the new location. Is there any parking around
and any refreshment (e.g. pizza - I have to plan to come early as I live far
away from the city)?

Thanks,
George

2009/7/21 Steve Onnis st...@cfcentral.com.au

  Reminding everyone that the Melbourne CFUG is this Thursday night
 starting at 6:30pm at 21 Victoria Street, Melbourne.

 Presentation on the night will be a history and overview of the Fusebox web
 application framework followed by a closer look at the current version
 (V5.5).  We will look at the available resources and tools and how to get
 started, then take a tour of a sample application. The discussion at the end
 will encourage comparisons with the other popular CFML frameworks.

 Form more info please visit http://groups.adobe.com/posts/d1399c4860

 Steve

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Melbourne CFUG Reminder : This Thursday Night

2009-07-21 Thread George Lu
Thank you Steve and Dale. See you there.

Cheers,
George

2009/7/22 Dale Fraser d...@fraser.id.au

  There is plenty of parking next door for $4 and onstreet for free around
 the corner.



 Location is



 21 Victoria Street, Melbourne



 That is near the corner of Exhibition and Victoria.



 Not to be confused with 21 Victoria Parade.



 Regards

 Dale Fraser



 http://dale.fraser.id.au

 http://learncf.com

 http://flexcf.com



 *From:* cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] *On
 Behalf Of *Steve Onnis
 *Sent:* Wednesday, 22 July 2009 1:15 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: Melbourne CFUG Reminder : This Thursday Night



 George



 There is parking around the corner and yes there will be pizza and stuff



 Steve


  --

 *From:* George Lu [mailto:lug...@gmail.com]
 *Sent:* Wednesday, 22 July 2009 12:50 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: Melbourne CFUG Reminder : This Thursday Night

 Hi Steve,

 I'd like to come to the meeting. As I haven't been to the meeting for a
 while it's my first time to the new location. Is there any parking around
 and any refreshment (e.g. pizza - I have to plan to come early as I live far
 away from the city)?

 Thanks,
 George

 2009/7/21 Steve Onnis st...@cfcentral.com.au

 Reminding everyone that the Melbourne CFUG is this Thursday night starting
 at 6:30pm at 21 Victoria Street, Melbourne.



 Presentation on the night will be a history and overview of the Fusebox web
 application framework followed by a closer look at the current version
 (V5.5).  We will look at the available resources and tools and how to get
 started, then take a tour of a sample application. The discussion at the end
 will encourage comparisons with the other popular CFML frameworks.



 Form more info please visit http://groups.adobe.com/posts/d1399c4860



 Steve






 BR

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Clear query cache

2008-11-12 Thread George Lu
Hi,

I've got a query in a CFC with a cache setting:
cachedWithin=#CreateTimeSpan(7,0,0,0)#. I've updated the query but how can
I clear or reset the cache so I can see the updated query result now?

Thanks,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Clear query cache

2008-11-12 Thread George Lu
Thank you Raymond. I've tried the first one - it didn't work. I'll try the
second one.

Would you be able to give me an example how to put cache in the Application
scope?

Thanks,
George

2008/11/13 Raymond Camden [EMAIL PROTECTED]


 You have two methods:

 1) cfobjectcache action=clear

 This clears ALL cached queries on the entire box.

 2) You can rerun the query with a timespan of 0,0,0,0.

 Note - the SQL must be the exact same, and that includes white space!

 Personally I cache my queries in the Application or Session scope.
 Makes it a lot easier to clear.

 On Wed, Nov 12, 2008 at 4:22 PM, George Lu [EMAIL PROTECTED] wrote:
  Hi,
 
  I've got a query in a CFC with a cache setting:
  cachedWithin=#CreateTimeSpan(7,0,0,0)#. I've updated the query but how
 can
  I clear or reset the cache so I can see the updated query result now?
 
  Thanks,
  George
 
  
 



 --
 ===
 Raymond Camden, VP of Software Dev, Broadchoice

 Email: [EMAIL PROTECTED]
 Blog  : www.coldfusionjedi.com
 AOL IM : cfjedimaster

 Keep up to date with the community: http://www.coldfusionbloggers.org

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Clear query cache

2008-11-12 Thread George Lu
Thanks Raymond for the example. I'll incorporate it into my CFC. Well, I've
tried the second method. It didn't work either. I'm using Flash Forms (I
know, it's bit old :)) in the front end. Maybe I should use this in
onRequestStart?

cfif structKeyExists(url,updateapp)
!--- cfset result = onApplicationEnd() / ---
cfset result = onApplicationStart() /
/cfif


2008/11/13 Raymond Camden [EMAIL PROTECTED]


 cfset application.x  = y

 There ya go. :) That assumes Y is a query. Here is a more fuller, but
 still a bit pseudo-code, example:

 cfif not structKeyExists(application,states)

  cfquery name=getStates datasource=foo
  select id, name
  from states
  /cfquery

  cfset application.states = getStates
 /cfif

 Obviously this could be wrapped up into a CFC.

 On Wed, Nov 12, 2008 at 4:43 PM, George Lu [EMAIL PROTECTED] wrote:
  Thank you Raymond. I've tried the first one - it didn't work. I'll try
 the
  second one.
 
  Would you be able to give me an example how to put cache in the
 Application
  scope?
 
  Thanks,
  George
 
  2008/11/13 Raymond Camden [EMAIL PROTECTED]
 
  You have two methods:
 
  1) cfobjectcache action=clear
 
  This clears ALL cached queries on the entire box.
 
  2) You can rerun the query with a timespan of 0,0,0,0.
 
  Note - the SQL must be the exact same, and that includes white space!
 
  Personally I cache my queries in the Application or Session scope.
  Makes it a lot easier to clear.
 
  On Wed, Nov 12, 2008 at 4:22 PM, George Lu [EMAIL PROTECTED] wrote:
   Hi,
  
   I've got a query in a CFC with a cache setting:
   cachedWithin=#CreateTimeSpan(7,0,0,0)#. I've updated the query but
 how
   can
   I clear or reset the cache so I can see the updated query result now?
  
   Thanks,
   George
  
   
  
 
 
 
  --
 
 
 ===
  Raymond Camden, VP of Software Dev, Broadchoice
 
  Email: [EMAIL PROTECTED]
  Blog  : www.coldfusionjedi.com
  AOL IM : cfjedimaster
 
  Keep up to date with the community: http://www.coldfusionbloggers.org
 
 
 
 
  
 



 --
 ===
 Raymond Camden, VP of Software Dev, Broadchoice

 Email: [EMAIL PROTECTED]
 Blog  : www.coldfusionjedi.com
 AOL IM : cfjedimaster

 Keep up to date with the community: http://www.coldfusionbloggers.org

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Clear query cache

2008-11-12 Thread George Lu
It works now! I guess because I've put the cfc into the application scope
and the query into the request scope.

2008/11/13 George Lu [EMAIL PROTECTED]

 Thanks Raymond for the example. I'll incorporate it into my CFC. Well, I've
 tried the second method. It didn't work either. I'm using Flash Forms (I
 know, it's bit old :)) in the front end. Maybe I should use this in
 onRequestStart?

 cfif structKeyExists(url,updateapp)
 !--- cfset result = onApplicationEnd() / ---
 cfset result = onApplicationStart() /
 /cfif



 2008/11/13 Raymond Camden [EMAIL PROTECTED]


 cfset application.x  = y

 There ya go. :) That assumes Y is a query. Here is a more fuller, but
 still a bit pseudo-code, example:

 cfif not structKeyExists(application,states)

  cfquery name=getStates datasource=foo
  select id, name
  from states
  /cfquery

  cfset application.states = getStates
 /cfif

 Obviously this could be wrapped up into a CFC.

 On Wed, Nov 12, 2008 at 4:43 PM, George Lu [EMAIL PROTECTED] wrote:
  Thank you Raymond. I've tried the first one - it didn't work. I'll try
 the
  second one.
 
  Would you be able to give me an example how to put cache in the
 Application
  scope?
 
  Thanks,
  George
 
  2008/11/13 Raymond Camden [EMAIL PROTECTED]
 
  You have two methods:
 
  1) cfobjectcache action=clear
 
  This clears ALL cached queries on the entire box.
 
  2) You can rerun the query with a timespan of 0,0,0,0.
 
  Note - the SQL must be the exact same, and that includes white space!
 
  Personally I cache my queries in the Application or Session scope.
  Makes it a lot easier to clear.
 
  On Wed, Nov 12, 2008 at 4:22 PM, George Lu [EMAIL PROTECTED] wrote:
   Hi,
  
   I've got a query in a CFC with a cache setting:
   cachedWithin=#CreateTimeSpan(7,0,0,0)#. I've updated the query but
 how
   can
   I clear or reset the cache so I can see the updated query result now?
  
   Thanks,
   George
  
   
  
 
 
 
  --
 
 
 ===
  Raymond Camden, VP of Software Dev, Broadchoice
 
  Email: [EMAIL PROTECTED]
  Blog  : www.coldfusionjedi.com
  AOL IM : cfjedimaster
 
  Keep up to date with the community: http://www.coldfusionbloggers.org
 
 
 
 
  
 



 --

 ===
 Raymond Camden, VP of Software Dev, Broadchoice

 Email: [EMAIL PROTECTED]
 Blog  : www.coldfusionjedi.com
 AOL IM : cfjedimaster

 Keep up to date with the community: http://www.coldfusionbloggers.org

 



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Clear query cache

2008-11-12 Thread George Lu
I have the query getStates in the cfc: helpdeskGateway and create object
for the cfc in application.cfc:

cfset application.helpdeskGateway =
createObject(component,variables.componentPath 
.components.HelpdeskGateway).init(variables.dns) /

So when I access the query I use this:
application.helpdeskGateway.getStates. As sometimes CF complains it couldn't
find helpdeskGateway in the application scope so I've also put
helpdeskGateway into the request scope. Hence when I want to access the
query I use this: request.helpdeskGateway.getStates. I know this is not good
but I don't know why.

2008/11/13 Brett Payne-Rhodes [EMAIL PROTECTED]


 Any reason why you wouldn't just put that scope into the query name?

 As in: cfquery name=application.getStates datasource=foo

 Brett
 B)


 Raymond Camden wrote:
  cfset application.x  = y
 
  There ya go. :) That assumes Y is a query. Here is a more fuller, but
  still a bit pseudo-code, example:
 
  cfif not structKeyExists(application,states)
 
cfquery name=getStates datasource=foo
select id, name
from states
/cfquery
 
cfset application.states = getStates
  /cfif
 
  Obviously this could be wrapped up into a CFC.
 
  On Wed, Nov 12, 2008 at 4:43 PM, George Lu [EMAIL PROTECTED] wrote:
  Thank you Raymond. I've tried the first one - it didn't work. I'll try
 the
  second one.
 
  Would you be able to give me an example how to put cache in the
 Application
  scope?
 
  Thanks,
  George
 
  2008/11/13 Raymond Camden [EMAIL PROTECTED]
  You have two methods:
 
  1) cfobjectcache action=clear
 
  This clears ALL cached queries on the entire box.
 
  2) You can rerun the query with a timespan of 0,0,0,0.
 
  Note - the SQL must be the exact same, and that includes white space!
 
  Personally I cache my queries in the Application or Session scope.
  Makes it a lot easier to clear.
 
  On Wed, Nov 12, 2008 at 4:22 PM, George Lu [EMAIL PROTECTED] wrote:
  Hi,
 
  I've got a query in a CFC with a cache setting:
  cachedWithin=#CreateTimeSpan(7,0,0,0)#. I've updated the query but
 how
  can
  I clear or reset the cache so I can see the updated query result now?
 
  Thanks,
  George
 
 
 
  --
 
 
 ===
  Raymond Camden, VP of Software Dev, Broadchoice
 
  Email: [EMAIL PROTECTED]
  Blog  : www.coldfusionjedi.com
  AOL IM : cfjedimaster
 
  Keep up to date with the community: http://www.coldfusionbloggers.org
 
 
 
 
 
 

 --
 Brett Payne-Rhodes
 Eaglehawk Computing
 t: +61 (0)8 9371-0471
 m: +61 (0)414 371 047
 e: [EMAIL PROTECTED]
 w: http://www.yoursite.net.au


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 For Sale

2008-09-03 Thread George Lu
I've got a copy of CF5 (standard) still in the box. Let me know if you want
this.

George

2008/9/2 Ben Snart [EMAIL PROTECTED]

 Anyone have a copy of CF8 (standard) they're looking to sell.

 If so please let me know.

 [EMAIL PROTECTED]

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Dreamweaver CS3 supports CF8 tags?

2008-06-12 Thread George Lu
Thank you Steve!

2008/6/13 Steve Onnis [EMAIL PROTECTED]:

  George


 http://download.macromedia.com/pub/coldfusion/8/dreamweaverupdate/CF801-Tags-for-DW.mxp


 Steve

  --
 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Friday, 13 June 2008 2:26 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] Dreamweaver CS3 supports CF8 tags?

 Hi,

 I've tried to use DW to add CF8's Ajax tags. However, I can't find those
 tags anywhere and not working in code hints as well. Does anyone know where
 I can find DW updates for CF8?

 Thanks,
 George
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF Meetup 8am Tommorow

2008-05-22 Thread George Lu
Sounds great! Dale. Just a bit earlier for me. I want to learn how to
configure CF and Flex connection.

2008/5/22 Dale Fraser [EMAIL PROTECTED]:

  Anyone interested in my ColdFusion and Flex talk, I'll be giving it on
 the CF Meetup tomorrow.



 You can tune in or watch the recording later.



 http://coldfusion.meetup.com/17/calendar/7928523/



 Regards

 Dale Fraser

 http://learncf.com

 http://flexcf.com





 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: VIC CFUG TONIGHT!

2008-04-16 Thread George Lu
Finally I can make it. I may come early or little bit late :)

On 17/04/2008, Steve Onnis [EMAIL PROTECTED] wrote:


 How many rsvp?


 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Mark Mandel
 Sent: Thursday, 17 April 2008 2:43 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: VIC CFUG TONIGHT!


 Should be a good turn out, we have a few new faces as well! :oD

 (oh yeah, and I should have some AIR shwag to give away too)

 Mark

 On Thu, Apr 17, 2008 at 2:38 PM, Dale Fraser [EMAIL PROTECTED] wrote:
 
 
 
 
  Don't forget this is tonight.
 
 
 
  Doors open at 6:30. Come and learn how to get Flex talking to your
  ColdFusion code easily.
 
 
 
  Regards
 
  Dale Fraser
 
  http://learncf.com
 
 
   
 



 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com





 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFUG Melbourne this month (April)?

2008-04-15 Thread George Lu
Dale, I really want to see your presentation on Flex/CF. I may not be able
to come. Is it possible to record the meeting and make it available for us?

On 15/04/2008, Dale Fraser [EMAIL PROTECTED] wrote:


 Yep,

 I will be showing how easy it is to get Flex and CF talking and why you
 should have a look at flex.

 This is not aimed at hard cord Flex people, it is aimed at CF people
 interested in learning a bit about Flex.

 Regards

 Dale Fraser
 http://learncf.com


 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Peter Robertson

 Sent: Tuesday, 15 April 2008 3:32 PM
 To: cfaussie
 Subject: [cfaussie] Re: CFUG Melbourne this month (April)?



 Um, anyone?  CFUG Melb April?  Yes?  No?

 On Apr 15, 10:30 am, Peter Robertson [EMAIL PROTECTED] wrote:
  Is there a Melbourne CFUG this month?  If so can the details be posted
  please?  Would anyone like my help in getting Melb CFUGs publicised on
  the appropriate boards/lists/etc?
 
  Cheers
 
  Peter Robertson


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFUG Melbourne this month (April)?

2008-04-15 Thread George Lu
Yes Dale. I'd like to ask you questions about Flex and Flash Forms. I hope I
can come :).

On 16/04/2008, Dale Fraser [EMAIL PROTECTED] wrote:

  I'll have to defer that to Steve or Mark.



 It will be much better in person however, as you can get to ask questions.



 Regards

 Dale Fraser

 http://learncf.com



 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Wednesday, 16 April 2008 12:12 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: CFUG Melbourne this month (April)?



 Dale, I really want to see your presentation on Flex/CF. I may not be able
 to come. Is it possible to record the meeting and make it available for us?

 On 15/04/2008, *Dale Fraser* [EMAIL PROTECTED] wrote:


 Yep,

 I will be showing how easy it is to get Flex and CF talking and why you
 should have a look at flex.

 This is not aimed at hard cord Flex people, it is aimed at CF people
 interested in learning a bit about Flex.

 Regards

 Dale Fraser
 http://learncf.com


 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Peter Robertson

 Sent: Tuesday, 15 April 2008 3:32 PM
 To: cfaussie
 Subject: [cfaussie] Re: CFUG Melbourne this month (April)?



 Um, anyone?  CFUG Melb April?  Yes?  No?

 On Apr 15, 10:30 am, Peter Robertson [EMAIL PROTECTED] wrote:
  Is there a Melbourne CFUG this month?  If so can the details be posted
  please?  Would anyone like my help in getting Melb CFUGs publicised on
  the appropriate boards/lists/etc?
 
  Cheers
 
  Peter Robertson




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Schedule tasks in CF8 Cluster

2008-04-14 Thread George Lu
Andrew,

Well, as AJ said, to spread the work load between instances. And better for
those tasks run repeatedly on the same day.

On 15/04/2008, Andrew Scott [EMAIL PROTECTED] wrote:

  George,



 Let me ask you one question, and this is only to help both of us
 understand the situation.



 Is the scheduled task that you need to run, server dependant? The reason I
 ask, is that I can' think of any reason why you would not use the last
 server in your cluster to run the scheduled task. Having said that, if it is
 to email, or update the database or something in that nature.



 Why would you want to run it on all instances?



 Is there a more specific reason that you want to run the same schedule 2
 or more times?



 I am yet to work in a cluster, but I am not sure that I would want to do
 what you trying to do. But you may have a very good reason for wanting too.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  9015 8628
 Mobile: 0404 998 273







 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Tuesday, 15 April 2008 9:48 AM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: Schedule tasks in CF8 Cluster



 Thanks, I see. But if you have a task runs daily how can you spread it
 into two instances?

 On 14/04/2008, *AJ Mercer* [EMAIL PROTECTED] wrote:

 you can.

 We did this so that if instance 1 dies, the task will at least get run 3
 times an hour

 it also spreads the work around - would be more significant for processes
 that thumped the server and run more frequently.



  On Sat, Apr 12, 2008 at 4:13 PM, George Lu [EMAIL PROTECTED] wrote:

 Well, why can't you just run the task in instance 1 only (don't run it in
 all other instances) every 15 mins?

 On 11/04/2008, *AJ Mercer* [EMAIL PROTECTED] wrote:

  If you schedule them for same time, they will both fire off at the same
 time - can your script handle two simultaneous calls?

 We have four instances and a task we want run every 15 minutes
 So instance 1 runs at 00
  instance 2 runs at 15
  instance 3 runs at 30
  instance 4 runs at 45

 Think of each instance as a separate CF server
 Even though they may share the same code
 they each have their own APPLICATION scope



  On Fri, Apr 11, 2008 at 2:32 PM, George Lu [EMAIL PROTECTED] wrote:

 I've got two instances (instance1  2) in a cluster on a CF8 server. My
 question is should I enable schedule tasks in both instances or just one of
 instances?

 Regards,
 George



  --


 AJ Mercer
 Web Log: http://webonix.net








 --

 AJ Mercer
 Web Log: http://webonix.net




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Schedule tasks in CF8 Cluster

2008-04-12 Thread George Lu
Well, why can't you just run the task in instance 1 only (don't run it in
all other instances) every 15 mins?

On 11/04/2008, AJ Mercer [EMAIL PROTECTED] wrote:

 If you schedule them for same time, they will both fire off at the same
 time - can your script handle two simultaneous calls?

 We have four instances and a task we want run every 15 minutes
 So instance 1 runs at 00
  instance 2 runs at 15
  instance 3 runs at 30
  instance 4 runs at 45

 Think of each instance as a separate CF server
 Even though they may share the same code
 they each have their own APPLICATION scope


 On Fri, Apr 11, 2008 at 2:32 PM, George Lu [EMAIL PROTECTED] wrote:

  I've got two instances (instance1  2) in a cluster on a CF8 server. My
  question is should I enable schedule tasks in both instances or just one of
  instances?
 
  Regards,
  George
 
 
 


 --

 AJ Mercer
 Web Log: http://webonix.net
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: [OT] Dreamweaver - testing files

2008-04-12 Thread George Lu
I always select the option of automatically upload files to server on
save.

On 10/04/2008, Taco Fleur [EMAIL PROTECTED] wrote:

 Hello all,

 I'm almost ashamed for asking this (since I've been using DW for years)!

 I have the following setup for a site:
 - Local info = Local machine
 - Remote info = Visual Source Safe
 - Testing server = ColdFusion Server

 To test a CFM file I click F12 which works fine, it uploads the CFM file
 to the test server. But I can't figure out how to upload other files
 together with the page that have changed, other than manually uploading
 them.
 Does anyone know the secret I'm missing here?

 --
 Try advertising on the new Australian Business Directory
 www.clickfind.com.au
 blog: http://australiansearchengine.wordpress.com/
 Web Designers  http://www.web-designers-australia.com

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Schedule tasks in CF8 Cluster

2008-04-11 Thread George Lu
I've got two instances (instance1  2) in a cluster on a CF8 server. My
question is should I enable schedule tasks in both instances or just one of
instances?

Regards,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 clustering - adding new instance

2008-04-08 Thread George Lu
Thank you Barry. I've installed the cluster with IIS. I'll put screen shots
together in my blog.

On 07/04/2008, Barry Beattie [EMAIL PROTECTED] wrote:


 George, if you're still after some more info:


 http://alagad.com/go/blog-entry/ha-clustering-coldfusion-part-1-installing-cf

 HA - Clustering ColdFusion Part 1 - Installing CF


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF 8 Update 1

2008-04-08 Thread George Lu
Yes, it does...

On 09/04/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 I'm not sure the updater will update all instances but I'm about to find
 out.




 On 4/9/08, barry.b [EMAIL PROTECTED] wrote:
 
 
  the size is the dead give-away.
 
  if it's about 96Mb then it's just the updater.
 
  if it's 300+ Mb then it's the full deal.
 
 
 
  On Apr 9, 10:39 am, Andrew Scott [EMAIL PROTECTED] wrote:
   Unless you hacked a Mac OSX install as per the notes. Which I know
 this is
   not the case.
  
   Andrew Scott
   Senior Coldfusion Developer
   Aegeon Pty. Ltd.www.aegeon.com.au
   Phone: +613  9015 8628
   Mobile: 0404 998 273
  
  
  
   -Original Message-
   From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
  Behalf
  
   Of Mark Mandel
   Sent: Wednesday, 9 April 2008 10:13 AM
   To: cfaussie@googlegroups.com
   Subject: [cfaussie] Re: CF 8 Update 1
  
   Mariano,
  
   There is an 'updater' and a full install.
  
   if you download the updater from the 'Updates' page, it will only
   update your CF install.
  
   Mark
  
   On Wed, Apr 9, 2008 at 10:08 AM, Mariano [EMAIL PROTECTED]
 wrote:
  
 Hi,
  
 I have a Dev server which has multiple CF 8/ CF 7 instance's, and
 I'm
 in need to update the CF 8 instance's.
 I have downloaded the CF8 update 1 from adobe but it looks like
 it
 will do a ful linstall of CF8 instead of updating the current
 isntall,
 can anyone confirm on whether update 1 does a fresh install or
 update's existing files ? as I'm not eager to break the current CF
 8
 install.
  
 Regards,
 Mariano
  
   --
   E: [EMAIL PROTECTED]
   W:www.compoundtheory.com- Hide quoted text -
  
   - Show quoted text -
  
 

 --

 Sent from Gmail for mobile | mobile.google.com


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 clustering - adding new instance

2008-04-03 Thread George Lu
Thanks. I'll keep an eye on it when he starts posting.

On 03/04/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 Mike Brunt (Algad) is blogging about clustering and high availability.
 It should be a good read;


 http://www.alagad.com/go/blog-entry/high-availability-clustering-coldfusion

 Cheers.


 On Wed, Apr 2, 2008 at 1:11 PM, Kai Koenig [EMAIL PROTECTED] wrote:
 
  Hi Darren,
 
  you can easily setup a Windows service (or a *nix demon) for an
 individual
  JRUN instance and control it this way.
 
  http://www.bloginblack.de/archives/000295.cfm
 
  (Actually that's a post from before I started to post in English :-)
 
  Roughly the core content:
 
  ---
  ...
  bin/jrunsvc -install jrun_server service-name service-display service-
  description
 
  parameters:
 
  jrun_server: instance name
  service-name: service name
  service-display: service display name
  service-description: service description
  ...
  ---
 
  Cheers,
  Kai
 
  
  Kai Koenig
 
  Director  Software Solutions Architect
  Ventego Creative Ltd
 
  154 Parkvale Road, Karori
  Wellington, New Zealand
 
  Office: +64  4 476 6781
  Mobile: +64 21 928 365
 
  e-mail: [EMAIL PROTECTED]
  web: http://www.ventego-creative.co.nz
  blog: http://www.bloginblack.de
 
 
  If you have a JRUN setup with multiple JRUN containers on the one JRUN
  server, where is the setting that controls whether any individual
  container is automatically started up when the JRUN service fires up
  after a system reboot?
  I've got a collection of containers on several jrun servers, and most
  of the containers don't automatically start up after a system reboot,
  and need to be manually started. After a restart, its always the same
  containers that are running and the same containers that are stopped.
  I think there's an XML setting for this, but trawling through all the
  XML files manually has revealed nothing, and looking in the JRUN
  documentation and Google searching has also revealed nothing.
  
  Anyone have any ideas about this?
  
 
 
 
  
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 clustering - adding new instance

2008-03-31 Thread George Lu
I've installed CF8 by using the multiserver configuration.

On 31/03/2008, Steve Onnis [EMAIL PROTECTED] wrote:


 Stupid question

 Did you install it t use the Jrun server or another server?


 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf

 Of MrBuzzy
 Sent: Monday, 31 March 2008 2:21 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: CF8 clustering - adding new instance



 Correction;

 X:\Jrun4\servers\cfusion\cfusion-ear\cfusion-war\CFIDE

 Where X is your chosen path

 On Mon, Mar 31, 2008 at 2:18 PM, MrBuzzy [EMAIL PROTECTED] wrote:
  Ahh... that's a trap for players :)
 
  Because you chose IIS when you first installed, your CFIDE folder was
  placed elsewhere, probably here C:\inetpub\wwwroot\CFIDE
 
  You can copy the CFIDE folder to here;
 
  X:\Jrun4\bin\servers\cfusion\cfusion-ear\cfusion-war\CFIDE
 
  That should work, hopefully.
 
 
  On Mon, Mar 31, 2008 at 2:14 PM, George Lu [EMAIL PROTECTED] wrote:
   Hi MrBuzzy,
  
   If I use this url: http://yourserver:8300/CFIDE/Administrator/ I'll
   get a
   404 error:
   File not found: /CFIDE/administrator/index.cfm
   coldfusion.runtime.TemplateNotFoundException: File not found:
   /CFIDE/administrator/index.cfm
at coldfusion.filter.PathFilter.invoke(PathFilter.java:89)
at
   coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
  
at
   coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:
   74)
at
   coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePer
   sistenceFilter.java:28)  at
   coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
  
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at
   coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:175)
  
at
   coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:
   89)  at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at
   coldfusion.monitor.event.MonitoringServletFilter.doFilter(Monitoring
   ServletFilter.java:42)
  
at
   coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:4

   6)  at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)

at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
  
at
   jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
   jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java
   :284)
at
   jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java
   :543)
  
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at
   jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.
   java:428)  at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
  
  
  
  
   On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
The internal Jrun Web Server is usually enabled by default.
   
If your 'cfusion' instance is running, you can jump straight to
this url;
   
   
http://yourserver:8300/CFIDE/Administrator/
   
   
On Mon, Mar 31, 2008 at 12:29 PM, George Lu [EMAIL PROTECTED]
 wrote:
 Thanks and good afternoon :)

 So how can I run the JRun Web Server? JRun.exe?



 On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
 
  Mornin' :)
 
  You can still get to the Enterprise Manager by using the
  internal JRun Web Server.
 
  The default 'cfusion' instance is usually on port 8300. Ie:
  http://yourserver:8300/CFIDE/Administrator/
 
  HTH
 
 
  On Mon, Mar 31, 2008 at 9:36 AM, George Lu [EMAIL PROTECTED]
 wrote:
   MrBuzzy,
  
   I've got one question - if you disconnect cfusion from IIS
   after
 connecting
   the cluster to IIS how can you manage the cluster and
   instances
   using
   cfusion? I understand that you can't access the enterprise
   manager
   via
 the
   instance.
  
   Regards,
   George
  
  
  
   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
I'd say Pat is bang on the money.
   
George, when you installed CF, you probably chose an IIS
 configuration.
   
You'll need to run wsconfig.exe - use it to disconnect
cfusion
   from
IIS, then use the same tool to connect the cluster to IIS
(as Pat said).
   
L8r
   
   
On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley
[EMAIL PROTECTED]
 wrote:

  Hi George

  Every coldfusion instance regardless of if wether its
 in a
   cluster
 or
  not will have a HTTP port in the 8300 range. eg. 8300
 cfusion,
   8301
  instance1 and 8302 instance2. This is the port

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-30 Thread George Lu
MrBuzzy,

I've got one question - if you disconnect cfusion from IIS after connecting
the cluster to IIS how can you manage the cluster and instances using
cfusion? I understand that you can't access the enterprise manager via the
instance.

Regards,
George

On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 I'd say Pat is bang on the money.

 George, when you installed CF, you probably chose an IIS configuration.

 You'll need to run wsconfig.exe - use it to disconnect cfusion from
 IIS, then use the same tool to connect the cluster to IIS (as Pat
 said).

 L8r


 On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley [EMAIL PROTECTED] wrote:
 
   Hi George
 
   Every coldfusion instance regardless of if wether its in a cluster or
   not will have a HTTP port in the 8300 range. eg. 8300 cfusion, 8301
   instance1 and 8302 instance2. This is the port for the built in web
   server thats part of the coldfusion instance's libraries.
 
   when you create a cluster, you need a 3rd party web server like IIS or
   apache to connect to your CF cluster. In this scenario its actually
   the web server connector program (wsconfig) that connects to the
   cluster.
 
   I do not beleive you can make the built in web server of a cfusion
   instance serve up pages in a clustered manner they are hard-wired to
   serve up cf pages using their own instance.
 
   This is my understanding of the situation. I normally have my servers
   set up so the web server is visible outside the firewall and the the
   two 8300 range web servers are running on each instance behind the
   firewall. This set up lets me monitor if one of the two instances has
   gone down.
 
   hth
 
   pat
 
 
 
 
 
   On Mar 28, 4:45 pm, Andrew Scott [EMAIL PROTECTED] wrote:
George,
   
I am assuming as you really didn't say, and I am no expert at this so
 I am
guessing.
   
When you log into the cfide/administrator you can control the
 instances and
clustering in there, I assume this is what you are doing and not the
 jrun
management console!
   
When you create a new instance this will run from a different port,
 when you
cluster I strongly believe that it will share the port for the
 cluster
(this is the bit I am not sure on).
   
The clusters that you are trying to do, are they on the same VPS or
 machine?
Or are you creating other VPS / servers for this. I strongly
 recommend
multiple VPS or machines for clustering, but not critical for
 development
though.
   
There is also another mailing list on house of fusion that is
 dedicated to
Coldfusion Servers, it might pay to post on there as well. Sorry I am
 not
with it, I am only guessing as I have no real experience in
 clustering
Coldfusion as yet.
   
Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273
   
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
Of George Lu
Sent: Friday, 28 March 2008 4:28 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF8 clustering - adding new instance
   
What I try to say is I was intend to create a cluster for
 load-balancing and
fail over with default server cfusion. If I create a cluster with
 just
instance1 and instance2 which will have different http ports such as
 8301 Is
that mean I need to access my CF app via port 8301 not 80? e.g
 .http://servername:8301/
   
 
   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
Sorry mate, I'm not completely following you on that one...?
   
I think the answer is yes
   
   
   
 
   On Fri, Mar 28, 2008 at 3:42 PM, George Lu [EMAIL PROTECTED] wrote:
 Thank you MrBuzzy. So can I still do load balance and fail-over
 with
 instance1 and instance2 (cluster)? And can I still use cfusion as
 default
 server to access my CF pages?
   
 
On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
  Hi George,
   
  The 'cfusion' instance isn't seen in the Enterprise/Cluster
 Manager.
   
  You *might* be able to cluster cfusion and instance1 using the
 JRun
  Admin Console, but I wouldn't do it.
   
  Instead I'd recommend creating another instance (instance2) and
 then
  clustering that with instance1.
   
  The 'cfusion' instance is cloned to create other instances. So it
  might be a good idea to leave it in it's original state.
   
  Cheers.
   
 
 
 On Fri, Mar 28, 2008 at 2:57 PM, George Lu [EMAIL PROTECTED]
 wrote:
   Hi,
   
   I've just installed CF8 and want to utilise the multi-server
clustering
 on
   the same physical server. In CF Admin Instance Manager, I can
 see
there
 is a
   samples instance already there but I can't find the default
 instance
   cfusion. If I add a new instance (e.g. Instance1) I can add
 Instance1 to
   a cluster in the Cluster Manager. As I can't find cfusion
 instance

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-30 Thread George Lu
Thanks and good afternoon :)

So how can I run the JRun Web Server? JRun.exe?

On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 Mornin' :)

 You can still get to the Enterprise Manager by using the internal JRun
 Web Server.

 The default 'cfusion' instance is usually on port 8300. Ie:
 http://yourserver:8300/CFIDE/Administrator/

 HTH


 On Mon, Mar 31, 2008 at 9:36 AM, George Lu [EMAIL PROTECTED] wrote:
  MrBuzzy,
 
  I've got one question - if you disconnect cfusion from IIS after
 connecting
  the cluster to IIS how can you manage the cluster and instances using
  cfusion? I understand that you can't access the enterprise manager via
 the
  instance.
 
  Regards,
  George
 
 
 
  On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
  
   I'd say Pat is bang on the money.
  
   George, when you installed CF, you probably chose an IIS
 configuration.
  
   You'll need to run wsconfig.exe - use it to disconnect cfusion from
   IIS, then use the same tool to connect the cluster to IIS (as Pat
   said).
  
   L8r
  
  
   On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley [EMAIL PROTECTED]
 wrote:
   
 Hi George
   
 Every coldfusion instance regardless of if wether its in a cluster
 or
 not will have a HTTP port in the 8300 range. eg. 8300 cfusion, 8301
 instance1 and 8302 instance2. This is the port for the built in web
 server thats part of the coldfusion instance's libraries.
   
 when you create a cluster, you need a 3rd party web server like IIS
 or
 apache to connect to your CF cluster. In this scenario its actually
 the web server connector program (wsconfig) that connects to the
 cluster.
   
 I do not beleive you can make the built in web server of a cfusion
 instance serve up pages in a clustered manner they are hard-wired
 to
 serve up cf pages using their own instance.
   
 This is my understanding of the situation. I normally have my
 servers
 set up so the web server is visible outside the firewall and the
 the
 two 8300 range web servers are running on each instance behind the
 firewall. This set up lets me monitor if one of the two instances
 has
 gone down.
   
 hth
   
 pat
   
   
   
   
   
 On Mar 28, 4:45 pm, Andrew Scott [EMAIL PROTECTED]
 wrote:
  George,
 
  I am assuming as you really didn't say, and I am no expert at
 this so
  I am
  guessing.
 
  When you log into the cfide/administrator you can control the
  instances and
  clustering in there, I assume this is what you are doing and not
 the
  jrun
  management console!
 
  When you create a new instance this will run from a different
 port,
  when you
  cluster I strongly believe that it will share the port for the
  cluster
  (this is the bit I am not sure on).
 
  The clusters that you are trying to do, are they on the same VPS
 or
  machine?
  Or are you creating other VPS / servers for this. I strongly
  recommend
  multiple VPS or machines for clustering, but not critical for
  development
  though.
 
  There is also another mailing list on house of fusion that is
  dedicated to
  Coldfusion Servers, it might pay to post on there as well. Sorry
 I am
  not
  with it, I am only guessing as I have no real experience in
  clustering
  Coldfusion as yet.
 
  Andrew Scott
  Senior Coldfusion Developer
  Aegeon Pty. Ltd.www.aegeon.com.au
  Phone: +613  9015 8628
  Mobile: 0404 998 273
 
  From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
 On
  Behalf
  Of George Lu
  Sent: Friday, 28 March 2008 4:28 PM
  To: cfaussie@googlegroups.com
  Subject: [cfaussie] Re: CF8 clustering - adding new instance
 
  What I try to say is I was intend to create a cluster for
  load-balancing and
  fail over with default server cfusion. If I create a cluster with
  just
  instance1 and instance2 which will have different http ports such
 as
  8301 Is
  that mean I need to access my CF app via port 8301 not 80?
  e.g.http://servername:8301/
 
   
 On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
 
  Sorry mate, I'm not completely following you on that one...?
 
  I think the answer is yes
 
 
 
   
 On Fri, Mar 28, 2008 at 3:42 PM, George Lu [EMAIL PROTECTED]
 wrote:
   Thank you MrBuzzy. So can I still do load balance and fail-over
  with
   instance1 and instance2 (cluster)? And can I still use cfusion
 as
  default
   server to access my CF pages?
 
   
  On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
 
Hi George,
 
The 'cfusion' instance isn't seen in the Enterprise/Cluster
  Manager.
 
You *might* be able to cluster cfusion and instance1 using
 the
  JRun
Admin Console, but I wouldn't do it.
 
Instead I'd recommend creating another instance (instance2)
 and
  then
clustering

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-30 Thread George Lu
I think I've found it now - JRun Managemnet Console (http://127.0.0.1:8000).
Is it the one?

On 31/03/2008, George Lu [EMAIL PROTECTED] wrote:

 Thanks and good afternoon :)

 So how can I run the JRun Web Server? JRun.exe?

 On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
 
 
  Mornin' :)
 
  You can still get to the Enterprise Manager by using the internal JRun
  Web Server.
 
  The default 'cfusion' instance is usually on port 8300. Ie:
  http://yourserver:8300/CFIDE/Administrator/
 
  HTH
 
 
  On Mon, Mar 31, 2008 at 9:36 AM, George Lu [EMAIL PROTECTED] wrote:
   MrBuzzy,
  
   I've got one question - if you disconnect cfusion from IIS after
  connecting
   the cluster to IIS how can you manage the cluster and instances using
   cfusion? I understand that you can't access the enterprise manager via
  the
   instance.
  
   Regards,
   George
  
  
  
   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
I'd say Pat is bang on the money.
   
George, when you installed CF, you probably chose an IIS
  configuration.
   
You'll need to run wsconfig.exe - use it to disconnect cfusion from
IIS, then use the same tool to connect the cluster to IIS (as Pat
said).
   
L8r
   
   
On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley [EMAIL PROTECTED]
  wrote:

  Hi George

  Every coldfusion instance regardless of if wether its in a
  cluster or
  not will have a HTTP port in the 8300 range. eg. 8300 cfusion,
  8301
  instance1 and 8302 instance2. This is the port for the built in
  web
  server thats part of the coldfusion instance's libraries.

  when you create a cluster, you need a 3rd party web server like
  IIS or
  apache to connect to your CF cluster. In this scenario its
  actually
  the web server connector program (wsconfig) that connects to the
  cluster.

  I do not beleive you can make the built in web server of a
  cfusion
  instance serve up pages in a clustered manner they are hard-wired
  to
  serve up cf pages using their own instance.

  This is my understanding of the situation. I normally have my
  servers
  set up so the web server is visible outside the firewall and the
  the
  two 8300 range web servers are running on each instance behind
  the
  firewall. This set up lets me monitor if one of the two instances
  has
  gone down.

  hth

  pat





  On Mar 28, 4:45 pm, Andrew Scott [EMAIL PROTECTED]
  wrote:
   George,
  
   I am assuming as you really didn't say, and I am no expert at
  this so
   I am
   guessing.
  
   When you log into the cfide/administrator you can control the
   instances and
   clustering in there, I assume this is what you are doing and
  not the
   jrun
   management console!
  
   When you create a new instance this will run from a different
  port,
   when you
   cluster I strongly believe that it will share the port for the
   cluster
   (this is the bit I am not sure on).
  
   The clusters that you are trying to do, are they on the same
  VPS or
   machine?
   Or are you creating other VPS / servers for this. I strongly
   recommend
   multiple VPS or machines for clustering, but not critical for
   development
   though.
  
   There is also another mailing list on house of fusion that is
   dedicated to
   Coldfusion Servers, it might pay to post on there as well.
  Sorry I am
   not
   with it, I am only guessing as I have no real experience in
   clustering
   Coldfusion as yet.
  
   Andrew Scott
   Senior Coldfusion Developer
   Aegeon Pty. Ltd.www.aegeon.com.au
   Phone: +613  9015 8628
   Mobile: 0404 998 273
  
   From: cfaussie@googlegroups.com [mailto:
  [EMAIL PROTECTED] On
   Behalf
   Of George Lu
   Sent: Friday, 28 March 2008 4:28 PM
   To: cfaussie@googlegroups.com
   Subject: [cfaussie] Re: CF8 clustering - adding new instance
  
   What I try to say is I was intend to create a cluster for
   load-balancing and
   fail over with default server cfusion. If I create a cluster
  with
   just
   instance1 and instance2 which will have different http ports
  such as
   8301 Is
   that mean I need to access my CF app via port 8301 not 80?
   e.g.http://servername:8301/
  

  On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
  
   Sorry mate, I'm not completely following you on that one...?
  
   I think the answer is yes
  
  
  

  On Fri, Mar 28, 2008 at 3:42 PM, George Lu [EMAIL PROTECTED]
  wrote:
Thank you MrBuzzy. So can I still do load balance and
  fail-over
   with
instance1 and instance2 (cluster)? And can I still use
  cfusion as
   default
server to access my CF pages?
  

   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
  
 Hi

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-30 Thread George Lu
Hi MrBuzzy,

If I use this url: http://yourserver:8300/CFIDE/Administrator/ I'll get a
404 error:

File not found: /CFIDE/administrator/index.cfm

coldfusion.runtime.TemplateNotFoundException: File not found:
/CFIDE/administrator/index.cfm

at coldfusion.filter.PathFilter.invoke(PathFilter.java:89)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
at coldfusion.CfmServlet.service(CfmServlet.java:175)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at 
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at 
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:284)
at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)



On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 The internal Jrun Web Server is usually enabled by default.

 If your 'cfusion' instance is running, you can jump straight to this url;


 http://yourserver:8300/CFIDE/Administrator/


 On Mon, Mar 31, 2008 at 12:29 PM, George Lu [EMAIL PROTECTED] wrote:
  Thanks and good afternoon :)
 
  So how can I run the JRun Web Server? JRun.exe?
 
 
 
  On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
  
   Mornin' :)
  
   You can still get to the Enterprise Manager by using the internal JRun
   Web Server.
  
   The default 'cfusion' instance is usually on port 8300. Ie:
   http://yourserver:8300/CFIDE/Administrator/
  
   HTH
  
  
   On Mon, Mar 31, 2008 at 9:36 AM, George Lu [EMAIL PROTECTED] wrote:
MrBuzzy,
   
I've got one question - if you disconnect cfusion from IIS after
  connecting
the cluster to IIS how can you manage the cluster and instances
 using
cfusion? I understand that you can't access the enterprise manager
 via
  the
instance.
   
Regards,
George
   
   
   
On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:

 I'd say Pat is bang on the money.

 George, when you installed CF, you probably chose an IIS
  configuration.

 You'll need to run wsconfig.exe - use it to disconnect cfusion
 from
 IIS, then use the same tool to connect the cluster to IIS (as Pat
 said).

 L8r


 On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley [EMAIL PROTECTED]
  wrote:
 
   Hi George
 
   Every coldfusion instance regardless of if wether its in a
 cluster
  or
   not will have a HTTP port in the 8300 range. eg. 8300 cfusion,
 8301
   instance1 and 8302 instance2. This is the port for the built in
 web
   server thats part of the coldfusion instance's libraries.
 
   when you create a cluster, you need a 3rd party web server like
 IIS
  or
   apache to connect to your CF cluster. In this scenario its
 actually
   the web server connector program (wsconfig) that connects to
 the
   cluster.
 
   I do not beleive you can make the built in web server of a
 cfusion
   instance serve up pages in a clustered manner they are
 hard-wired
  to
   serve up cf pages using their own instance.
 
   This is my understanding of the situation. I normally have my
  servers
   set up so the web server is visible outside the firewall and
 the
  the
   two 8300 range web servers are running on each instance behind
 the
   firewall. This set up lets me monitor if one of the two
 instances
  has
   gone down.
 
   hth
 
   pat
 
 
 
 
 
   On Mar 28, 4:45 pm, Andrew Scott [EMAIL PROTECTED]
  wrote:
George,
   
I am assuming as you really didn't say, and I am no expert at
  this so
I am
guessing.
   
When you log into the cfide/administrator you can control the
instances and
clustering in there, I assume this is what

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-30 Thread George Lu
You are right! It's working now. Thank you!

Now I've added the cluster to IIS and removed 'cfusion' from IIS. What
should I do next? How can I test the load balancing and failover is working?

On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 Correction;

 X:\Jrun4\servers\cfusion\cfusion-ear\cfusion-war\CFIDE

 Where X is your chosen path


 On Mon, Mar 31, 2008 at 2:18 PM, MrBuzzy [EMAIL PROTECTED] wrote:
  Ahh... that's a trap for players :)
 
  Because you chose IIS when you first installed, your CFIDE folder was
  placed elsewhere, probably here C:\inetpub\wwwroot\CFIDE
 
  You can copy the CFIDE folder to here;
 
  X:\Jrun4\bin\servers\cfusion\cfusion-ear\cfusion-war\CFIDE
 
  That should work, hopefully.
 
 
  On Mon, Mar 31, 2008 at 2:14 PM, George Lu [EMAIL PROTECTED] wrote:
   Hi MrBuzzy,
  
   If I use this url: http://yourserver:8300/CFIDE/Administrator/ I'll
 get a
   404 error:
   File not found: /CFIDE/administrator/index.cfm
   coldfusion.runtime.TemplateNotFoundException: File not found:
   /CFIDE/administrator/index.cfm
at coldfusion.filter.PathFilter.invoke(PathFilter.java:89)
at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
  
at coldfusion.filter.BrowserDebugFilter.invoke(
 BrowserDebugFilter.java:74)
at
   coldfusion.filter.ClientScopePersistenceFilter.invoke(
 ClientScopePersistenceFilter.java:28)
at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
  
at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java
 :22)
at coldfusion.CfmServlet.service(CfmServlet.java:175)
  
at coldfusion.bootstrap.BootstrapServlet.service(
 BootstrapServlet.java:89)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
at
   coldfusion.monitor.event.MonitoringServletFilter.doFilter(
 MonitoringServletFilter.java:42)
  
at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java
 :46)
at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
at jrun.servlet.FilterChain.service(FilterChain.java:101)
at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
  
at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
at
   jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java
 :284)
at
   jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java
 :543)
  
at jrun.servlet.http.WebService.invokeRunnable(WebService.java:172)
at
   jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(
 ThreadPool.java:428)
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
  
  
  
  
   On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
The internal Jrun Web Server is usually enabled by default.
   
If your 'cfusion' instance is running, you can jump straight to this
 url;
   
   
http://yourserver:8300/CFIDE/Administrator/
   
   
On Mon, Mar 31, 2008 at 12:29 PM, George Lu [EMAIL PROTECTED]
 wrote:
 Thanks and good afternoon :)

 So how can I run the JRun Web Server? JRun.exe?



 On 31/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
 
  Mornin' :)
 
  You can still get to the Enterprise Manager by using the
 internal JRun
  Web Server.
 
  The default 'cfusion' instance is usually on port 8300. Ie:
  http://yourserver:8300/CFIDE/Administrator/
 
  HTH
 
 
  On Mon, Mar 31, 2008 at 9:36 AM, George Lu [EMAIL PROTECTED]
 wrote:
   MrBuzzy,
  
   I've got one question - if you disconnect cfusion from IIS
 after
 connecting
   the cluster to IIS how can you manage the cluster and
 instances
   using
   cfusion? I understand that you can't access the enterprise
 manager
   via
 the
   instance.
  
   Regards,
   George
  
  
  
   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
I'd say Pat is bang on the money.
   
George, when you installed CF, you probably chose an IIS
 configuration.
   
You'll need to run wsconfig.exe - use it to disconnect
 cfusion
   from
IIS, then use the same tool to connect the cluster to IIS
 (as Pat
said).
   
L8r
   
   
On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley 
 [EMAIL PROTECTED]
 wrote:

  Hi George

  Every coldfusion instance regardless of if wether its in
 a
   cluster
 or
  not will have a HTTP port in the 8300 range. eg. 8300
 cfusion,
   8301
  instance1 and 8302 instance2. This is the port for the
 built in
   web
  server thats part of the coldfusion instance's libraries.

  when you create a cluster, you need a 3rd party web
 server like
   IIS
 or
  apache to connect to your CF cluster. In this scenario
 its
   actually

[cfaussie] Re: CF8 clustering - adding new instance

2008-03-28 Thread George Lu
Thank you all of you helping me out :). Yes, I've chosen the IIS
configuration when I was installing CF8 multiserver.

As MrBuzzy suggested, I'll create a cluster contains instance1 and 2. Then
run wsconfig.exe to disconnect cfusion from IIS and connect the cluster to
IIS. I'll post the result here if it's successful :).

Regards,
George

On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 I'd say Pat is bang on the money.

 George, when you installed CF, you probably chose an IIS configuration.

 You'll need to run wsconfig.exe - use it to disconnect cfusion from
 IIS, then use the same tool to connect the cluster to IIS (as Pat
 said).

 L8r


 On Fri, Mar 28, 2008 at 6:26 PM, Pat Branley [EMAIL PROTECTED] wrote:
 
   Hi George
 
   Every coldfusion instance regardless of if wether its in a cluster or
   not will have a HTTP port in the 8300 range. eg. 8300 cfusion, 8301
   instance1 and 8302 instance2. This is the port for the built in web
   server thats part of the coldfusion instance's libraries.
 
   when you create a cluster, you need a 3rd party web server like IIS or
   apache to connect to your CF cluster. In this scenario its actually
   the web server connector program (wsconfig) that connects to the
   cluster.
 
   I do not beleive you can make the built in web server of a cfusion
   instance serve up pages in a clustered manner they are hard-wired to
   serve up cf pages using their own instance.
 
   This is my understanding of the situation. I normally have my servers
   set up so the web server is visible outside the firewall and the the
   two 8300 range web servers are running on each instance behind the
   firewall. This set up lets me monitor if one of the two instances has
   gone down.
 
   hth
 
   pat
 
 
 
 
 
   On Mar 28, 4:45 pm, Andrew Scott [EMAIL PROTECTED] wrote:
George,
   
I am assuming as you really didn't say, and I am no expert at this so
 I am
guessing.
   
When you log into the cfide/administrator you can control the
 instances and
clustering in there, I assume this is what you are doing and not the
 jrun
management console!
   
When you create a new instance this will run from a different port,
 when you
cluster I strongly believe that it will share the port for the
 cluster
(this is the bit I am not sure on).
   
The clusters that you are trying to do, are they on the same VPS or
 machine?
Or are you creating other VPS / servers for this. I strongly
 recommend
multiple VPS or machines for clustering, but not critical for
 development
though.
   
There is also another mailing list on house of fusion that is
 dedicated to
Coldfusion Servers, it might pay to post on there as well. Sorry I am
 not
with it, I am only guessing as I have no real experience in
 clustering
Coldfusion as yet.
   
Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.www.aegeon.com.au
Phone: +613  9015 8628
Mobile: 0404 998 273
   
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
Of George Lu
Sent: Friday, 28 March 2008 4:28 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF8 clustering - adding new instance
   
What I try to say is I was intend to create a cluster for
 load-balancing and
fail over with default server cfusion. If I create a cluster with
 just
instance1 and instance2 which will have different http ports such as
 8301 Is
that mean I need to access my CF app via port 8301 not 80? e.g
 .http://servername:8301/
   
 
   On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
Sorry mate, I'm not completely following you on that one...?
   
I think the answer is yes
   
   
   
 
   On Fri, Mar 28, 2008 at 3:42 PM, George Lu [EMAIL PROTECTED] wrote:
 Thank you MrBuzzy. So can I still do load balance and fail-over
 with
 instance1 and instance2 (cluster)? And can I still use cfusion as
 default
 server to access my CF pages?
   
 
On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
   
  Hi George,
   
  The 'cfusion' instance isn't seen in the Enterprise/Cluster
 Manager.
   
  You *might* be able to cluster cfusion and instance1 using the
 JRun
  Admin Console, but I wouldn't do it.
   
  Instead I'd recommend creating another instance (instance2) and
 then
  clustering that with instance1.
   
  The 'cfusion' instance is cloned to create other instances. So it
  might be a good idea to leave it in it's original state.
   
  Cheers.
   
 
 
 On Fri, Mar 28, 2008 at 2:57 PM, George Lu [EMAIL PROTECTED]
 wrote:
   Hi,
   
   I've just installed CF8 and want to utilise the multi-server
clustering
 on
   the same physical server. In CF Admin Instance Manager, I can
 see
there
 is a
   samples instance already there but I can't find the default
 instance
   cfusion. If I add a new instance (e.g. Instance1) I can add
 Instance1

[cfaussie] CF8 clustering - adding new instance

2008-03-27 Thread George Lu
Hi,

I've just installed CF8 and want to utilise the multi-server clustering on
the same physical server. In CF Admin Instance Manager, I can see there is a
samples instance already there but I can't find the default instance
cfusion. If I add a new instance (e.g. Instance1) I can add Instance1 to
a cluster in the Cluster Manager. As I can't find cfusion instance in the
Cluster Manager, how can I add cfusion to the cluster which already have
Instance1 in it?

Please help.

Regards,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 clustering - adding new instance

2008-03-27 Thread George Lu
Thank you MrBuzzy. So can I still do load balance and fail-over with
instance1 and instance2 (cluster)? And can I still use cfusion as default
server to access my CF pages?

On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 Hi George,

 The 'cfusion' instance isn't seen in the Enterprise/Cluster Manager.

 You *might* be able to cluster cfusion and instance1 using the JRun
 Admin Console, but I wouldn't do it.

 Instead I'd recommend creating another instance (instance2) and then
 clustering that with instance1.

 The 'cfusion' instance is cloned to create other instances. So it
 might be a good idea to leave it in it's original state.

 Cheers.


 On Fri, Mar 28, 2008 at 2:57 PM, George Lu [EMAIL PROTECTED] wrote:
  Hi,
 
  I've just installed CF8 and want to utilise the multi-server clustering
 on
  the same physical server. In CF Admin Instance Manager, I can see there
 is a
  samples instance already there but I can't find the default instance
  cfusion. If I add a new instance (e.g. Instance1) I can add
 Instance1 to
  a cluster in the Cluster Manager. As I can't find cfusion instance in
 the
  Cluster Manager, how can I add cfusion to the cluster which already
 have
  Instance1 in it?
 
  Please help.
 
  Regards,
  George
 
  
 


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CF8 clustering - adding new instance

2008-03-27 Thread George Lu
What I try to say is I was intend to create a cluster for load-balancing and
fail over with default server cfusion. If I create a cluster with just
instance1 and instance2 which will have different http ports such as 8301 Is
that mean I need to access my CF app via port 8301 not 80? e.g.
http://servername:8301/

On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 Sorry mate, I'm not completely following you on that one...?

 I think the answer is yes


 On Fri, Mar 28, 2008 at 3:42 PM, George Lu [EMAIL PROTECTED] wrote:
  Thank you MrBuzzy. So can I still do load balance and fail-over with
  instance1 and instance2 (cluster)? And can I still use cfusion as
 default
  server to access my CF pages?
 
 
 
  On 28/03/2008, MrBuzzy [EMAIL PROTECTED] wrote:
  
   Hi George,
  
   The 'cfusion' instance isn't seen in the Enterprise/Cluster Manager.
  
   You *might* be able to cluster cfusion and instance1 using the JRun
   Admin Console, but I wouldn't do it.
  
   Instead I'd recommend creating another instance (instance2) and then
   clustering that with instance1.
  
   The 'cfusion' instance is cloned to create other instances. So it
   might be a good idea to leave it in it's original state.
  
   Cheers.
  
  
   On Fri, Mar 28, 2008 at 2:57 PM, George Lu [EMAIL PROTECTED] wrote:
Hi,
   
I've just installed CF8 and want to utilise the multi-server
 clustering
  on
the same physical server. In CF Admin Instance Manager, I can see
 there
  is a
samples instance already there but I can't find the default
 instance
cfusion. If I add a new instance (e.g. Instance1) I can add
  Instance1 to
a cluster in the Cluster Manager. As I can't find cfusion instance
 in
  the
Cluster Manager, how can I add cfusion to the cluster which
 already
  have
Instance1 in it?
   
Please help.
   
Regards,
George
   

   
  
  
  
 
 
  
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Melbourne CFUG - What do you want to hear this year?

2008-02-05 Thread George Lu
Hi Mark,

Unfortunately, I won't be able to come to any meetings at least before
Jun/July this year as I need to pick up my son at after school care between
5:30pm and 6:30pm. The time to take me from my place to the meeting place
will be 40 mins or more.

If I come to the meeting I'd like to hear more about the Flex  CF
integration or CF  Exchange Server integration.

George

On 04/02/2008, Mark Mandel [EMAIL PROTECTED] wrote:

 Hey guys,

 I wanted to do a quick shout out to hear what sort of topics you guys
 would be interested in hearing about this year?

 I have some ideas, but I thought I would put it out there first to see
 what other people are looking for.

 If you live in Melbourne, and you don't come to a CFUG meeting, let us
 know why not, and what we can do to help you get your way here.  We're
 always looking for new people.

 Also, we're never going to turn down presenters, so if you have a topic
 you want to present on (often a great way to warm up if you're presenting at
 a conference), please let me know!

 Hopefully we can get some good suggestions, and make this year an
 interesting one for everyone involved! :oD

 Mark

 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Move Scheduled Tasks

2008-01-15 Thread George Lu
Thank you MrBuzzy. I think I may have to re-create it one by one ... I
thought I could just copy CFIDE folder over ;)

Anyway, I've got a tough day today and I'll go to Tasmania tomorrow for a
few days.

On 15/01/2008, MrBuzzy [EMAIL PROTECTED] wrote:


 If you can't access cfadmin it could get tricky. Could you use
 cfschedule to re create  the jobs on the new server?

 On 1/15/08, George Lu [EMAIL PROTECTED] wrote:
  Thank you Taco. Since I can't access admin of the original CF
 installation
  (CFMX 7 stand-alone), this may not work for me. I've just installed
 another
  instance of cf on jrun. However, it imported all settings from a very
 early
  setting. I'm not sure how to restore from the original setting to the
 newly
  installed CF (on Jrun).
 
  On 15/01/2008, Taco Fleur [EMAIL PROTECTED] wrote:
  
   How about creating an Archive?
   Under CF admin  Packaging  Deployment.
  
   It should create a package that allows you to move everything from one
   server to the next. It's pretty cool.
  
  
   On 1/15/08, George Lu [EMAIL PROTECTED] wrote:
   
How do I transfer Scheduled tasks from one CF server to another CF
server (CFMX 7 Ent)?
www.clickfind.com.au
blog: http://australian-search-engine.blogspot.com/
 
   
 
  
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
Hi All,

One of the hard disks in my intranet web server (with CFMX7 installed) has
got bad sectors. After I've repaired it I found out one of NICs was failed.
Then I changed to another NIC. The server is started ok but I could not
start the CF Application Server. Here is the error code from
coldfusion-out.log:

Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 09:49:38 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 09:53:12 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:03:32 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:13:58 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:27:00 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:30:55 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:36:12 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:53:28 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)
Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
Installing a self generated sessionSecret.
15/01 10:54:43 info No JDBC data sources have been configured for this
server (see jrun-resources.xml)

Could anyone please help? It looks like all data sources have gone.

Thanks,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Tuesday, 15 January 2008 11:05 AM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] ColdFusion MX 7 Application Sever could not start

 Hi All,

 One of the hard disks in my intranet web server (with CFMX7 installed) has
 got bad sectors. After I've repaired it I found out one of NICs was failed.
 Then I changed to another NIC. The server is started ok but I could not
 start the CF Application Server. Here is the error code from
 coldfusion-out.log:

 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:49:38 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:53:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:03:32 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:13:58 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:27:00 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:30:55 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:36:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:53:28 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:54:43 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)

 Could anyone please help? It looks like all data sources have gone.

 Thanks,
 George
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
I've tried to start CF by using runtime\bin\jrun -start coldfusion. It
doesn't show it's started in services.

On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:


 You would find the messages below during start up of ColdFusion also
 with a working CF installation, I wouldn't worry about those
 specifically.

 I'm more wondering if the output you've quoted below is the complete
 content of the logfile or if you're getting some more stuff?

 Try to start you CF Server from the command line, go into your
 jrun bin folder  and do a jrun -start coldfusion .

 Cheers
 Kai

 One of the hard disks in my intranet web server (with CFMX7 installed)
 has got bad sectors. After I've repaired it I found out one of NICs was
 failed. Then I changed to another NIC. The server is started ok but I
 could not start the CF Application Server. Here is the error code from
 coldfusion-out.log:
 
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:49:38 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:53:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:03:32 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:13:58 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:27:00 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:30:55 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:36:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:53:28 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:54:43 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 
 Could anyone please help? It looks like all data sources have gone.
 
 Thanks,
 George
 

 
 Kai Koenig

 Director  Software Solutions Architect
 Ventego Creative Ltd

 154 Parkvale Road, Karori
 Wellington, New Zealand

 Office: +64  4 476 6781
 Mobile: +64 21 928 365

 e-mail: [EMAIL PROTECTED]

 web: http://www.ventego-creative.co.nz
 blog: http://www.bloginblack.de




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
Hi Kai,

There are heaps of log in the out log. I've just quoted those logged in
today. I've also got some strange messages in the log:

01/14 17:56:12 Information [scheduler-4] - Run Client Storage Purge
01/14 19:03:12 Information [scheduler-6] - Run Client Storage Purge
01/14 20:10:13 Information [scheduler-7] - Run Client Storage Purge
01/14 21:17:13 Information [scheduler-6] - Run Client Storage Purge

As my server was down at about 9:30pm, that could indicate some kind of
problem?

Where can I find the jrun folder?

On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:


 You would find the messages below during start up of ColdFusion also
 with a working CF installation, I wouldn't worry about those
 specifically.

 I'm more wondering if the output you've quoted below is the complete
 content of the logfile or if you're getting some more stuff?

 Try to start you CF Server from the command line, go into your
 jrun bin folder  and do a jrun -start coldfusion .

 Cheers
 Kai

 One of the hard disks in my intranet web server (with CFMX7 installed)
 has got bad sectors. After I've repaired it I found out one of NICs was
 failed. Then I changed to another NIC. The server is started ok but I
 could not start the CF Application Server. Here is the error code from
 coldfusion-out.log:
 
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:49:38 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:53:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:03:32 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:13:58 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:27:00 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:30:55 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:36:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:53:28 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:54:43 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 
 Could anyone please help? It looks like all data sources have gone.
 
 Thanks,
 George
 

 
 Kai Koenig

 Director  Software Solutions Architect
 Ventego Creative Ltd

 154 Parkvale Road, Karori
 Wellington, New Zealand

 Office: +64  4 476 6781
 Mobile: +64 21 928 365

 e-mail: [EMAIL PROTECTED]

 web: http://www.ventego-creative.co.nz
 blog: http://www.bloginblack.de




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
Thanks Kai. It's a CF 7 Ent stand-alone installation.

On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:


 Also, those log message are not of any concern in regards to your
 server not starting up.

 Which installation are you having, CF 7 stand-alone or CF on
 JRun 4? If the first, it would be somewhere in c:/cfusionmx7/bin or
 similar (could someone who runs stand-alone jump in here please :)
 if the latter, you're looking for c:/jrun4/bin

 - always assuming you've done a standard install on windows.

 Cheers,
 Kai

 There are heaps of log in the out log. I've just quoted those logged in
 today. I've also got some strange messages in the log:
 
 01/14 17:56:12 Information [scheduler-4] - Run Client Storage Purge
 01/14 19:03:12 Information [scheduler-6] - Run Client Storage Purge
 01/14 20:10:13 Information [scheduler-7] - Run Client Storage Purge
 01/14 21:17:13 Information [scheduler-6] - Run Client Storage Purge
 
 As my server was down at about 9:30pm, that could indicate some kind of
 problem?
 
 Where can I find the jrun folder?
 
 On 15/01/2008, Kai Koenig  [EMAIL PROTECTED] wrote:
 
 You would find the messages below during start up of ColdFusion also
 with a working CF installation, I wouldn't worry about those
 specifically.
 
 I'm more wondering if the output you've quoted below is the complete
 content of the logfile or if you're getting some more stuff?
 
 Try to start you CF Server from the command line, go into your
 jrun bin folderand do a jrun -start coldfusion .
 
 Cheers
 Kai
 
 One of the hard disks in my intranet web server (with CFMX7 installed)
 has got bad sectors. After I've repaired it I found out one of NICs was
 failed. Then I changed to another NIC. The server is started ok but I
 could not start the CF Application Server. Here is the error code from
 coldfusion-out.log:
 
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:49:38 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:53:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:03:32 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:13:58 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:27:00 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:30:55 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:36:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:53:28 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:54:43 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 
 Could anyone please help? It looks like all data sources have gone.
 
 Thanks,
 George
 



 
 Kai Koenig

 Director  Software Solutions Architect
 Ventego Creative Ltd

 154 Parkvale Road, Karori
 Wellington, New Zealand

 Office: +64  4 476 6781
 Mobile: +64 21 928 365

 e-mail: [EMAIL PROTECTED]

 web: http://www.ventego-creative.co.nz
 blog: http://www.bloginblack.de




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this 

[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
I've just done this but it doesn't capture all output (see attached).

At the mean time, I'll transfer all necessary data across to another server.
I've copied all cf pages and docs; copied data sources (neo-query.xml). How
can I transfer verity collections (just copy over everything under
collections folder?) and schedules?

Thanks for your help!

On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:


 pipe it into a text file ( jrun.  myoutput.txt )

 Kai


 As it run at DOS window, how can I capture all output? What I can do is
 printScreen - see attached.
 
 On 15/01/2008, Kai Koenig  [EMAIL PROTECTED] wrote:
 
 Ok, that's fine - but you should have seen plenty of output in
 your command window when running the command. Could you post
 that complete output?
 
 Kai
 
 I've tried to start CF by using runtime\bin\jrun -start coldfusion. It
 doesn't show it's started in services.
 
 On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:
 
 You would find the messages below during start up of ColdFusion also
 with a working CF installation, I wouldn't worry about those
 specifically.
 
 I'm more wondering if the output you've quoted below is the complete
 content of the logfile or if you're getting some more stuff?
 
 Try to start you CF Server from the command line, go into your
 jrun bin folderand do a jrun -start coldfusion .
 
 Cheers
 Kai
 
 One of the hard disks in my intranet web server (with CFMX7 installed)
 has got bad sectors. After I've repaired it I found out one of NICs was
 failed. Then I changed to another NIC. The server is started ok but I
 could not start the CF Application Server. Here is the error code from
 coldfusion-out.log:
 
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:49:37 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:49:38 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 09:53:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 09:53:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:03:32 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:03:32 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:13:57 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:13:58 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:27:00 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:27:00 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:30:55 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:30:55 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:36:11 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:36:12 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:53:27 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:53:28 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
 15/01 10:54:43 warning No sessionSecret has been specified in jrun.xml.
 Installing a self generated sessionSecret.
 15/01 10:54:43 info No JDBC data sources have been configured for this
 server (see jrun-resources.xml)
 
 Could anyone please help? It looks like all data sources have gone.
 
 Thanks,
 George
 
 
 
 Kai Koenig
 
 Director  Software Solutions Architect
 Ventego Creative Ltd
 
 154 Parkvale Road, Karori
 Wellington, New Zealand
 
 Office: +644 476 6781
 Mobile: +64 21 928 365
 
 e-mail: [EMAIL PROTECTED]
 
 web: http://www.ventego-creative.co.nz
 blog: http://www.bloginblack.de
 
 
 
 
 
 
 
 
 
 
 


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group 

[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
Oops! Forgot to attach the txt file.

On 15/01/2008, George Lu [EMAIL PROTECTED] wrote:

 I've just done this but it doesn't capture all output (see attached).

 At the mean time, I'll transfer all necessary data across to another
 server. I've copied all cf pages and docs; copied data sources (
 neo-query.xml). How can I transfer verity collections (just copy over
 everything under collections folder?) and schedules?

 Thanks for your help!

 On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:
 
 
  pipe it into a text file ( jrun.  myoutput.txt )
 
  Kai
 
 
  As it run at DOS window, how can I capture all output? What I can do is
  printScreen - see attached.
  
  On 15/01/2008, Kai Koenig  [EMAIL PROTECTED] wrote:
  
  Ok, that's fine - but you should have seen plenty of output in
  your command window when running the command. Could you post
  that complete output?
  
  Kai
  
  I've tried to start CF by using runtime\bin\jrun -start coldfusion. It
  doesn't show it's started in services.
  
  On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:
  
  You would find the messages below during start up of ColdFusion also
  with a working CF installation, I wouldn't worry about those
  specifically.
  
  I'm more wondering if the output you've quoted below is the complete
  content of the logfile or if you're getting some more stuff?
  
  Try to start you CF Server from the command line, go into your
  jrun bin folderand do a jrun -start coldfusion .
  
  Cheers
  Kai
  
  One of the hard disks in my intranet web server (with CFMX7
  installed)
  has got bad sectors. After I've repaired it I found out one of NICs
  was
  failed. Then I changed to another NIC. The server is started ok but I
  could not start the CF Application Server. Here is the error code
  from
  coldfusion-out.log:
  
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 09:49:37 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 09:49:38 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 09:53:11 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 09:53:12 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:03:32 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:03:32 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:13:57 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:13:58 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:27:00 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:27:00 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:30:55 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:30:55 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:36:11 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:36:12 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:53:27 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:53:28 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
  15/01 10:54:43 warning No sessionSecret has been specified in
  jrun.xml.
  Installing a self generated sessionSecret.
  15/01 10:54:43 info No JDBC data sources have been configured for
  this
  server (see jrun-resources.xml)
  
  Could anyone please help? It looks like all data sources have gone.
  
  Thanks,
  George
  
  
  
  Kai Koenig
  
  Director  Software Solutions Architect
  Ventego Creative Ltd
  
  154 Parkvale Road, Karori
  Wellington, New Zealand
  
  Office: +644 476 6781
  Mobile: +64 21 928 365
  
  e-mail: [EMAIL PROTECTED]
  
  web: http://www.ventego-creative.co.nz
  blog: http://www.bloginblack.de

[cfaussie] Re: ColdFusion MX 7 Application Sever could not start

2008-01-14 Thread George Lu
I've installed CF 7 on Jrun. So it's back to working now but my db sources
are from very old settings. How can I find neo-query.xml from jrun folder?

On 15/01/2008, George Lu [EMAIL PROTECTED] wrote:

 Oops! Forgot to attach the txt file.

 On 15/01/2008, George Lu [EMAIL PROTECTED] wrote:
 
  I've just done this but it doesn't capture all output (see attached).
 
  At the mean time, I'll transfer all necessary data across to another
  server. I've copied all cf pages and docs; copied data sources (
  neo-query.xml). How can I transfer verity collections (just copy over
  everything under collections folder?) and schedules?
 
  Thanks for your help!
 
  On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:
  
  
   pipe it into a text file ( jrun.  myoutput.txt )
  
   Kai
  
  
   As it run at DOS window, how can I capture all output? What I can do
   is
   printScreen - see attached.
   
   On 15/01/2008, Kai Koenig  [EMAIL PROTECTED] wrote:
   
   Ok, that's fine - but you should have seen plenty of output in
   your command window when running the command. Could you post
   that complete output?
   
   Kai
   
   I've tried to start CF by using runtime\bin\jrun -start coldfusion.
   It
   doesn't show it's started in services.
   
   On 15/01/2008, Kai Koenig [EMAIL PROTECTED] wrote:
   
   You would find the messages below during start up of ColdFusion also
  
   with a working CF installation, I wouldn't worry about those
   specifically.
   
   I'm more wondering if the output you've quoted below is the complete
   content of the logfile or if you're getting some more stuff?
   
   Try to start you CF Server from the command line, go into your
   jrun bin folderand do a jrun -start coldfusion .
   
   Cheers
   Kai
   
   One of the hard disks in my intranet web server (with CFMX7
   installed)
   has got bad sectors. After I've repaired it I found out one of NICs
   was
   failed. Then I changed to another NIC. The server is started ok but
   I
   could not start the CF Application Server. Here is the error code
   from
   coldfusion-out.log:
   
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 09:49:37 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 09:49:38 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 09:53:11 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 09:53:12 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:03:32 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:03:32 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:13:57 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:13:58 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:27:00 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:27:00 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:30:55 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:30:55 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:36:11 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:36:12 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:53:27 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:53:28 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   Starting Macromedia JRun 4.0 (Build 92909), coldfusion server
   15/01 10:54:43 warning No sessionSecret has been specified in
   jrun.xml.
   Installing a self generated sessionSecret.
   15/01 10:54:43 info No JDBC data sources have been configured for
   this
   server (see jrun-resources.xml)
   
   Could anyone please help? It looks like all data sources have gone.
   
   Thanks,
   George
   
   
   
   Kai Koenig
   
   Director  Software

[cfaussie] Re: Move Scheduled Tasks

2008-01-14 Thread George Lu
Thank you Taco. Since I can't access admin of the original CF installation
(CFMX 7 stand-alone), this may not work for me. I've just installed another
instance of cf on jrun. However, it imported all settings from a very early
setting. I'm not sure how to restore from the original setting to the newly
installed CF (on Jrun).

On 15/01/2008, Taco Fleur [EMAIL PROTECTED] wrote:

 How about creating an Archive?
 Under CF admin  Packaging  Deployment.

 It should create a package that allows you to move everything from one
 server to the next. It's pretty cool.


 On 1/15/08, George Lu [EMAIL PROTECTED] wrote:
 
  How do I transfer Scheduled tasks from one CF server to another CF
  server (CFMX 7 Ent)?
  www.clickfind.com.au
  blog: http://australian-search-engine.blogspot.com/
   
 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Melbourne CFUG Tomorrow night - Are you coming?

2007-12-18 Thread George Lu
Hi Mark,

I'd like to come.

Cheers,
George

On 19/12/2007, Mark Mandel [EMAIL PROTECTED] wrote:


 All,

 I've only received one RSVP for tomorrow night's CFUG meeting in
 Melbourne.

 If you are planning on attending, please email me, as we are
 considering cancelling the night.

 Cheers,

 Mark

 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Melbourne CFUG Tomorrow night - Are you coming?

2007-12-18 Thread George Lu
Sorry Mark. It's my wording problem. I should say - I'll come if the meeting
is not canceled.

On 19/12/2007, Mark Mandel [EMAIL PROTECTED] wrote:


 George,

 Does that mean.. you are coming.. or you aren't? ;)

 That was dreadfully cryptic.

 Mark

 On Dec 19, 2007 10:46 AM, George Lu [EMAIL PROTECTED] wrote:
  Hi Mark,
 
  I'd like to come.
 
  Cheers,
  George
 
 
 
  On 19/12/2007, Mark Mandel [EMAIL PROTECTED]  wrote:
  
   All,
  
   I've only received one RSVP for tomorrow night's CFUG meeting in
  Melbourne.
  
   If you are planning on attending, please email me, as we are
   considering cancelling the night.
  
   Cheers,
  
   Mark
  
   --
   E: [EMAIL PROTECTED]
   W: www.compoundtheory.com
  
  
 
 
   
 



 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFCAMP Melbourne Wrapup

2007-11-22 Thread George Lu
Thank you everyone who organised this great event. I was very enjoy it :).

My management wants to move our IT environment to Microsoft platform. I'll
convince my manager ColdFusion is still a decent and edge technology.

PS. I'm still waiting for CF8 (we have subscribed)

On 23/11/2007, Matthew [EMAIL PROTECTED] wrote:


 Thanks to all those involved in organising CFCAMP in Melbourne
 yesterday. I could only spare time to come to 3 of the sessions and
 found them all very informative! I'm sure a lot of work goes into
 organising an event like this, as well as speakers sacrificing their
 own time to prepare and give and talk. I'm inspired to talk my boss
 into getting CF8 ASAP!
 Cheers
 Matthew

 On Nov 23, 8:45 am, silverbeetle [EMAIL PROTECTED] wrote:
  This was the first Melbourne CF event that I've attended and i must
  say i really enjoyed the day.
 
  Can't talk long right now but i just wanted to say a big thanks to all
  those involved for making this day happen and of course the fantastic
  presenters. And thanks to the people i did get to speak to for being
  very welcoming and friendly.
 
  Looking forward to future CF events and making my way (finally) to
  some user group meetings!
 
  Cheers
 
  Chris Silwedel
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Role call: CFCAMP Melbourne

2007-11-21 Thread George Lu
I'll come :)

On 21/11/2007, KC Kuok [EMAIL PROTECTED] wrote:


 Me and my colleague so thats 7 and 8... I believe we have enough to
 fill up the front row now!

 On Nov 21, 3:27 pm, Mark Mandel [EMAIL PROTECTED] wrote:
  Heh!
 
  Registrations for the event look really good, so there should be a bit
  more of a turn out than 4.  I mean Geoff, and Robin will be there too!
  That's at least 6! :oD
 
  Mark
 
  On Nov 21, 2007 3:25 PM, Toby Tremayne [EMAIL PROTECTED] wrote:
 
 
 
   Excellent, so - four and maybe Dale.  Should rock! ;)
 
   On 11/21/07, silverbeetle [EMAIL PROTECTED]  wrote:
 
I'll be there - my first coldfusion related event since moving to
melbourne, looking forward to it.
 
Cheers
 
Chris Silwedel
 
  --
  E: [EMAIL PROTECTED]
  W:www.compoundtheory.com
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Adobe Refresh

2007-11-01 Thread George Lu
I was there :)

On 01/11/2007, MrBuzzy [EMAIL PROTECTED] wrote:

 So... who went? I was there, saw some cool stuff.

 Nothing about CF but that was expected. CFCAMP just around the corner.

 On 10/16/07, Dale Fraser [EMAIL PROTECTED] wrote:
 
   In Melbourne  Sydney in case you haven't seen this.
 
 
 
  http://events.adobe 
  .co.uk/events/cgi/event.cgi?eventid=5999country=pahttp://events.adobe.co.uk/events/cgi/event.cgi?eventid=5999country=pa
 
 
 
  Regards
 
  Dale Fraser
 
 
 
  http://learncf.com
 
 
 
 
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Adobe Refresh 07 - Melbourne and Sydney

2007-10-02 Thread George Lu
I've already registered.

On 02/10/2007, Mark Mandel [EMAIL PROTECTED] wrote:


 I'm trying to get more information than what is being presented on
 Adobe Refresh, and by who - I'll let everyone know if I find anything
 out.

 Mark

 On 10/2/07, KC Kuok [EMAIL PROTECTED] wrote:
 
  Just got this off geekglue.blogspot.com (I met Bill at one of the MUG
  meetings)
 
  http://geekglue.blogspot.com/2007/10/adobe-refresh.html
 
  in his comical words Adobe Refresh is kind of like a MAX debrief for
  us poor suckers who couldn't go.
 
  :) doesn't seem to be a monetary cost involved... so better register
  asap folks!
 
 
  
 


 --
 E: [EMAIL PROTECTED]
 W: www.compoundtheory.com

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Get ColdFusion 8 Standard Free!

2007-09-09 Thread George Lu
Hi Dale,

Is it possible to have a tutorial on how to convert Flash Forms into Flex2?

Regards,
George

On 10/09/2007, Dale Fraser [EMAIL PROTECTED] wrote:


 That's probably a good idea, I'll look into it.


 Regards
 Dale Fraser

 http://dalefraser.blogspot.com

 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Brett Payne-Rhodes
 Sent: Monday, 10 September 2007 12:16 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Get ColdFusion 8 Standard Free!


 Hi Dale,

 Good effort!

 Any thoughts of creating a 'wish list' of topics for tutorials? It might
 help a few of us with little imagination decide to involved...

 Cheers,

 Brett
 B)



 Dale Fraser wrote:
  SPECIAL ANNOUNCMENT!
 
  Contributing to learncf.com is now rewarding, not only do you get to
  assist the community with your tutorials, you now can be rewarded for
  your efforts. Every tutorial published before 31st December 2007 will
  get one ticket in a prize draw.
 
  1st Prize - ColdFusion 8 Standard
  2nd Prize - ColdFusion 8 Printed Documentation
  3rd Prize - ColdFusion 8 Merchandise
 
  NOTE: learncf.com and Adobe staff are not eligible.
 
  See The Contribute Page http://learncf.com/contribute.cfm to find out
  how easy it is to submit a tutorial.
 
  Regards
 
  Dale Fraser
 
 
  



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Application object

2007-06-06 Thread George Lu
Hi,

I create an object in Application.cfc and put it in the application scope.
When I use it in other pages it comes up this error:
Element SURVEYDAO is undefined in a Java object of type class [
Ljava.lang.String; referenced as
The object in application.cfc:
cffunction name=OnApplicationStart
cfset Application.surveyDAO = createObject(component,
variables.componentPath  .components.surveyDAO).init(variables.dsn) /
cfset Application.hrSurveyObj = CreateObject(component,
CFC.DataMgr).init(HR,MSSQL) /
/cffunction

The code causing the error:
cfset Application.surveyDAO.delete(url.userID) /

Please help!

George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Yes. So I have to put the object in onRequestStart or top of the page to
init?

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 had the application already been run before you added the create object?
 If so, you will need to restart the application (or bounce the CF service)
 so the OnApplicationStart function gets executed

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Hi,
 
  I create an object in Application.cfc and put it in the application
  scope. When I use it in other pages it comes up this error:
   Element SURVEYDAO is undefined in a Java object of type class [
  Ljava.lang.String; referenced as
  The object in application.cfc:
  cffunction name=OnApplicationStart
  cfset Application.surveyDAO = createObject(component,
  variables.componentPath  .components.surveyDAO).init(variables.dsn)
  /
  cfset Application.hrSurveyObj = CreateObject(component,
  CFC.DataMgr).init(HR,MSSQL) /
  /cffunction
 
  The code causing the error:
  cfset Application.surveyDAO.delete(url.userID) /
 
  Please help!
 
  George
 
 
 
 


 --
 If you are not living on the edge,
 You are taking up too much space.
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Dale,

I put the application scope on top of the page then it works. Maybe I should
do it as Andrew suggested. Thanks everyone.

On 07/06/07, Dale Fraser [EMAIL PROTECTED] wrote:

  Are you sure it got created.



 Possibly added the OnApplicationStart code after the app was already
 started.



 Dump the Application scope and see of the surveyDAO exists in it.



 Regards

 Dale Fraser



 http://dalefraser.blogspot.com



 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Thursday, 7 June 2007 12:32 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] Application object



 Hi,

 I create an object in Application.cfc and put it in the application scope.
 When I use it in other pages it comes up this error:

  Element SURVEYDAO is undefined in a Java object of type class [
 Ljava.lang.String; referenced as


 The object in application.cfc:
 cffunction name=OnApplicationStart
 cfset Application.surveyDAO = createObject(component,
 variables.componentPath  .components.surveyDAO).init(variables.dsn) /
 cfset Application.hrSurveyObj = CreateObject(component,
 CFC.DataMgr).init(HR,MSSQL) /
 /cffunction

 The code causing the error:
 cfset Application.surveyDAO.delete(url.userID) /

 Please help!

 George



 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Application object

2007-06-06 Thread George Lu
No, I've tried Andrew's method:

 cffunction name=onRequestStart returnType=boolean
cfargument type=String name=targetPage required=true /

cfif isDefined(url.updateapp)
cfset result = onApplicationEnd() /
cfset result = onApplicationStart() /
/cfif

cfset request.componentPath = variables.componentPath /
cfset request.surveyDAO = Application.surveyDAO /
cfset request.dsn = variables.dsn /

cfreturn true
/cffunction

and the same error again.

On 07/06/07, George Lu [EMAIL PROTECTED] wrote:

 Dale,

 I put the application scope on top of the page then it works. Maybe I
 should do it as Andrew suggested. Thanks everyone.

 On 07/06/07, Dale Fraser [EMAIL PROTECTED] wrote:
 
   Are you sure it got created.
 
 
 
  Possibly added the OnApplicationStart code after the app was already
  started.
 
 
 
  Dump the Application scope and see of the surveyDAO exists in it.
 
 
 
  Regards
 
  Dale Fraser
 
 
 
  http://dalefraser.blogspot.com
 
 
 
  *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *George Lu
  *Sent:* Thursday, 7 June 2007 12:32 PM
  *To:* CFAussie Mailing List
  *Subject:* [cfaussie] Application object
 
 
 
  Hi,
 
  I create an object in Application.cfc and put it in the application
  scope. When I use it in other pages it comes up this error:
 
   Element SURVEYDAO is undefined in a Java object of type class [
  Ljava.lang.String; referenced as
 
 
  The object in application.cfc:
  cffunction name=OnApplicationStart
  cfset Application.surveyDAO = createObject(component,
  variables.componentPath  .components.surveyDAO).init(variables.dsn)
  /
  cfset Application.hrSurveyObj = CreateObject(component,
  CFC.DataMgr).init(HR,MSSQL) /
  /cffunction
 
  The code causing the error:
  cfset Application.surveyDAO.delete(url.userID) /
 
  Please help!
 
  George
 
 
 
   
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Yes, I did (myPage.cfm?updateapp=1). The page shows up then it stop work
when I pass myPage.cfm?userID=15.

On 07/06/07, Dale Fraser [EMAIL PROTECTED] wrote:

  Did you pass the url



 http://site.com/pageName.cfm?updateapp=true



 Regards

 Dale Fraser



 http://dalefraser.blogspot.com



 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Thursday, 7 June 2007 12:57 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: Application object



 No, I've tried Andrew's method:

  cffunction name=onRequestStart returnType=boolean
 cfargument type=String name=targetPage required=true /

 cfif isDefined(url.updateapp)
 cfset result = onApplicationEnd() /
 cfset result = onApplicationStart() /
 /cfif

 cfset request.componentPath = variables.componentPath /
 cfset request.surveyDAO = Application.surveyDAO /
 cfset request.dsn = variables.dsn /

 cfreturn true
 /cffunction

 and the same error again.

 On 07/06/07, *George Lu* [EMAIL PROTECTED] wrote:

 Dale,

 I put the application scope on top of the page then it works. Maybe I
 should do it as Andrew suggested. Thanks everyone.



 On 07/06/07, *Dale Fraser *[EMAIL PROTECTED] wrote:

 Are you sure it got created.



 Possibly added the OnApplicationStart code after the app was already
 started.



 Dump the Application scope and see of the surveyDAO exists in it.



 Regards

 Dale Fraser



 http://dalefraser.blogspot.com



 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Thursday, 7 June 2007 12:32 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] Application object



 Hi,

 I create an object in Application.cfc and put it in the application scope.
 When I use it in other pages it comes up this error:
 Element SURVEYDAO is undefined in a Java object of type class [
 Ljava.lang.String; referenced as


 The object in application.cfc:
 cffunction name=OnApplicationStart
 cfset Application.surveyDAO = createObject(component,
 variables.componentPath  .components.surveyDAO).init(variables.dsn) /
 cfset Application.hrSurveyObj = CreateObject(component,
 CFC.DataMgr).init(HR,MSSQL) /
 /cffunction

 The code causing the error:
 cfset Application.surveyDAO.delete(url.userID) /

 Please help!

 George










 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Hi AJ,

That's what I did in application.cfc (see attached file as requested by
Andrew).

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 Hi George,

 I think you are after something more like this:

cffunction name=OnApplicationStart
 cfset Application.surveyDAO = createObject(component,
 variables.componentPath  .components.surveyDAO).init(variables.dsn) /
 cfset Application.hrSurveyObj = CreateObject(component,
 CFC.DataMgr).init(HR,MSSQL) /
 /cffunction

 cffunction name=onRequestStart returnType=boolean
 cfargument type=String name=targetPage required=true /

 cfif isDefined(url.updateapp)
 cfset result = onApplicationEnd() /
 cfset result = onApplicationStart() /
 /cfif

 cfreturn true
 /cffunction

 If the URL.updateapp exists - it will call onApplicationStart which will
 initialise your object for you.

 Then you can use Application.surveyDAO anywhere in you application

 On 6/7/07, Andrew Scott [EMAIL PROTECTED] wrote:
 
   Looks like Peter got to youJ
 
 
 
  If you set the Object up in onApplicationStart, there is no need and I
  mean this!! No need to copy the Application.surveyDAO to the request
  scope.
 
 
 
  I would really like to know who is teaching people to do this, can you
  imagine 1000 users hitting the application and how many extra ram is wasted
  by such a method.. Peter might like doing this and wasting valuable
  resources, but it should not be a practice taken upon.
 
 
 
  If you want to email me your application.cfc, I will modify it and get
  it to work for you.
 
 
 
  Andrew Scott
  Senior Coldfusion Developer
  Aegeon Pty. Ltd.
  www.aegeon.com.au
  Phone: +613  8676 4223
  Mobile: 0404 998 273
 
 
 
 
 
  *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *George Lu
  *Sent:* Thursday, 7 June 2007 12:57 PM
  *To:* cfaussie@googlegroups.com
  *Subject:* [cfaussie] Re: Application object
 
 
 
  No, I've tried Andrew's method:
 
   cffunction name=onRequestStart returnType=boolean
  cfargument type=String name=targetPage required=true /
 
  cfif isDefined(url.updateapp)
  cfset result = onApplicationEnd() /
  cfset result = onApplicationStart() /
  /cfif
 
  cfset request.componentPath = variables.componentPath /
  cfset request.surveyDAO = Application.surveyDAO /
  cfset request.dsn = variables.dsn /
 
  cfreturn true
  /cffunction
 
  and the same error again.
 
  On 07/06/07, *George Lu* [EMAIL PROTECTED] wrote:
 
  Dale,
 
  I put the application scope on top of the page then it works. Maybe I
  should do it as Andrew suggested. Thanks everyone.
 
 
 
  On 07/06/07, *Dale Fraser *[EMAIL PROTECTED] wrote:
 
  Are you sure it got created.
 
 
 
  Possibly added the OnApplicationStart code after the app was already
  started.
 
 
 
  Dump the Application scope and see of the surveyDAO exists in it.
 
 
 
  Regards
 
  Dale Fraser
 
 
 
  http://dalefraser.blogspot.com
 
 
 
  *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *George Lu
  *Sent:* Thursday, 7 June 2007 12:32 PM
  *To:* CFAussie Mailing List
  *Subject:* [cfaussie] Application object
 
 
 
  Hi,
 
  I create an object in Application.cfc and put it in the application
  scope. When I use it in other pages it comes up this error:
  Element SURVEYDAO is undefined in a Java object of type class [
  Ljava.lang.String; referenced as
 
 
  The object in application.cfc:
  cffunction name=OnApplicationStart
  cfset Application.surveyDAO = createObject(component,
  variables.componentPath  .components.surveyDAO).init(variables.dsn)
  /
  cfset Application.hrSurveyObj = CreateObject(component,
  CFC.DataMgr).init(HR,MSSQL) /
  /cffunction
 
  The code causing the error:
  cfset Application.surveyDAO.delete(url.userID) /
 
  Please help!
 
  George
 
 
 
 
 
 
 
 
 
 
 
 


 --
 If you are not living on the edge,
 You are taking up too much space.
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



Application.cfc
Description: application/cfc


[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Thanks AJ. But for the objects, do I need to do something like this on
myPage.cfm?

cfif NOT isDefined(Application.surveyDAO)
cfset Application.surveyDAO = createObject(component,
intranet.hr.survey.components.surveyDAO).init(HR) /
/cfif

in the event the object is not initialised.

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 As per A.S. loose (delete/remove/cut/destroy) these lines in
 onRequestStart

 cfset request.componentPath = variables.componentPath /
 cfset request.surveyGateway = Application.surveyGateway /
 cfset request.surveyDAO = Application.surveyDAO /

 move these to OnApplicationStart
 cfset request.dsn = variables.dsn /
 cfset application.root = /Intranet /
 and change request to application for the dsn
 cfset APPLICATION.dsn = variables.dsn /

 Then in you code, reference
Application.surveyDAO1
Application.hrSurveyObj
APPLICATION.dsn

 So what you end up with is all the APPLICATION wide variables are defined
 as set in OnApplicationStart().

 No need to copy them into the REQUEST scope

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Hi AJ,
 
  That's what I did in application.cfc (see attached file as requested by
  Andrew).
 
  On 07/06/07, AJ Mercer  [EMAIL PROTECTED] wrote:
  
   Hi George,
  
   I think you are after something more like this:
  
  cffunction name=OnApplicationStart
   cfset Application.surveyDAO = createObject(component,
   variables.componentPath  .components.surveyDAO).init(variables.dsn)
   /
   cfset Application.hrSurveyObj = CreateObject(component,
   CFC.DataMgr).init(HR,MSSQL) /
   /cffunction
  
   cffunction name=onRequestStart returnType=boolean
   cfargument type=String name=targetPage required=true /
  
  
   cfif isDefined(url.updateapp)
   cfset result = onApplicationEnd() /
   cfset result = onApplicationStart() /
   /cfif
  
   cfreturn true
   /cffunction
  
   If the URL.updateapp exists - it will call onApplicationStart which
   will initialise your object for you.
  
   Then you can use Application.surveyDAO anywhere in you application
  
   On 6/7/07, Andrew Scott  [EMAIL PROTECTED] wrote:
   
 Looks like Peter got to youJ
   
   
   
If you set the Object up in onApplicationStart, there is no need and
I mean this!! No need to copy the Application.surveyDAO to the
request scope.
   
   
   
I would really like to know who is teaching people to do this, can
you imagine 1000 users hitting the application and how many extra ram is
wasted by such a method.. Peter might like doing this and wasting 
valuable
resources, but it should not be a practice taken upon.
   
   
   
If you want to email me your application.cfc, I will modify it and
get it to work for you.
   
   
   
Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
   
   
   
   
   
*From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
*On Behalf Of *George Lu
*Sent:* Thursday, 7 June 2007 12:57 PM
*To:* cfaussie@googlegroups.com
*Subject:* [cfaussie] Re: Application object
   
   
   
No, I've tried Andrew's method:
   
 cffunction name=onRequestStart returnType=boolean
cfargument type=String name=targetPage required=true
/
   
cfif isDefined(url.updateapp)
cfset result = onApplicationEnd() /
cfset result = onApplicationStart() /
/cfif
   
cfset request.componentPath = variables.componentPath/
cfset request.surveyDAO = Application.surveyDAO /
cfset request.dsn = variables.dsn /
   
cfreturn true
/cffunction
   
and the same error again.
   
On 07/06/07, *George Lu* [EMAIL PROTECTED] wrote:
   
Dale,
   
I put the application scope on top of the page then it works. Maybe
I should do it as Andrew suggested. Thanks everyone.
   
   
   
On 07/06/07, *Dale Fraser *[EMAIL PROTECTED] wrote:
   
Are you sure it got created.
   
   
   
Possibly added the OnApplicationStart code after the app was already
started.
   
   
   
Dump the Application scope and see of the surveyDAO exists in it.
   
   
   
Regards
   
Dale Fraser
   
   
   
http://dalefraser.blogspot.com
   
   
   
*From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
*On Behalf Of *George Lu
*Sent:* Thursday, 7 June 2007 12:32 PM
*To:* CFAussie Mailing List
*Subject:* [cfaussie] Application object
   
   
   
Hi,
   
I create an object in Application.cfc and put it in the application
scope. When I use it in other pages it comes up this error:
Element SURVEYDAO is undefined in a Java object of type class [
Ljava.lang.String; referenced

[cfaussie] Re: Application object

2007-06-06 Thread George Lu
But I've been told if I change the object in cfc I have to init the object
again in myPage.cfm so the change'll happen. Is that true?

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 no, because if the APPLICATION scope does not exist OnApplicationStart ()
 will be fired

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Thanks AJ. But for the objects, do I need to do something like this on
  myPage.cfm?
 
  cfif NOT isDefined(Application.surveyDAO)
  cfset Application.surveyDAO = createObject(component,
  intranet.hr.survey.components.surveyDAO).init(HR) /
  /cfif
 
  in the event the object is not initialised.
 
  On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:
  
   As per A.S. loose (delete/remove/cut/destroy) these lines in
   onRequestStart
  
   cfset request.componentPath = variables.componentPath /
   cfset request.surveyGateway = Application.surveyGateway/
   cfset request.surveyDAO = Application.surveyDAO /
  
   move these to OnApplicationStart
   cfset request.dsn = variables.dsn /
   cfset application.root = /Intranet /
   and change request to application for the dsn
   cfset APPLICATION.dsn = variables.dsn /
  
   Then in you code, reference
  Application.surveyDAO1
  Application.hrSurveyObj
  APPLICATION.dsn
  
   So what you end up with is all the APPLICATION wide variables are
   defined as set in OnApplicationStart().
  
   No need to copy them into the REQUEST scope
  
   On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
   
Hi AJ,
   
That's what I did in application.cfc (see attached file as requested
by Andrew).
   
On 07/06/07, AJ Mercer  [EMAIL PROTECTED] wrote:

 Hi George,

 I think you are after something more like this:

cffunction name=OnApplicationStart
 cfset Application.surveyDAO = createObject(component,
 variables.componentPath  .components.surveyDAO).init(
 variables.dsn) /
 cfset Application.hrSurveyObj =
 CreateObject(component, CFC.DataMgr).init(HR,MSSQL) /
 /cffunction

 cffunction name=onRequestStart returnType=boolean
 cfargument type=String name=targetPage
 required=true /

 cfif isDefined(url.updateapp)
 cfset result = onApplicationEnd() /
 cfset result = onApplicationStart() /
 /cfif

 cfreturn true
 /cffunction

 If the URL.updateapp exists - it will call onApplicationStart
 which will initialise your object for you.

 Then you can use Application.surveyDAO anywhere in you application

 On 6/7/07, Andrew Scott  [EMAIL PROTECTED] wrote:
 
   Looks like Peter got to youJ
 
 
 
  If you set the Object up in onApplicationStart, there is no need
  and I mean this!! No need to copy the Application.surveyDAO to
  the request scope.
 
 
 
  I would really like to know who is teaching people to do this,
  can you imagine 1000 users hitting the application and how many 
  extra ram is
  wasted by such a method.. Peter might like doing this and wasting 
  valuable
  resources, but it should not be a practice taken upon.
 
 
 
  If you want to email me your application.cfc, I will modify it
  and get it to work for you.
 
 
 
  Andrew Scott
  Senior Coldfusion Developer
  Aegeon Pty. Ltd.
  www.aegeon.com.au
  Phone: +613  8676 4223
  Mobile: 0404 998 273
 
 
 
 
 
  *From:* cfaussie@googlegroups.com [mailto:
  [EMAIL PROTECTED] *On Behalf Of *George Lu
  *Sent:* Thursday, 7 June 2007 12:57 PM
  *To:* cfaussie@googlegroups.com
  *Subject:* [cfaussie] Re: Application object
 
 
 
  No, I've tried Andrew's method:
 
   cffunction name=onRequestStart returnType=boolean
  cfargument type=String name=targetPage
  required=true /
 
  cfif isDefined(url.updateapp)
  cfset result = onApplicationEnd() /
  cfset result = onApplicationStart() /
  /cfif
 
  cfset request.componentPath =
  variables.componentPath /
  cfset request.surveyDAO = Application.surveyDAO /
  cfset request.dsn = variables.dsn /
 
  cfreturn true
  /cffunction
 
  and the same error again.
 
  On 07/06/07, *George Lu* [EMAIL PROTECTED] wrote:
 
  Dale,
 
  I put the application scope on top of the page then it works.
  Maybe I should do it as Andrew suggested. Thanks everyone.
 
 
 
  On 07/06/07, *Dale Fraser *[EMAIL PROTECTED] wrote:
 
  Are you sure it got created.
 
 
 
  Possibly added the OnApplicationStart code after the app was
  already started.
 
 
 
  Dump

[cfaussie] Re: Application object

2007-06-06 Thread George Lu
Thanks Andrew and AJ. Now I understand - once an object is initialised
in OnApplicationStart
function then it's available in every page. If the object is changed or a
new object is created after app start then we need to
reinitialise/initialise it using something like
http://mysite/?updateapp=true.

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 any code inside the OnApplicationStart function will only run the first
 time the application is run. So if you put in a new CreateObject() you will
 need will need to do the ?updateapp=1

 If you change a CFC that has already been created and stored in the
 APPLICATION scope, you will also need to do updateapp=1 as the old version
 will still be there.

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  But I've been told if I change the object in cfc I have to init the
  object again in myPage.cfm so the change'll happen. Is that true?
 
  On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:
  
   no, because if the APPLICATION scope does not exist OnApplicationStart
   () will be fired
  
   On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
   
Thanks AJ. But for the objects, do I need to do something like this
on myPage.cfm?
   
cfif NOT isDefined(Application.surveyDAO)
cfset Application.surveyDAO = createObject(component,
intranet.hr.survey.components.surveyDAO).init(HR) /
/cfif
   
in the event the object is not initialised.
   
On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 As per A.S. loose (delete/remove/cut/destroy) these lines in
 onRequestStart

 cfset request.componentPath = variables.componentPath/
 cfset request.surveyGateway =
 Application.surveyGateway /
 cfset request.surveyDAO = Application.surveyDAO /

 move these to OnApplicationStart
 cfset request.dsn = variables.dsn /
 cfset application.root = /Intranet /
 and change request to application for the dsn
 cfset APPLICATION.dsn = variables.dsn /

 Then in you code, reference
Application.surveyDAO1
Application.hrSurveyObj
APPLICATION.dsn

 So what you end up with is all the APPLICATION wide variables are
 defined as set in OnApplicationStart().

 No need to copy them into the REQUEST scope

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Hi AJ,
 
  That's what I did in application.cfc (see attached file as
  requested by Andrew).
 
  On 07/06/07, AJ Mercer  [EMAIL PROTECTED] wrote:
  
   Hi George,
  
   I think you are after something more like this:
  
  cffunction name=OnApplicationStart
   cfset Application.surveyDAO =
   createObject(component,variables.componentPath 
   .components.surveyDAO).init(variables.dsn) /
   cfset Application.hrSurveyObj =
   CreateObject(component, CFC.DataMgr).init(HR,MSSQL) /
  
   /cffunction
  
   cffunction name=onRequestStart returnType=boolean
   cfargument type=String name=targetPage
   required=true /
  
   cfif isDefined(url.updateapp)
   cfset result = onApplicationEnd() /
   cfset result = onApplicationStart() /
   /cfif
  
   cfreturn true
   /cffunction
  
   If the URL.updateapp exists - it will call onApplicationStart
   which will initialise your object for you.
  
   Then you can use Application.surveyDAO anywhere in you
   application
  
   On 6/7/07, Andrew Scott  [EMAIL PROTECTED] wrote:
   
 Looks like Peter got to youJ
   
   
   
If you set the Object up in onApplicationStart, there is no
need and I mean this!! No need to copy the
Application.surveyDAO to the request scope.
   
   
   
I would really like to know who is teaching people to do
this, can you imagine 1000 users hitting the application and 
how many extra
ram is wasted by such a method.. Peter might like doing this 
and wasting
valuable resources, but it should not be a practice taken upon.
   
   
   
If you want to email me your application.cfc, I will modify
it and get it to work for you.
   
   
   
Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
   
   
   
   
   
*From:* cfaussie@googlegroups.com [mailto:
[EMAIL PROTECTED] *On Behalf Of *George Lu
*Sent:* Thursday, 7 June 2007 12:57 PM
*To:* cfaussie@googlegroups.com
*Subject:* [cfaussie] Re: Application object
   
   
   
No, I've tried Andrew's method:
   
 cffunction name=onRequestStart returnType

[cfaussie] Re: Application object

2007-06-06 Thread George Lu
:)

On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 you can loosen you seatbelt now, the ride wont be so bumpy. But the
 captain asks that you refrain from using the REQUEST scope in case there is
 any further turbulence.


 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Thanks Andrew and AJ. Now I understand - once an object is initialised
  in OnApplicationStart function then it's available in every page. If the
  object is changed or a new object is created after app start then we need to
  reinitialise/initialise it using something like
  http://mysite/?updateapp=true.
 
  On 07/06/07, AJ Mercer  [EMAIL PROTECTED] wrote:
  
   any code inside the OnApplicationStart function will only run the
   first time the application is run. So if you put in a new CreateObject() 
   you
   will need will need to do the ?updateapp=1
  
   If you change a CFC that has already been created and stored in the
   APPLICATION scope, you will also need to do updateapp=1 as the old version
   will still be there.
  
   On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
   
But I've been told if I change the object in cfc I have to init the
object again in myPage.cfm so the change'll happen. Is that true?
   
On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:

 no, because if the APPLICATION scope does not exist OnApplicationStart
 () will be fired

 On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
 
  Thanks AJ. But for the objects, do I need to do something like
  this on myPage.cfm?
 
  cfif NOT isDefined(Application.surveyDAO)
  cfset Application.surveyDAO = createObject(component,
  intranet.hr.survey.components.surveyDAO).init(HR) /
  /cfif
 
  in the event the object is not initialised.
 
  On 07/06/07, AJ Mercer [EMAIL PROTECTED] wrote:
  
   As per A.S. loose (delete/remove/cut/destroy) these lines in
   onRequestStart
  
   cfset request.componentPath =
   variables.componentPath /
   cfset request.surveyGateway =
   Application.surveyGateway /
   cfset request.surveyDAO = Application.surveyDAO/
  
   move these to OnApplicationStart
   cfset request.dsn = variables.dsn /
   cfset application.root = /Intranet /
   and change request to application for the dsn
   cfset APPLICATION.dsn = variables.dsn /
  
   Then in you code, reference
  Application.surveyDAO1
  Application.hrSurveyObj
  APPLICATION.dsn
  
   So what you end up with is all the APPLICATION wide variables
   are defined as set in OnApplicationStart().
  
   No need to copy them into the REQUEST scope
  
   On 6/7/07, George Lu [EMAIL PROTECTED] wrote:
   
Hi AJ,
   
That's what I did in application.cfc (see attached file as
requested by Andrew).
   
On 07/06/07, AJ Mercer  [EMAIL PROTECTED] wrote:

 Hi George,

 I think you are after something more like this:

cffunction name=OnApplicationStart
 cfset Application.surveyDAO =
 createObject(component,variables.componentPath 
 .components.surveyDAO).init(variables.dsn) /
 cfset Application.hrSurveyObj =
 CreateObject(component, CFC.DataMgr).init(HR,MSSQL)
 /
 /cffunction

 cffunction name=onRequestStart returnType=boolean
 cfargument type=String name=targetPage
 required=true /

 cfif isDefined(url.updateapp)
 cfset result = onApplicationEnd() /
 cfset result = onApplicationStart() /
 /cfif

 cfreturn true
 /cffunction

 If the URL.updateapp exists - it will call
 onApplicationStart which will initialise your object for you.

 Then you can use Application.surveyDAO anywhere in you
 application

 On 6/7/07, Andrew Scott  [EMAIL PROTECTED]
 wrote:
 
   Looks like Peter got to youJ
 
 
 
  If you set the Object up in onApplicationStart, there is
  no need and I mean this!! No need to copy the
  Application.surveyDAO to the request scope.
 
 
 
  I would really like to know who is teaching people to do
  this, can you imagine 1000 users hitting the application 
  and how many extra
  ram is wasted by such a method.. Peter might like doing 
  this and wasting
  valuable resources, but it should not be a practice taken 
  upon.
 
 
 
  If you want to email me your application.cfc, I will
  modify it and get it to work for you

[cfaussie] Re: CFAussie Community Head Count

2007-06-05 Thread George Lu
I did that but it just automatically added to this thread as well?!

On 05/06/07, MrBuzzy [EMAIL PROTECTED] wrote:


 George, Chris,

 You should probabyl ping the original email 'CFAussie Community Head
 Count' too, if possible.

 Cheers

 On 6/5/07, Chris Dawes [EMAIL PROTECTED] wrote:
  +1 Chris Dawes - Croydon Vic for last few months - ex Sydney
 
 
 
  On 05/06/07, Barry Beattie [EMAIL PROTECTED]  wrote:
  
   Mark, yours is the 100th post on this thread but not the 100th person
 to ping
  
   car-mawwnnn! we can d it!!!
  
  
   The CFAUSSIE-a-thon is hoping to raise 100 members from the dead.
  
   The total so far at the tally room comes in at 83 members (someone
check this?)
  
   Email now, our inboxes are ready to accept your ping
  
   All for a noble cause
  
   Ahem, Matt... tell us again why did you wanted this in the first
 place?
  
  
  
   On 6/5/07, Mark Mandel  [EMAIL PROTECTED] wrote:
   
wow.. is this thing still going?
   
Mark
   
On 6/5/07, dfwise [EMAIL PROTECTED]  wrote:

 FAB,

 Long time veiwer, first time caller.


 On Jun 1, 12:02 pm, Matt Voerman  [EMAIL PROTECTED] wrote:
  Hi Guys,
  Just a quick note to let you guys know that we at the Adobe
 Australia
  office haven't forgotten about you, and do monitor this (and
 several
  other) lists on a regular basis.
 
  We have a couple of Community related irons in the fire and will
  communicate more on them as they solidify.
 
  What would be of great help to us in the meantime would be a
 hands up
  (head count) on how many Aussie CF'ers are reading this list on
 a
  regular basis. If you could just ping a response to to this
 thread
  that would be grouse.
 
  Thanks in advance
 
  Matt Voerman
 
  Senior Consultant
  Adobe Systems Pacific


 

   
   
--
E: [EMAIL PROTECTED]
W: www.compoundtheory.com
   

   
  
  
 
 
   
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Reset Object

2007-05-25 Thread George Lu
Hi,

Is there any way to reset the object without restarting the cf admin? I'm
using CreateObject(component,CFC.DataMgr) and I've made some changes in
the database (e.g. size of a field).

Thanks,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Reset Object

2007-05-25 Thread George Lu
Thanks Andrew. I'm using DataMgr.cfc.

On 25/05/07, Andrew Scott [EMAIL PROTECTED] wrote:

  Yep, recreate the object with the same call.



 cfset test = Createobject('component','com.something.thisone').init() /



 Will reinstantiate the object.



 Is this your own DAO or are you using an ORM?



 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Friday, 25 May 2007 4:06 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] Reset Object



 Hi,

 Is there any way to reset the object without restarting the cf admin? I'm
 using CreateObject(component,CFC.DataMgr) and I've made some changes
 in the database (e.g. size of a field).

 Thanks,
 George


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Reset Object

2007-05-25 Thread George Lu
Andrew, this is not mine it's from RIAforge. And it works as you said.

On 25/05/07, Andrew Scott [EMAIL PROTECTED] wrote:

  Yes but that means nothing to me, is this something you wrote? Is it an
 ORM?



 The main point is that unless it is an ORM then changes to the DB will not
 be reflected back to that component. The question that I would ask is does
 that fit into your situation, and if it does there just maybe a 
 url.reinitattribute to reload the component back into ram.



 But it looks like by your question that this is not the case, so that
 leave me to believe that this component is something you wrote. And if that
 is the case then the changes to your DataMgr.cfc will not automatically
 pick up the database changes.



 So a little more info on that might help, unless someone else has more
 info on this if it a package that someone else has used?



 But on a side note, I would maybe seriously look into an ORM, like reactor
 or Mark Mandel's transfer.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Reset Object

2007-05-25 Thread George Lu
Thanks Justin for your excellent explanation. But I'm not sure what's a ORM?

On 25/05/07, Justin Carter [EMAIL PROTECTED] wrote:


 On May 25, 4:27 pm, Andrew Scott [EMAIL PROTECTED] wrote:
  Yes but that means nothing to me, is this something you wrote? Is it an
 ORM?

 http://datamgr.riaforge.org/

 Quote:
 DataMgr is a Data Access Layer component set.

 http://steve.coldfusionjournal.com/datamgr_20_is_gold.htm

 It simplifies CRUD interactions with the database (speeding up
 development time) and has a common API for any supported database (and
 makes adding a new database easy).

 DataMgr is not an ORM, but you could build an ORM on top of DataMgr -
 allowing you to create an ORM that works the way you want.

 DataMgr also encompasses the functionality of Active Schema. You can
 define your database structure in XML and have DataMgr create it. If
 you prefer, you can also go the more traditional route and have
 DataMgr introspect your database (or use both approaches in
 combination).


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Reset Object

2007-05-25 Thread George Lu
Absolutely right! It's first time I use this CRUD manager. Since it's lack
of doc I don't know how to use it for multiple tables (e.g. combine tables).

On 25/05/07, Andrew Scott [EMAIL PROTECTED] wrote:

  Ok,



 I did a quick research into it. And the docs aren't very clear. So I will
 assume that when the component is initialised it reads the DB for the
 fields? If this is the case and you are placing this in a persistant scope
 like application, then use something like



 cfif not IsDefined(application.datamgr) or url.reinit eq true

  cfset application.datamgr =  /

 /cfif



 That way you can reinit it at the application level.



 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Friday, 25 May 2007 4:34 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: Reset Object



 Andrew, this is not mine it's from RIAforge. And it works as you said.

 On 25/05/07, *Andrew Scott* [EMAIL PROTECTED]  wrote:

 Yes but that means nothing to me, is this something you wrote? Is it an
 ORM?



 The main point is that unless it is an ORM then changes to the DB will not
 be reflected back to that component. The question that I would ask is does
 that fit into your situation, and if it does there just maybe a 
 url.reinitattribute to reload the component back into ram.



 But it looks like by your question that this is not the case, so that
 leave me to believe that this component is something you wrote. And if that
 is the case then the changes to your DataMgr.cfc will not automatically
 pick up the database changes.



 So a little more info on that might help, unless someone else has more
 info on this if it a package that someone else has used?



 But on a side note, I would maybe seriously look into an ORM, like reactor
 or Mark Mandel's transfer.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273








 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Sorting date in cfgrid

2007-05-03 Thread George Lu
Hi,

I've got a cfgrid table (flash forms) with a date field (format as
dd/mm/). However, if you click the header to sort the date it only sort
dd part and doesn't sort mm and  parts (e.g. the sorted order:
09/12/2006, 10/11/2003, 11/08/2006). Is there any solution?

Thanks.
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-27 Thread George Lu
I've done that. Here is one of the errors: Moved undelivered mail:
Mail37806.cfmail to C:\CFusionMX7/Mail/Undelivr directory.

Steve, how do I do the auto schedule task? Sorry I'm quite dump about this.

On 27/03/07, Joel [EMAIL PROTECTED] wrote:

  check the CF error logs (mailsent.log i think)


 - Original Message -
 *From:* George Lu [EMAIL PROTECTED]
 *To:* cfaussie@googlegroups.com
 *Sent:* Tuesday, March 27, 2007 4:46 PM
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?

 I've dragged those mails to the spool directory but they've gone back to
 undelivered directory again.

 On 27/03/07, Andrew Scott  [EMAIL PROTECTED] wrote:
 
   If they are sitting in there, they are not deliverable at all, you can
  try dragging them to the spool directory if you want to try sending them
  again.
 
 
 
 
 
  Andrew Scott
  Senior Coldfusion Developer
  Aegeon Pty. Ltd.
  www.aegeon.com.au
  Phone: +613  8676 4223
  Mobile: 0404 998 273
 
 
 
 
 
  *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
  Behalf Of *George Lu
  *Sent:* Tuesday, 27 March 2007 4:28 PM
  *To:* CFAussie Mailing List
  *Subject:* [cfaussie] How to send out undelivered cfmails?
 
 
 
  Our mail server was down and now it's up again. There are 5 emails
  sitting at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to send out
  these emails?
 
  Thanks,
  George
 
 
 
 

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-27 Thread George Lu
Thanks for the explanation. My problem is how to deliver these undelivered
mails to the mail server again.

On 27/03/07, Rod Higgins [EMAIL PROTECTED] wrote:

  Sorry forgot the URL

 http://www.adobe.com/devnet/coldfusion/articles/mail_61_03.html


  -Original Message-
 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Andrew Scott
 *Sent:* Tuesday, 27 March 2007 5:47 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?

 It doesn't matter what you do these emails are not deliverable, that means
 the email address is incorrect in someway.



 On 3/27/07, George Lu [EMAIL PROTECTED] wrote:
 
  I've done that. Here is one of the errors: Moved undelivered mail:
  Mail37806.cfmail to C:\CFusionMX7/Mail/Undelivr directory.
 
  Steve, how do I do the auto schedule task? Sorry I'm quite dump about
  this.
 
  On 27/03/07, Joel [EMAIL PROTECTED]  wrote:
  
check the CF error logs (mailsent.log i think)
  
  
   - Original Message -
   *From:* George Lu [EMAIL PROTECTED]
   *To:* cfaussie@googlegroups.com
   *Sent:* Tuesday, March 27, 2007 4:46 PM
   *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
  
  
   I've dragged those mails to the spool directory but they've gone back
   to undelivered directory again.
  
   On 27/03/07, Andrew Scott  [EMAIL PROTECTED]  wrote:
   
 If they are sitting in there, they are not deliverable at all, you
can try dragging them to the spool directory if you want to try sending 
them
again.
   
   
   
   
   
Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
   
   
   
   
   
*From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
*On Behalf Of *George Lu
*Sent: *Tuesday, 27 March 2007 4:28 PM
*To:* CFAussie Mailing List
*Subject:* [cfaussie] How to send out undelivered cfmails?
   
   
   
Our mail server was down and now it's up again. There are 5 emails
sitting at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to send 
out
these emails?
   
Thanks,
George
   
   
   
   
  
  
  
 
  Aegeon Pty. Ltd.
  www.aegeon.com.au
  Phone: +613  8676 4223
  Mobile: 0404 998 273
   
 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-27 Thread George Lu
Thanks Rod. I've done manually to move undelivered mails from Undelivr to Spool
directory. However, they have moved back to Undelivr automatically by CF.

On 28/03/07, Rod Higgins [EMAIL PROTECTED] wrote:

  yeah I should of added in the code to delete the file as well or used
 copy I had not tested the code it was written in the email client on the
 fly.

  -Original Message-
 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Steve Onnis
 *Sent:* Wednesday, 28 March 2007 10:57 AM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?

 i wouldnt use COPY, rather use MOVE.  you dont want duplicates going back
 into the undelivered folder

  --
 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *Rod Higgins
 *Sent:* Wednesday, 28 March 2007 10:25 AM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?

  A simple script like this should do it George. You will need to set the
 path for your spool directory and undelivered driectory on your mail server.

 cfset undevpath=C:\CFusionMX7\Mail\Undelivr
 cfset spoolpath=E:\CFusionMX7\Mail\Spool

 cfdirectory action=LIST directory=#undevpath# name=file_list
 filter=*.cfmail sort=dateLastModified

 cfoutput query=file_list
   cffile action=COPY source=#undevpath#\#name#
 destination=#spoolpath#\#name#
 /cfoutput

 Is this what you were looking for?

  -Original Message-
 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Wednesday, 28 March 2007 10:15 AM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?

 Thanks for the explanation. My problem is how to deliver these undelivered
 mails to the mail server again.

 On 27/03/07, Rod Higgins  [EMAIL PROTECTED] wrote:
 
   Sorry forgot the URL
 
  http://www.adobe.com/devnet/coldfusion/articles/mail_61_03.html
 
 
   -Original Message-
  *From:* cfaussie@googlegroups.com [mailto: [EMAIL PROTECTED] *On
  Behalf Of *Andrew Scott
  *Sent:* Tuesday, 27 March 2007 5:47 PM
  *To:* cfaussie@googlegroups.com
  *Subject:* [cfaussie] Re: How to send out undelivered cfmails?
 
   It doesn't matter what you do these emails are not deliverable, that
  means the email address is incorrect in someway.
 
 
 
  On 3/27/07, George Lu [EMAIL PROTECTED] wrote:
  
   I've done that. Here is one of the errors: Moved undelivered mail:
   Mail37806.cfmail to C:\CFusionMX7/Mail/Undelivr directory.
  
   Steve, how do I do the auto schedule task? Sorry I'm quite dump about
   this.
  
   On 27/03/07, Joel [EMAIL PROTECTED]  wrote:
   
 check the CF error logs (mailsent.log i think)
   
   
- Original Message -
*From:* George Lu [EMAIL PROTECTED]
*To:* cfaussie@googlegroups.com
*Sent:* Tuesday, March 27, 2007 4:46 PM
*Subject:* [cfaussie] Re: How to send out undelivered cfmails?
   
   
I've dragged those mails to the spool directory but they've gone
back to undelivered directory again.
   
On 27/03/07, Andrew Scott  [EMAIL PROTECTED]  wrote:

  If they are sitting in there, they are not deliverable at all,
 you can try dragging them to the spool directory if you want to try 
 sending
 them again.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:
 [EMAIL PROTECTED] *On Behalf Of *George Lu
 *Sent: *Tuesday, 27 March 2007 4:28 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] How to send out undelivered cfmails?



 Our mail server was down and now it's up again. There are 5 emails
 sitting at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to 
 send out
 these emails?

 Thanks,
 George




   
   
   
  
   Aegeon Pty. Ltd.
   www.aegeon.com.au
   Phone: +613  8676 4223
   Mobile: 0404 998 273
  
  

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-27 Thread George Lu
In the log it's something like this:

server:  10.254.xx.xx:25
from:  [EMAIL PROTECTED]
to:  [EMAIL PROTECTED]
subject:  Request For ISTU Support - Job No. 6222
type:  text/html; charset=UTF-8
X-Mailer:  ColdFusion MX Application Server
bodypart-start:  text/plain; charset=UTF-8
body:
body:

Sorry I have to replace real data with xx.

Andrew, the emails didn't go out as the mail server was down - it's not
because of emails addresses.

On 28/03/07, Rod Higgins [EMAIL PROTECTED] wrote:

  What was recorded in the mail logs? Can you verify the connection to the
 mail server from within cf admin?

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-26 Thread George Lu
I've dragged those mails to the spool directory but they've gone back to
undelivered directory again.

On 27/03/07, Andrew Scott [EMAIL PROTECTED] wrote:

  If they are sitting in there, they are not deliverable at all, you can
 try dragging them to the spool directory if you want to try sending them
 again.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Tuesday, 27 March 2007 4:28 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] How to send out undelivered cfmails?



 Our mail server was down and now it's up again. There are 5 emails sitting
 at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to send out these
 emails?

 Thanks,
 George


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: How to send out undelivered cfmails?

2007-03-26 Thread George Lu
So what should I do? restart the server? I'm not sure if this does help (I
prefer not doing that).

On 27/03/07, Andrew Scott [EMAIL PROTECTED] wrote:

  Ok, any mail that ends up there is as it says not deliverable. Reasons
 for this email doesn't exist.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Tuesday, 27 March 2007 4:47 PM
 *To:* cfaussie@googlegroups.com
 *Subject:* [cfaussie] Re: How to send out undelivered cfmails?



 I've dragged those mails to the spool directory but they've gone back to
 undelivered directory again.

 On 27/03/07, *Andrew Scott*  [EMAIL PROTECTED] wrote:

 If they are sitting in there, they are not deliverable at all, you can try
 dragging them to the spool directory if you want to try sending them again.





 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273





 *From:* cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] *On
 Behalf Of *George Lu
 *Sent:* Tuesday, 27 March 2007 4:28 PM
 *To:* CFAussie Mailing List
 *Subject:* [cfaussie] How to send out undelivered cfmails?



 Our mail server was down and now it's up again. There are 5 emails sitting
 at C:\CFusionMX7\Mail\Undelivr folder. Is there any way to send out these
 emails?

 Thanks,
 George








 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] cfgrid row count

2007-01-16 Thread George Lu

Hi,

Does anyone know how to count number of rows in cfgrid (flash forms)?

Thanks,
George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Vspider or jspider or something else

2007-01-10 Thread George Lu
Hi Andrew,

Sorry I can't help you with your situation. However I've got some questions
about vspider. I've tried to use it to index my intranet site using command
line but it didn't work. How cfexceute can be used for vspider?

George

On 11/01/07, Andrew Scott [EMAIL PROTECTED] wrote:


 Yes Charlie did :-)


 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273



 



--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---


[cfaussie] Re: Dreamweaver changing links

2006-11-27 Thread George Lu
Thank you Chris. I've got it!

On 24/11/06, Chris Velevitch [EMAIL PROTECTED] wrote:


 Open the zip file and copy the features and plugin directories to your
 Eclipse root directory, then exit and restart Eclipse. Goto
 preferences and select RDS Configuration.

 On 11/24/06, George Lu [EMAIL PROTECTED] wrote:
  Thanks Chris. I've downloaded the file but can't install it. When I
 selected
  CF_FB_Extensions.zip, Next button is still gray.
 
 
 
  On 23/11/06, Chris Velevitch [EMAIL PROTECTED] wrote:
  
   Try
  http://www.cfreport.org/downloads/CF_FB_Extensions.zip
  
   On 11/23/06, George Lu [EMAIL PROTECTED] wrote:
Hi Chris,
   
Where can I find that plugin?
   
George
   
   
   
On 22/11/06, Chris Velevitch  [EMAIL PROTECTED] wrote:

 On 11/22/06, George Lu [EMAIL PROTECTED] wrote:
  Eclipse has downside as well - it doesn't have ability to
  synchronise
file
  between local and remote folders.

 I thought CF 7.0.2 included a Eclipse plugin to support RDS or
 have I
 misunderstand what the plugin actually does?


 Chris
 --
 Chris Velevitch
 Manager - Sydney Flash Platform Developers Group
 m: 0415 469 095
 www.flashdev.org.au


   
   
 
   
  
  
   --
   Chris Velevitch
   Manager - Sydney Flash Platform Developers Group
   m: 0415 469 095
   www.flashdev.org.au
  
  
 
 
   
 


 --
 Chris Velevitch
 Manager - Sydney Flash Platform Developers Group
 m: 0415 469 095
 www.flashdev.org.au

 



--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---


[cfaussie] Re: ColdFusion trend?

2006-10-17 Thread George Lu
Darren,

Thanks for your advice. Actually my boss was quite interested to this thread but he insisted your guys are senior Cold Fusion developers and asked me to seek advice from independent players.
George

On 17/10/06, Darren Tracey [EMAIL PROTECTED] wrote:
Barry,I don't think kittens class as wildlife.I think the Australian environment would greatly benefit from vast
quantities of kittens being shipped out of Australia.I have visions of vast herds of Aussie school children combing alleys,backyards and bushland for any unguarded kittens and earning pocketmoney (and valuable export dollars) by shipping them to, according to
this page:http://www.google.com/trends?q=kittensctab=1geo=alldate=allNew Zealand, or even the UK.Google does make the world a happier place!
George,I'm hoping you can provide your Boss with a shortened version of thisthread pointing out just how unreliable the Google Trends tool is forbasing such an important business decision. He needs to realise that
these results do not indicate pages written in these languages. Itseems to be just the number of times those specific words (and they canbe way out of context too) are used in pages that Google has indexed.
Darren Tracey
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: ColdFusion trend?

2006-10-17 Thread George Lu
:(
On 18/10/06, Barry Beattie [EMAIL PROTECTED] wrote:
 but he insisted your guys are senior Cold Fusion developersheaven help his impression of us, then
On 10/18/06, George Lu [EMAIL PROTECTED] wrote: Darren, Thanks for your advice. Actually my boss was quite interested to this thread
 but he insisted your guys are senior Cold Fusion developers and asked me to seek advice from independent players. George On 17/10/06, Darren Tracey 
[EMAIL PROTECTED] wrote:   Barry,   I don't think kittens class as wildlife.  I think the Australian environment would greatly benefit from vast  quantities of kittens being shipped out of Australia.
   I have visions of vast herds of Aussie school children combing alleys,  backyards and bushland for any unguarded kittens and earning pocket  money (and valuable export dollars) by shipping them to, according to
  this page:  http://www.google.com/trends?q=kittensctab=1geo=alldate=all  New Zealand, or even the UK.
  Google does make the world a happier place!   George,  I'm hoping you can provide your Boss with a shortened version of this  thread pointing out just how unreliable the Google Trends tool is for
  basing such an important business decision. He needs to realise that  these results do not indicate pages written in these languages. It  seems to be just the number of times those specific words (and they can
  be way out of context too) are used in pages that Google has indexed.   Darren Tracey   
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: ColdFusion trend?

2006-10-17 Thread George Lu
Thanks Dale. I'll try it although I've never written ASP.NET.
On 18/10/06, Dale Fraser [EMAIL PROTECTED] wrote:



To get independent advice is hard.

You need to find someone who knows what both .NET and CF are but don't use either.

Which probably means asking a Java or PHP person.

They will probably both say .NET for OO reasons, but that's just a guess.

You should sit down and write some simple program in CF  
ASP.NET and print out the code (including the hidden code behind stuff in .NET) and see which one he would rather pay someone to write.

RegardsDale Fraser
http://dale.fraser.id.au






From:
 cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com] On Behalf Of George LuSent: Wednesday, 18 October 2006 13:14 PM
To: cfaussie@googlegroups.comSubject: [cfaussie] Re: ColdFusion trend?



Darren,




Thanks for your advice. Actually my boss was quite interested to this thread but he insisted your guys are 
senior Cold Fusion developers and asked me to seek advice from independent players. George



On 17/10/06, Darren Tracey 
[EMAIL PROTECTED] wrote: 
Barry,I don't think kittens class as wildlife.I think the Australian environment would greatly benefit from vast 
quantities of kittens being shipped out of Australia.I have visions of vast herds of Aussie school children combing alleys,backyards and bushland for any unguarded kittens and earning pocketmoney (and valuable export dollars) by shipping them to, according to 
this page:http://www.google.com/trends?q=kittensctab=1geo=alldate=all
New Zealand, or even the UK.Google does make the world a happier place! George,I'm hoping you can provide your Boss with a shortened version of thisthread pointing out just how unreliable the Google Trends tool is for
basing such an important business decision. He needs to realise that these results do not indicate pages written in these languages. Itseems to be just the number of times those specific words (and they can
be way out of context too) are used in pages that Google has indexed.Darren Tracey

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: CF 7 installation issues (uninstall CFMX 6.1)

2006-10-17 Thread George Lu
Thank you Charlie. I've done those steps you suggested. Let's see how it goes.

George
On 18/10/06, Charlie Arehart [EMAIL PROTECTED] wrote:


Well, if an uninstall doesn't work, here's a workaround: just go into the Windows Services panel (from control paneladministrative tools) and a) stop the CF 
6.1 instance and b) set its properties to disabled so that it no longer runs. Don't forget to turn off all services related to 6.1 (and not 7). They all start with ColdFusion MX as opposed to ColdFusion MX 7. Hope that helps.


/charlie
http://www.carehart.org/blog/



From: cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com] On Behalf Of George LuSent: Monday, October 16, 2006 7:16 PMTo: CFAussie Mailing ListSubject: [cfaussie] CF 7 installation issues (uninstall CFMX 6.1)



Hi,

I've got two Windows servers. I've installed CF7 over CFMX6.1 in both servers. The problem is the old CF server (6.1) is still existing (the service is still running). Specially both Scheduler (6.1  7) are running same schedules. I've tried to remove (uninstall)CFMX 
6.1 in one of the server but it made CF Admin disappear. How can I get rid of CFMX 6.1 completely without affect CF7?

Thanks,
George
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: VIC UG

2006-10-16 Thread George Lu
It'll be good if we can get Max update at the meeting :)
On 16/10/06, Dale Fraser [EMAIL PROTECTED] wrote:



Ahh Dam,

At Max next week, but the show must go on.

I'm happy to give a Max update if it was the week after.

Thanks Steve.

RegardsDale Fraser
http://dale.fraser.id.au






From:
 cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com] On Behalf Of Steve OnnisSent: Monday, 16 October 2006 15:40 PM
To: cfaussie@googlegroups.comSubject: [cfaussie] Re: VIC UG


Next week

Just finalizing presentations and stuff

Will be an email going out this week when all the details are confirmed with the new venue and so on


Steve





From:
 cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com] On Behalf Of Dale FraserSent: Monday, 16 October 2006 3:38 PM
To: cfaussie@googlegroups.comSubject: [cfaussie] VIC UG


Might seem like I complain a bit,

But what's happening with the VIC UG, I really loved the Flex 2 stuff and was looking forward to the next talk to CF bits.

We have a new venue, a topic and people waiting.

So I really don't see what the hold-up is.

RegardsDale Fraser
http://dale.fraser.id.au




lang=EN-US
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread George Lu
>From the graph, you can see ASP.NET is very popular or more search in India...
On 17/10/06, Dale Fraser [EMAIL PROTECTED] wrote:
If you look at the number references you will realise that the words are NOTprogramming specific.
So when searching for flash, lots of this will be flash memory and flashcamera related.Java also is a Country and benefits from this one.
http://www.google.com/trends?q=jsp%2C+asp%2C+coldfusion%2C+phpctab=1geo=AUdate=allOverall all interest in web programming is dying and we should all seriouslyconsider our futures. I think I'd like to open a Pizza shop.
RegardsDale Fraser-Original Message-From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com
] On BehalfOf Chris VelevitchSent: Tuesday, 17 October 2006 12:22 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] Re: ColdFusion trend?On 10/17/06, Darren Tracey 
[EMAIL PROTECTED] wrote:http://www.google.com/trends?q=google%2C+ebay%2C+coldfusion%2C+asp.net%2C+ja
vactab=1geo=AUdate=all all web development is stagnating and we should all just use Google and eBay instead.Maybe so, but look at how Flash dominates ;-)
http://www.google.com/trends?q=flash%2C+asp.net%2C+java%2C+coldfusionctab=1geo=AUdate=allChris--Chris VelevitchManager - Sydney Flash Platform Developers Groupm: 0415 469 095
www.flashdev.org.au

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: VIC UG

2006-10-16 Thread George Lu
Sounds good for me.
On 17/10/06, Steve Onnis [EMAIL PROTECTED] wrote:
Ok people who would be coming to the CFUG meeting. We happy to postpone ittill first week in November?
-Original Message-From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On BehalfOf Bjorn Schultheiss
Sent: Tuesday, 17 October 2006 1:03 PMTo: cfaussie@googlegroups.comSubject: [cfaussie] Re: VIC UGAcrobat Connectos :PYo Steve,Can we postpone till Dale gets back.
I would love to hear what the man has to say about his Las Vegas journey.Hey Dale,Are you taking a cam with you, bring back some goodies for the group :)Bjorn-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On BehalfOf Peter TilbrookSent: Monday, 16 October 2006 5:07 PM
To: cfaussie@googlegroups.comSubject: [cfaussie] Re: VIC UGFingers crossed Adobe will make a few Breezos (or whatever they callit now) availble ;)
On 16/10/06, Mark Mandel [EMAIL PROTECTED] wrote: Maybe Dale - when you come back - do a MAX conference roundup for us? That'd be cool!
 Mark On 10/16/06, George Lu [EMAIL PROTECTED] wrote:  It'll be good if we can get Max update at the meeting :)  
   On 16/10/06, Dale Fraser [EMAIL PROTECTED] wrote:   Ahh Dam,
 At Max next week, but the show must go on. I'm happy to give a Max update if it was the week after.
 Thanks Steve.   Regards   Dale Fraser 
http://dale.fraser.id.au     From: 
cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com] On  Behalf Of Steve Onnis   Sent: Monday, 16 October 2006 15:40 PM   To: 
cfaussie@googlegroups.com   Subject: [cfaussie] Re: VIC UG Next week  
   Just finalizing presentations and stuff Will be an email going out this week when all the details are
confirmed  with the new venue and so on Steve 
  From: cfaussie@googlegroups.com [mailto: cfaussie@googlegroups.com] On  Behalf Of Dale Fraser
   Sent: Monday, 16 October 2006 3:38 PM   To: cfaussie@googlegroups.com   Subject: [cfaussie] VIC UG
 Might seem like I complain a bit, But what's happening with the VIC UG, I really loved the Flex 2 stuffand
  was looking forward to the next talk to CF bits. We have a new venue, a topic and people waiting.  
   So I really don't see what the hold-up is.   Regards   Dale Fraser 
http://dale.fraser.id.au lang=EN-US
  -- E: [EMAIL PROTECTED] W: 
www.compoundtheory.com --Peter TilbrookColdGen Internet SolutionsManager, ACT and Region ColdFusion Users GroupPO Box 2247Queanbeyan, NSW, 2620AUSTRALIA
http://www.coldgen.com/http://www.actcfug.com/Tel: +61-2-6284-2727Mob: +61-0432-897-437Email: 
[EMAIL PROTECTED]
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: ColdFusion trend?

2006-10-16 Thread George Lu
Thank so much Barry and all other people in this thread. It does very help. Now I'm confident with CF. I've already passed your answers and this thread to my boss.
On 17/10/06, Barry Beattie [EMAIL PROTECTED] wrote:
So George... does this help?that your boss should stop worrying about platforms, ColdFusion or
whatever and get into smuggling wildlife out of the country?I'm glad we can all gang together and come up with such a worthwhilesolution for you.Enjoy!On 10/17/06, Bjorn Schultheiss 
[EMAIL PROTECTED] wrote: So what are you saying Mark, we should be exporting kittens...? Hmmm, i'll see what i can organise.
 -Original Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Mark Mandel
 Sent: Tuesday, 17 October 2006 12:51 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: ColdFusion trend? Well.. actually.. you are right..
 http://www.google.com/trends?q=kittens%2C+Coldfusion%2C+OO%2C+off+shore+outs ourcingctab=0geo=alldate=all
 Mark On 10/17/06, Darren Tracey [EMAIL PROTECTED] wrote:   If you look at this one, you'll see that we should all get into these
  'jobs' things. They seem quite popular too.   Google Trends. What a silly and fundamentally useless thing. (Its still  cool though)  I'll have great fun using this to justify whatever bizarre scheme I
  next need to convince someone of.  As you can see here, Google shows that kittens are currently trending  much higher than either OO developement or off shore outsourcing.
   Darren Tracey  -- E: [EMAIL PROTECTED] W: 
www.compoundtheory.com 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: webDU 2007: 22-23 March 2007, Hilton Sydney

2006-10-12 Thread George Lu
I agree with Dale too. I've attended the first conference in 2003. At that time, I'd had to get our company's CEO to approve my interstate travelling because it's not in Melbourne. So I've given up following events since it was too much for me. 


I hope Adobe will organise similar events like Macromedia did in every state as I understand it's impossible for Daemon.

George Lu
Web Developer
www.ames.net.au
On 12/10/06, Andrew Scott [EMAIL PROTECTED] wrote:
Dale,I will also agree with you, I have never been to webDU for the reason that Iwould personally have to find the money for the accommodation and flight.
Everyone else,And I will also say that why is MS successful, road shows.I realise that this is done of the backs of peoples kindness, but lets lookat the bigger picture. There are more people who can't make it than those
that do, and to have it travel as Dale said opens up more awareness.Coldfusion has a serious problem, and that is awarness and having to competewith OpenSource or free alternatives, but how many bigger businesses might
attend if there was more exposure in that state?Senior Coldfusion DeveloperAegeon Pty. Ltd.www.aegeon.com.auPhone: +6138676 4223Mobile: 0404 998 273

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] I've got a strange cf error

2006-09-27 Thread George Lu
Hi,

I've got this error when I submit a form for verity search:

--
Attribute validation error for tag Search.




The tag does not have an attribute called form. The valid attribute(s) are collection, name, type, criteria, previousCriteria, maxrows, startrow, language, external, status, contextPassages, contextBytes, contextHighlightBegin, contextHighlightEnd, suggestions, category, categorytree. 




ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem.
 


It couldn't stop even I've put cfabort on the top. Please help.

George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: I've got a strange cf error

2006-09-27 Thread George Lu
Thanks Steve. I think I was blind... it works after removed form.

George
On 28/09/06, Steve Onnis [EMAIL PROTECTED] wrote:
 

looks pretty obvious to me

The tag does not have an attribute called form

You have a form attribute in your CFSEARCH tag

You wont be able to catch it cause its a runtime error
Steve


-Original Message-From: cfaussie@googlegroups.com
 [mailto:cfaussie@googlegroups.com]On Behalf Of George LuSent: Thursday, September 28, 2006 11:05 AM
To: CFAussie Mailing ListSubject: [cfaussie] I've got a strange cf error
Hi,

I've got this error when I submit a form for verity search:

--
Attribute validation error for tag Search.




The tag does not have an attribute called form. The valid attribute(s) are collection, name, type, criteria, previousCriteria, maxrows, startrow, language, external, status, contextPassages, contextBytes, contextHighlightBegin, contextHighlightEnd, suggestions, category, categorytree. 




ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem. 



It couldn't stop even I've put cfabort on the top. Please help.

George
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---



[cfaussie] Re: I've got a strange cf error

2006-09-27 Thread George Lu
Thank you Andrew. The form was here (I don't know how it's got there):

cfsearch name=Search1collection=Intranet-Search MAXROWS=1form type=Simplecriteria=#session.searchstring#
On 28/09/06, Andrew Mercer [EMAIL PROTECTED] wrote:
This is a compile error, not a run-time error, so cfabort wont help you.so in the verity tag you are using, do you have FORM=?
I am guessing for want to pass the FORM scope in as an agument - might be needing the #s 

On 9/28/06, George Lu [EMAIL PROTECTED] wrote:
 

Hi,

I've got this error when I submit a form for verity search:

--
Attribute validation error for tag Search.




The tag does not have an attribute called form. The valid attribute(s) are collection, name, type, criteria, previousCriteria, maxrows, startrow, language, external, status, contextPassages, contextBytes, contextHighlightBegin, contextHighlightEnd, suggestions, category, categorytree. 




ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem. 



It couldn't stop even I've put cfabort on the top. Please help.

George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Verity K2 server in CF7

2006-09-27 Thread George Lu
I'm currently using the Verity indexing engine for indexing and search. It's very slow and returns duplicated records. Is the engine using K2 Server for indexing? How can I optimise the collection?

George

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: CF schedule

2006-09-10 Thread George Lu
Thank you Steve for suggestions.

I've chosen the second option - set up two monthly tasks. I can't enter more than two digits in the first option.
Cheers,
George
On 11/09/06, Steve Onnis [EMAIL PROTECTED] wrote:



you could do it daily but set the hours value to 336 so the task will repeat every 336 hours which is 2 weeks

or

set 2 tasks up for monthly but have 1 start at the start of the month and the other to start in the middle of the month so between the two tasks, they will happen every 2 weeks


or

set it up for weekly and have some code in your scripts to detect if its a fortnight or not. If it is then run and if not don't run anything

Few options for you
Steve


-Original Message-From: cfaussie@googlegroups.com
 [mailto:cfaussie@googlegroups.com]On Behalf Of George LuSent: Monday, September 11, 2006 11:58 AM
To: CFAussie Mailing ListSubject: [cfaussie] CF schedule
Hi,

How can I create a scheduled task recurring fortnightly? In CF admin, it only give options monthly, weekly and daily.

Thanks,

George



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: CF schedule

2006-09-10 Thread George Lu
Yes... I've done this:

CFSCHEDULE action="" task=reminder operation=HTTPRequest url="" href="http:///#http_host#/mytask.cfm">http://#http_host#/mytask.cfm startdate=1-Oct-2006 starttime=6:00 interval=1209600 resolveurl=no publish=no


It's created a task run daily every 336 hours.

Thanks again.
On 11/09/06, Steve Onnis [EMAIL PROTECTED] wrote:



could try doing it via script to add it in


-Original Message-From: cfaussie@googlegroups.com [mailto:
cfaussie@googlegroups.com]On Behalf Of George Lu
Sent: Monday, September 11, 2006 12:59 PMTo: 
cfaussie@googlegroups.comSubject: [cfaussie] Re: CF schedule


Thank you Steve for suggestions.

I've chosen the second option - set up two monthly tasks. I can't enter more than two digits in the first option.
Cheers,
George
On 11/09/06, Steve Onnis [EMAIL PROTECTED]
 wrote: 



you could do it daily but set the hours value to 336 so the task will repeat every 336 hours which is 2 weeks

or

set 2 tasks up for monthly but have 1 start at the start of the month and the other to start in the middle of the month so between the two tasks, they will happen every 2 weeks 


or

set it up for weekly and have some code in your scripts to detect if its a fortnight or not. If it is then run and if not don't run anything

Few options for you
Steve


-Original Message-From: cfaussie@googlegroups.com 
[mailto:cfaussie@googlegroups.com]On Behalf Of George LuSent: Monday, September 11, 2006 11:58 AM 
To: CFAussie Mailing ListSubject: [cfaussie] CF schedule
Hi,

How can I create a scheduled task recurring fortnightly? In CF admin, it only give options monthly, weekly and daily.

Thanks,

George




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Australian Flex Mailing List [flexaussie]

2006-08-31 Thread George Lu
Thanks Bjorn. I'll subscribe it.

George
On 31/08/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote:
Hey Guys,I've started a new flex mailing list for us Aussies!This not an effort to move Australian developers away from using FlexCoders,
rather it may be useful for Aussie developers to post messages that may notbe suitable for the international list.Anyway the details.http://groups.yahoo.com/group/flexaussie/
Post message: [EMAIL PROTECTED]Subscribe:[EMAIL PROTECTED]
Regards,Bjorn SchultheissSenior Flash DeveloperQDC Technologies

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: Last nights usergroup meeting

2006-08-31 Thread George Lu
A bit far away for me...
On 01/09/06, Mark Mandel [EMAIL PROTECTED] wrote:
Btw all -I got told today if we want to do CFUG meetings here (Raglan St, Sth Melbourne)
Would people like tha as a venue?MarkOn 9/1/06, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Yeah The next one we'll go hard into CF/Flex and then intro into FDS.
 FDS is really cool but complex. CF/Flex rocks.. The next meeting will be a good one. In the meantime post your work flexaussie list. Guys need any help i'll be there.
 Regards, Bjorn Schultheiss Senior Flash Developer QDC Technologies--E: [EMAIL PROTECTED]W: 
www.compoundtheory.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---


[cfaussie] Re: VIC UG Numbers

2006-08-31 Thread George Lu
Hi Dale,

I was there for Flex though I'm a CF developer. Plus also this location was the best so far I can reach (even I still need to drive 30 mins in the freeway  highway).

George

ps. I was using Flash Form in CF7 for our IT help desk system. I'd like to convert it to Flex 2.

On 01/09/06, Dale Fraser [EMAIL PROTECTED] wrote:
I wanted to do this last night but forgot.If you were at the usergroup last night,
Can you let us know if you were there just because of the Flex stuff or forColdfusion.I've attached voting to this email so you can either click (assuming thisworks through groups) or just email back.
Also, Steve / anyone count how many people were there?RegardsDale Fraserhttp://dale.fraser.id.au
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---