[cfaussie] Re: It's Going To Be Brilliant

2008-09-01 Thread AJ Mercer
CFUGWA will be holding an event in Perth http://cfugwa.com/go/events/user-group-meeting-september-2008 I imagine other states will be doing something too On Mon, Sep 1, 2008 at 1:33 PM, Steve Onnis [EMAIL PROTECTED] wrote: Chris Is it possible to have this available via connect for

[cfaussie] Re: It's Going To Be Brilliant

2008-09-01 Thread Rae Buerckner
Here's the ACT APUG announce... Meet on Thursday, 2nd October at 6pm for 6:30 start Be one of the first to see the next big thing from Adobe on Monday 29th September. Join in to see and hear first hand how something very special will help you get to brilliant faster. Save the date and get a good

[cfaussie] cfqueryparam list

2008-09-01 Thread Leroy
Hi, I am wondering if anyone has came across similar problem when using cfquery and cfqueryparam with list. If my list is more than 2000 elements, it fails. cfquery name=testLoop datasource=dsn SELECT * FROM table WHERE the_id IN (cfqueryparam value=#valueList(list.the_id)#

[cfaussie] Re: cfqueryparam list

2008-09-01 Thread Zac Spitzer
there are limits, 2000 is a lot of data to pump into a query. try inserting your values in to a temp table and refer to that instead, or try the_id in ( first_100 ids) or the_id in ( second_1000 ids) z On Mon, Sep 1, 2008 at 5:36 PM, Leroy [EMAIL PROTECTED] wrote: Hi, I am wondering if

[cfaussie] Re: Silent Printing to a Named Printer

2008-09-01 Thread David Beaumont
Barry, to answer your question... We'd like to keep this as a web app and not start installing stuff on the client end if possible. I guess what makes this somewhat more complicated is the hosted mode of application delivery - we have a number of clients that have already moved in this

[cfaussie] Re: cfqueryparam list

2008-09-01 Thread Steve Onnis
Or use a subselect if you can _ From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Zac Spitzer Sent: Monday, 1 September 2008 5:46 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: cfqueryparam list there are limits, 2000 is a lot of data to pump into a

[cfaussie] Re: Silent Printing to a Named Printer

2008-09-01 Thread Barry Beattie
Hi David then you may be out of options. this article covers more of the issues in better details than I can give at the moment. http://javascript.about.com/od/events/a/print.htm but the bottom line is a CF app can't control anything on the client machine, at least anything that the browser

[cfaussie] Re: Silent Printing to a Named Printer

2008-09-01 Thread Barry Beattie
last point from me for the night: installing an AIR widget onto a client machine (esp with the badge install) is a pretty painless exercise. Keeping it up to date with the latest version of your widget isn't bad either. it's getting the user (client) to click on the install now button that's

[cfaussie] OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
Has anyone played with logging IIS log files to a network path? I seem to be able to point it to the folder by nothing seems to write to it. I am wondering if it is a permissions thing but I don't know what user the IIS web server would use to write to the file system Steve

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
Kym What I am wanting to do it log them to a file server. Currently I am logging locally but my stats server grabs the log files across the network and processes them. Was hoping I could just log it all directly to the stats server. -Original Message- From:

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Andrew Scott
Would logging to a DB be far simpler? -- 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 Steve Onnis Sent: Monday, 1 September 2008

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
The logging to the database option does not log all the columns that you can log to a txt file, otherwise that's what I would be doing -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Monday, 1 September 2008 10:11 PM To:

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Andrew Scott
Wasn't sure, thought I would ask. -- 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 Steve Onnis Sent: Monday, 1 September 2008 10:13 PM

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Barry Beattie
is there no way to point IIS to a file share for where the log files live? IIS says they _have_ to be on it's local machine? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group,

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
IIS will point to it, but I think because the iuser user doesn't have write permissions it wont write there -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Barry Beattie Sent: Monday, 1 September 2008 10:26 PM To: cfaussie@googlegroups.com

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread MrBuzzy
Are you sure it's the iuser_? Try changing the start up user on the 'World Wide Web Publishing Service. On Mon, Sep 1, 2008 at 10:28 PM, Steve Onnis [EMAIL PROTECTED] wrote: IIS will point to it, but I think because the iuser user doesn't have write permissions it wont write there

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Kym Kovan
Steve Onnis wrote: Kym What I am wanting to do it log them to a file server. Currently I am logging locally but my stats server grabs the log files across the network and processes them. Was hoping I could just log it all directly to the stats server. That is exactly what we were

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Kym Kovan
MrBuzzy wrote: Are you sure it's the iuser_? Try changing the start up user on the 'World Wide Web Publishing Service. That is entertaining, but possible. The IUSR_ user pops up all over the place, it's is one of Microsoft's wonder designs. As you cannot get at its password on some

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
Also logging to a database isnt going to work with my web stats software I don't think so not really an option -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Scott Sent: Monday, 1 September 2008 10:18 PM To: cfaussie@googlegroups.com

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread Steve Onnis
I'm not going to. I really don't want to be messing with the web server service user security. I am going to try and set up a schedule to move the files from each of the servers onto the file server and see how I go with that. Also the write delay I can envisage is going to cause me problems

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread MrBuzzy
How did you go, try changing the service user? On Mon, Sep 1, 2008 at 11:12 PM, Steve Onnis [EMAIL PROTECTED] wrote: Also logging to a database isnt going to work with my web stats software I don't think so not really an option -Original Message- From: cfaussie@googlegroups.com

[cfaussie] Re: OT : Logging IIS log files across a network

2008-09-01 Thread MrBuzzy
Fair enough, although it's not as bad as it sounds. Sometimes it's good to try these things to get a better understanding. Not sure what you mean by 'user security'. As Kym It's much better to write the logs local to the web server, as web performance is primary. Reading/analyzing logs is

[cfaussie] Re: Silent Printing to a Named Printer

2008-09-01 Thread Chris Velevitch
On Mon, Sep 1, 2008 at 5:46 PM, David Beaumont [EMAIL PROTECTED] wrote: We'd like to keep this as a web app and not start installing stuff on the client end if possible. I guess what makes this somewhat more complicated is the hosted mode of application delivery - we have a number of clients

[cfaussie] CF8 For Sale

2008-09-01 Thread Ben Snart
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] Re: variables in cf

2008-09-01 Thread Taco Fleur
Hi, That's incorrect, you'd use ## for example if you need to evaluate a variable in a string, like so cfset myVar = Some text #variables.myVariable# more text Following does not need ## around a variable cfset myVar = variables.myVariable Passing them into a function does not require pound

[cfaussie] Re: variables in cf

2008-09-01 Thread Andrew Scott
Yep and there are some exceptions to tags as well. For example cfoutput query=queryName /cfoutput Notice no #'s as the tag will evaluate the variable -- Senior Coldfusion Developer Aegeon Pty. Ltd. http://www.aegeon.com.au/ www.aegeon.com.au Phone: +613 9015 8628 Mobile: 0404

[cfaussie] Re: variables in cf

2008-09-01 Thread Barry Beattie
where it gets tricky is struct's (the key names) and queries cfset keyOne = One / cfset ans = myStruct[keyOne] / which is the same as cfset ans = myStruct.one / NOTE: you don't need to go cfset ans = myStruct[#keyOne#] / since keyOne is a variable and the evaluation is done by the struct BUT