[cfaussie] Re: Amazon EC2 hosting services viability

2011-09-07 Thread Steve Onnis
to reduce cost If you don't need for any of those, then you probably shouldn't go with EC2. Blair On Thu, Sep 8, 2011 at 2:24 PM, Steve Onnis st...@cfcentral.com.au wrote: my disaster plan is an open ended ticket to mexico! :)  kidding bi-daily backups etc The thing is even with all

[cfaussie] Re: empty HTML emails in Gmail sent from coldfusion

2011-08-24 Thread Steve Onnis
Yeah i have I dont think gmail likes the html mime part like that. Try this cfmail from=#arguments.sFrom# to=#arguments.sRecipients# subject=#arguments.sSubject# failto=testf...@lmassey.ac.nz type=htmlcfoutput#arguments.sContent#/cfoutput cfmailpart type=textThis email is in html format

[cfaussie] ColdFusion + JSON = grrrrrrr

2011-08-05 Thread Steve Onnis
I have some JSON data being generated via javascript which is being submitted to a page. The JSON object is an array of structures and i need to make sure each structure in the array contains a particular value/pair and if it doesn't i need to insert it in. ** This is the JSON string before CF

RE: [cfaussie] ColdFusion + JSON = grrrrrrr

2011-08-05 Thread Steve Onnis
is the return type? On Fri, Aug 5, 2011 at 5:55 PM, Steve Onnis st...@cfcentral.com.au wrote: I have some JSON data being generated via javascript which is being submitted to a page.  The JSON object is an array of structures and i need to make sure each structure in the array contains a particular value

RE: [cfaussie] ColdFusion + JSON = grrrrrrr

2011-08-05 Thread Steve Onnis
is the return type? On Fri, Aug 5, 2011 at 5:55 PM, Steve Onnis st...@cfcentral.com.au wrote: I have some JSON data being generated via javascript which is being submitted to a page.  The JSON object is an array of structures and i need to make sure each structure in the array contains

[cfaussie] Converting boolean YES to true

2011-08-04 Thread Steve Onnis
I have been coming across this issue more and more when dealing with JavaScript and JSON which is ColdFusion changing true|false to YES|NO values. For example:- cfset foo = true / cfoutput#foo#/cfoutput = true cfset foo = !foo / cfoutput#foo#/cfoutput = NO Now take this JSON

RE: [cfaussie] Converting boolean YES to true

2011-08-04 Thread Steve Onnis
http://stackoverflow.com/questions/1867728/how-can-i-prevent-serializejson-f rom-changing-yes-no-true-false-strings-to-boolea/6661460#6661460 z On Thu, Aug 4, 2011 at 4:39 PM, Steve Onnis st...@cfcentral.com.au wrote: I have been coming across this issue more and more when dealing

RE: [cfaussie] Converting boolean YES to true

2011-08-04 Thread Steve Onnis
, 2011 at 4:39 PM, Steve Onnis st...@cfcentral.com.au wrote: I have been coming across this issue more and more when dealing with JavaScript and JSON which is ColdFusion changing true|false to YES|NO values. For example:- cfset foo = true / cfoutput#foo#/cfoutput = true cfset foo = !foo

RE: [cfaussie] Converting boolean YES to true

2011-08-04 Thread Steve Onnis
Its odd that !true is NO but cant you just use if/else to accomplish this till(if) Adobe fix this? Paul On Thu, Aug 4, 2011 at 5:04 PM, Steve Onnis st...@cfcentral.com.au wrote: And that is dealing with the structures itself. I am dealing with single variables as per my example. No json

RE: [cfaussie] Converting boolean YES to true

2011-08-04 Thread Steve Onnis
They can leave it as it is. If they add a toBoolean() function then the existing functionality can remain but we can use this function to actually give a proper Boolean value From: Chong [mailto:kck...@gmail.com] Sent: Thursday, 4 August 2011 5:31 PM To: cfaussie@googlegroups.com Subject:

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread Steve Onnis
] On Behalf Of Steve Onnis Sent: Thursday, August 04, 2011 12:58 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function I am passing some JSON strings around which i want to just encode and decode elsewhere -Original Message- From: Zac Spitzer

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread Steve Onnis
not at all trying to be snarky in all this. Just really trying to help (and help others help you). /charlie -Original Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis Sent: Thursday, August 04, 2011 10:11 AM To: cfaussie@googlegroups.com

RE: [cfaussie] Re: ColdFusion, Tomcat, IIS7 question

2011-08-03 Thread Steve Onnis
No such thing as a stupid question, only stupid answers :) -Original Message- From: nkosi [mailto:glenrainb...@gmail.com] Sent: Thursday, 4 August 2011 1:49 PM To: cfaussie Subject: [cfaussie] Re: ColdFusion, Tomcat, IIS7 question The only stupid question is the one left unasked ...

[cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
Does anyone know if there is a JavaScript equivelant to the coldfusion HASH() function? 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

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
then: http://pajhome.org.uk/crypt/md5/ Works well. Paul On Thu, Aug 4, 2011 at 2:33 PM, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if there is a JavaScript equivelant to the coldfusion HASH() function? Steve -- You received this message because you are subscribed

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
hash by default is MD5 as long as you are using md5 then: http://pajhome.org.uk/crypt/md5/ Works well. Paul On Thu, Aug 4, 2011 at 2:33 PM, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if there is a JavaScript equivelant to the coldfusion HASH() function? Steve

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
bcrypt is pretty good, but the main problem with any decent encryption in js is as usual IE which is slow and good encryption needs to be complex... wouldn't using SSL suffice? http://code.google.com/p/javascript-bcrypt/ On Thu, Aug 4, 2011 at 2:48 PM, Steve Onnis st...@cfcentral.com.au wrote

RE: [cfaussie] Re: Preserve Carriage returns from textarea in HTML mail.

2011-08-01 Thread Steve Onnis
If you are using Outlook as your mail client, make sure Outlook has not removed the line breaks. I often get a little bar at the top of the email saying Extra line breaks in this message were removed and then if you right client on it you have the option to Restore line breaks -Original

[cfaussie] Re: Capturing a webcam image via ColdFusion

2011-07-28 Thread Steve Onnis
Just use flex. You don’t need flash media server. Use the flash.media.Camera library to create a little app that hooks into the webcam to take a photo and then push the binary data up to the server using remoting -- You received this message because you are subscribed to the Google Groups

RE: [cfaussie] Re: Capturing a webcam image via ColdFusion

2011-07-28 Thread Steve Onnis
/ ABN: 80 826 226 128 On 28 July 2011 22:36, Steve Onnis st...@cfcentral.com.au wrote: Just use flex. You don't need flash media server. Use the flash.media.Camera library to create a little app that hooks into the webcam to take a photo and then push the binary data up to the server using

RE: [cfaussie] MAD! Melbourne Adobe Developers meeting for Thursday 21 July 2011. Who's coming???

2011-07-22 Thread Steve Onnis
Did someone just start up their email client? :) -Original Message- From: Peter Robertson [mailto:peter.r.robert...@gmail.com] Sent: Wednesday, 20 July 2011 4:22 PM To: cfaussie Subject: [cfaussie] MAD! Melbourne Adobe Developers meeting for Thursday 21 July 2011. Who's coming??? Hi

[cfaussie] REMINDER : Melbourne Adobe Developers next meeting, 21st July 2011, presentation details

2011-07-20 Thread Steve Onnis
and CogState for their hospitality. We look forward to seeing you all there. Peter Robertson Co-Manager Melbourne Adobe Developers Steve Onnis Manager Melbourne Adobe Developers -- You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group

RE: [cfaussie] CF9 Event Gateway

2011-07-19 Thread Steve Onnis
Are you going to be writing your own application on the mobile device to connect to the CF server? From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Wednesday, 20 July 2011 11:42 AM To: cfaussie@googlegroups.com Subject: [cfaussie] CF9 Event Gateway Hi, I am wanting to

RE: [cfaussie] cfaussie] CF9 Event Gateway

2011-07-19 Thread Steve Onnis
sql database tables Regards Claude Raiola (B.Econ Acc; B.Hot. Mngt) From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis Sent: Wednesday, 20 July 2011 11:46 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] CF9 Event Gateway Are you going

[cfaussie] implicit getters and setters

2011-07-18 Thread Steve Onnis
Do these get created automatically for all CFCs now or is it only for the ORM side of things? 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,

RE: [cfaussie] import dynamic location

2011-07-18 Thread Steve Onnis
, not runtime. yes? (lets see if I've still got brain cells left). On Mon, Jul 18, 2011 at 4:01 PM, Paul Kukiel kuki...@gmail.com wrote: No you must specify a real location for this and not a variable. Paul. On Mon, Jul 18, 2011 at 3:51 PM, Steve Onnis st...@cfcentral.com.au wrote: Can you use

RE: [cfaussie] implicit getters and setters

2011-07-18 Thread Steve Onnis
. On Mon, Jul 18, 2011 at 4:04 PM, Steve Onnis st...@cfcentral.com.au wrote: Do these get created automatically for all CFCs now or is it only for the ORM side of things? Steve -- You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send

[cfaussie] Query of Query question

2011-07-18 Thread Steve Onnis
Can you not do a QofQ on a LOCAL variable? I tried to do this cfquery dbtype=query name=LOCAL.d SELECT * FROM LOCAL.d /cfquery And i get Query Of Queries syntax error. Encountered LOCAL. As an error. Am i right in guessing it might have something to do

RE: [cfaussie] Query of Query question

2011-07-18 Thread Steve Onnis
18, 2011 at 4:38 PM, Steve Onnis st...@cfcentral.com.au wrote: Can you not do a QofQ on a LOCAL variable? I tried to do this cfquery dbtype=query name=LOCAL.d SELECT * FROM LOCAL.d /cfquery And i get Query Of Queries syntax error. Encountered LOCAL. As an error

[cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Steve Onnis
Has anyone played around with this? I am resizing a transparent GIF and it is resizing but the image is coming through with the colors inverted and the transparency is all black Any ideas? Steve -- You received this message because you are subscribed to the Google Groups cfaussie

RE: [cfaussie] CFIMAGE and transparent GIFs

2011-07-18 Thread Steve Onnis
Can you do this and then pass this into the cfimage processing? Or will that just screw it up again? From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Monday, 18 July 2011 7:07 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] CFIMAGE and transparent GIFs Steve, Here is

RE: [cfaussie] Re: CreateObject of itself

2011-07-18 Thread Steve Onnis
How would you even do it createObject? createObject(component, foo)() ? probably why you cant do it J From: Andrew Scott [mailto:andr...@andyscott.id.au] Sent: Monday, 18 July 2011 10:08 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Re: CreateObject of itself Yeah you

RE: [cfaussie] OT: JS rollovers

2011-07-18 Thread Steve Onnis
There are a few ways you can do this. The easiest way would be to have a div containing the html and then on hover use some javascript to display the item and position it. Are you using a javascript framework already in your application? From: Brian Knott [mailto:bkn...@jbk.com.au] Sent:

[cfaussie] import dynamic location

2011-07-17 Thread Steve Onnis
Can you use import with variable names? import #foo#.bar; ? 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

RE: [cfaussie] Re: I/O Exception: peer not authenticated

2011-07-14 Thread Steve Onnis
14, 4:08 pm, Steve Onnis st...@cfcentral.com.au wrote: For anyone who is interested, yes you have to install the certificate into ColdFusion but if you do upgrade the JVM and change the path in the CFAdmin, make sure you install the certificate again into the new JVM location as each JVM has

[cfaussie] CreateObject of itself

2011-07-13 Thread Steve Onnis
Can anyone suggest a way i can create a new reference to a cfc that i am already in? Something like FooBar.cfc cfcomponent cfproperty name=fooProp type=string / cffunction name=bar output=false cfscript LOCAL.tmpArr = [];

RE: [cfaussie] CreateObject of itself

2011-07-13 Thread Steve Onnis
duplicates the state of the instances variables in 'this', so it might not be what you want. Otherwise, try CreateObject(component,GetMetaData(this).name) or maybe CreateObject(component,GetMetaData(this).fullname). I'm not sure which is better. -- Dennis On 13 July 2011 20:37, Steve Onnis st

RE: [cfaussie] Re: CreateObject of itself

2011-07-13 Thread Steve Onnis
To: cfaussie Subject: [cfaussie] Re: CreateObject of itself Hi Steve, I believe this is what your trying to achieve: http://pastebin.com/hJmsEvaA Running code: http://demo.kukiel.net/cfaussie.cfm Paul On Jul 13, 8:37 pm, Steve Onnis st...@cfcentral.com.au wrote: Can anyone suggest a way i can

RE: [cfaussie] Re: CreateObject of itself

2011-07-13 Thread Steve Onnis
of itself Hi Steve, I believe this is what your trying to achieve: http://pastebin.com/hJmsEvaA Running code: http://demo.kukiel.net/cfaussie.cfm Paul On Jul 13, 8:37 pm, Steve Onnis st...@cfcentral.com.au wrote: Can anyone suggest a way i can create a new reference to a cfc that i am already

[cfaussie] ColdFusion 9 Server Memory Issues

2011-07-12 Thread Steve Onnis
Has anyone had any issues with CF9 and memory? I have this strange problem where it does not seem to be giving it enough. Looking at the windows task mananger the jrun.exe process seems to not want to go over 300,000-400,000 K -- You received this message because you are subscribed to the

RE: [cfaussie] ColdFusion 9 Server Memory Issues

2011-07-12 Thread Steve Onnis
PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] ColdFusion 9 Server Memory Issues what's your jvm parameters? On Wed, Jul 13, 2011 at 2:14 PM, Steve Onnis st...@cfcentral.com.au wrote: Has anyone had any issues with CF9 and memory?  I have this strange problem where it does not seem

RE: [cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-12 Thread Steve Onnis
Windows server? Is Windows CF 32 or 64 bit? Less than 500Mb RAM used by Jrun on a server installed with 4Gb RAM would seem reasonable to me. Regards, Carl. On Jul 13, 2:14 pm, Steve Onnis st...@cfcentral.com.au wrote: Has anyone had any issues with CF9 and memory?  I have this strange problem

RE: [cfaussie] Formatting spreadsheet cell issues

2011-07-04 Thread Steve Onnis
I posted this a few days back but no responses. Anyone have any thoughts or comments? From: Steve Onnis [mailto:st...@cfcentral.com.au] Sent: Thursday, 30 June 2011 3:14 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Formatting spreadsheet cell issues Does anyone know how

RE: [cfaussie] Formatting spreadsheet cell issues

2011-07-04 Thread Steve Onnis
down into java and run some test, or post some questions on their forums / stackoverflow.com On Tue, Jul 5, 2011 at 12:32 PM, Steve Onnis st...@cfcentral.com.au wrote: I posted this a few days back but no responses. Anyone have any thoughts or comments? From: Steve Onnis [mailto:st

RE: [cfaussie] Re: CFbuilder2 thoughts?

2011-07-01 Thread Steve Onnis
Do you have any projects setup that were pointed to files across a network and if so do you know if those projects are currently open? I know i have had issues with projects across a network opening slowly and seemingly crashing cfbuilder. I would suggest just opening it and leaving it it trying

RE: [cfaussie] Re: CFbuilder2 thoughts?

2011-07-01 Thread Steve Onnis
some chunky sql gateways cfc's I have the console open, see what happens, maybe I will see the heisenberg effect I tried the progress window, but it locked up with everything else BTW thanks everyone for taking the time to help out :) On Fri, Jul 1, 2011 at 6:14 PM, Steve Onnis st

[cfaussie] Formatting spreadsheet cell issues

2011-06-29 Thread Steve Onnis
than applying them in ranges. Is this correct? Is there another way to do this? The spread sheet only has 1600 rows and 4 columns so its not massive though seems to be big enough to cause this error. Regards Steve Onnis -- You received this message because you are subscribed to the Google

RE: [cfaussie] Re: cfquery cachedwithin

2011-06-21 Thread Steve Onnis
Do you really think that sort of language is needed or appropriate? From: Peter Tilbrook [mailto:peter.tilbr...@gmail.com] Sent: Tuesday, 21 June 2011 6:22 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] Re: cfquery cachedwithin Basterd ;) I think you are right - been a long

[cfaussie] Installing secure certificate

2011-06-13 Thread Steve Onnis
I am having some issues trying to get a certificate installed on a CF8 ENT server. I have used both the command line process and the portecle tool to try and get the certificate to install without much luck. I have restarted CF and the whole server and i am still getting the I/O Exception: peer

RE: [cfaussie] Re: Installing secure certificate

2011-06-13 Thread Steve Onnis
, Steve Onnis st...@cfcentral.com.au wrote: I am having some issues trying to get a certificate installed on a CF8 ENT server.  I have used both the command line process and the portecle tool to try and get the certificate to install without much luck. I have restarted CF and the whole server and i am

RE: [cfaussie] Installing secure certificate

2011-06-13 Thread Steve Onnis
for several years so was running on CF8 happily. I don't recall any issues with SSL. I'll look up the code tomorrow to see if I can add anything useful. Rawdy On Monday, June 13, 2011, Steve Onnis st...@cfcentral.com.au wrote: I have already done all this...as i mentioned in my initial email I

RE: [cfaussie] Scheduled Tasks - Where is the log file?

2011-06-13 Thread Steve Onnis
Have you turned it on? It is a setting under Debugging Logging Logging Settings From: Scott Thornton [mailto:scott.thorn...@hnehealth.nsw.gov.au] Sent: Tuesday, 14 June 2011 2:18 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Scheduled Tasks - Where is the log file? Hi, CF

[cfaussie] OT : Flash default frame rate

2011-05-25 Thread Steve Onnis
Does anyone know if the default fps has changed for flash between version releases? I have an old Flash 8 FLA that has 12fps though when i create a new flash document in CS5 it shows 24fps Steve -- You received this message because you are subscribed to the Google Groups cfaussie group. To

RE: [cfaussie] OT : Flash default frame rate

2011-05-25 Thread Steve Onnis
default frame rate I think this is at least partly due to the fact that modern machines have more powerful CPUs nowadays... :) Flash Pro CD 5.5 seems to default to 24fps also. On , Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if the default fps has changed for flash between

RE: [cfaussie] Re: ORM relationship to non id column

2011-05-19 Thread Steve Onnis
, but I can follow it - and I'm not a java coder by any stretch of the imagination. Gavin. On May 16, 2:14 pm, Steve Onnis st...@cfcentral.com.au wrote: I have an instance where i am trying to create a relationship between 2 tables, though i am wanting to just match up values in a column

RE: [cfaussie] MAD. Who wants pizza?

2011-05-19 Thread Steve Onnis
Hopefully the tucker will be there a little before 7pm so make sure you are there on time :) -Original Message- From: MrBuzzy [mailto:mrbu...@gmail.com] Sent: Thursday, 19 May 2011 2:36 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] MAD. Who wants pizza? Sorry won't be able to

RE: [cfaussie] MAD. Who wants pizza?

2011-05-19 Thread Steve Onnis
Mini pizzas it is then -Original Message- From: Dale Fraser [mailto:d...@fraser.id.au] Sent: Thursday, 19 May 2011 5:15 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] MAD. Who wants pizza? Well if there is no Pizza then im not coming, I expect 2 pizza's per person. Regards

RE: [cfaussie] Re: ORM relationship to non id column

2011-05-19 Thread Steve Onnis
/ mappedByColumn atribute (or similar) in CF-ORM properties. Perhaps the CF docs can help you with that? We might find that the attribute is actually the CF nice way of specifiying the KEY element in an XML file? Gavin. On May 19, 5:23 pm, Steve Onnis st...@cfcentral.com.au wrote: Im

RE: [cfaussie] Pop up text

2011-05-15 Thread Steve Onnis
Are you using a javascript framework like jquery or mootools? From: Brian Knott [mailto:bkn...@jbk.com.au] Sent: Monday, 16 May 2011 11:19 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Pop up text Guys just a quick HTML / CSS question. I want to have some text pop up when I

RE: [cfaussie] jQuery Tooltip

2011-05-15 Thread Steve Onnis
http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ From: Dale Fraser [mailto:d...@fraser.id.au] Sent: Monday, 16 May 2011 1:08 PM To: cfaussie@googlegroups.com Subject: [cfaussie] jQuery Tooltip Im looking for a simple (hopefully) example of this When I hover over something I

RE: [cfaussie] Re: Coldfusion Builder 2 is now available to buy or try

2011-05-04 Thread Steve Onnis
Anyone know how long until it is available on the partner portal for partners to download? -Original Message- From: charlie arehart [mailto:charlie_li...@carehart.org] Sent: Thursday, 5 May 2011 4:27 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] Re: Coldfusion Builder 2 is now

RE: [cfaussie] [ANN SYD] Tonight: Speed Matters

2011-05-01 Thread Steve Onnis
What are the chances of this being recorded somehow? -Original Message- From: Chris Velevitch [mailto:chris.velevi...@gmail.com] Sent: Monday, 2 May 2011 12:43 AM To: ap...@googlegroups.com; cfaussie@googlegroups.com; flashaus...@googlegroups.com; AirAussie; Flexaussie Subject:

RE: [cfaussie] Checking that column names in csv / excel file being uploaded match those required by my CF script

2011-04-20 Thread Steve Onnis
What version of cf are you running? From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Wednesday, 20 April 2011 3:07 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Checking that column names in csv / excel file being uploaded match those required by my CF script I have

RE: [cfaussie] Melbourne Adobe Developers (MAD, formerly Melbourne CFUG

2011-04-19 Thread Steve Onnis
Co-manager Melbourne Adobe Developers Steve Onnis Manager Melbourne Adobe Developers -- 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

RE: [cfaussie] Using CFHTTP

2011-04-03 Thread Steve Onnis
FTP and POST data have nothing to do with eachother. Either you submit POST or you upload via FTP From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Sunday, 3 April 2011 5:55 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Using CFHTTP Hi, I am trying to dynamically

RE: [cfaussie] upgrade strategies (enterprise software)

2011-03-24 Thread Steve Onnis
Virtual machines -Original Message- From: Barry Beattie [mailto:barry.beat...@gmail.com] Sent: Friday, 25 March 2011 3:44 PM To: cfaussie Subject: [cfaussie] upgrade strategies (enterprise software) Upgrading software versions: what's best practice? This isn't specifically about CF

RE: [cfaussie] CFChart and emailing

2011-03-21 Thread Steve Onnis
You will need to use the name attribute so you can access the binary data of the chart. From here you can use that to save it to a filename on the file system or attach it to an email. Keep in mind though you wont get all the hovering or anything. It is just the chart itself From:

RE: [cfaussie] Passing attributescollection into cfimport tag libraries

2011-03-21 Thread Steve Onnis
On 22/03/2011 13:33, Steve Onnis wrote: Is there a way to pass a collection into a cfimport tag library tag item? For example cfimport taglib=lib prefix=utils / utils:foo attributescollection=#someStruct# / I have tried this but it doesn't seem to work its singular and without

RE: [cfaussie] Daily Rate

2011-03-14 Thread Steve Onnis
As a contractor maybe. No way you would expect that in an employed position From: Mark Ireland [mailto:markinc...@hotmail.com] Sent: Saturday, 12 March 2011 11:57 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] Daily Rate $500 a day for a junior _ From:

[cfaussie] Way OT : chalet at the snow

2011-02-22 Thread Steve Onnis
This is way OT but thought i would put it out there. Does anyone have or know of someone who has a chalet at any of the snow resorts in victoria they would hire out for a weekend? Hoping for around 10-12 beds J -- You received this message because you are subscribed to the Google Groups

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
I really don't know why people are still using the url rewrite stuff. You can do the same thing using the onMissingTemplate() method and handle it all from the cfml side, and it is cross platform From: Taco Fleur [mailto:taco.fl...@clickfind.com.au] Sent: Wednesday, 23 February 2011 12:33 PM

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
errors logged in CF... I would assume that using what you're suggesting is creating an error in the log? On Wed, Feb 23, 2011 at 11:38 AM, Steve Onnis st...@cfcentral.com.au wrote: I really don't know why people are still using the url rewrite stuff. You can do the same thing using

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
The request is going to go to the cf server anyway. You wont get a request to a .cfm file never get to the cf server is the page does not exist anyway so you may aswell catch it and handle it yourself. From: Kai Koenig [mailto:k...@koeni.de] Sent: Wednesday, 23 February 2011 12:59 PM To:

RE: [cfaussie] Re: IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
Where as using onMissingTemplate() you have access to it using ARGUMENTS.targetPage -Original Message- From: Justin Carter [mailto:justin.w.car...@gmail.com] Sent: Wednesday, 23 February 2011 1:09 PM To: cfaussie Subject: [cfaussie] Re: IIS7 URL Rewrite / CF When you use URL rewriting

RE: [cfaussie] IIS7 CF9 CFLOCATION problems?

2011-02-20 Thread Steve Onnis
I would imagine that it would fire but before the cflocation. Cflocation does a header request forward which would happen when the page has loaded -Original Message- From: Kym Kovan [mailto:dev-li...@mbcomms.net.au] Sent: Monday, 21 February 2011 1:25 PM To: cfaussie@googlegroups.com

RE: [cfaussie] CFFILEUPLOAD in an Ajax call

2011-02-03 Thread Steve Onnis
://www.carehart.org/consulting From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis Sent: Thursday, February 03, 2011 12:28 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] CFFILEUPLOAD in an Ajax call Anyone??? From: Steve Onnis [mailto:st

RE: [cfaussie] CFFILEUPLOAD in an Ajax call

2011-02-02 Thread Steve Onnis
February 2011 12:45 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] CFFILEUPLOAD in an Ajax call What's the error? I'm not overly familiar with the upload thingy, but you might need to use CFAJAXIMPORT in your main page... Sent from my iPhone On 03/02/2011, at 12:39, Steve Onnis st

RE: [cfaussie] CFFILEUPLOAD in an Ajax call

2011-02-02 Thread Steve Onnis
Anyone??? From: Steve Onnis [mailto:st...@cfcentral.com.au] Sent: Thursday, 3 February 2011 1:05 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] CFFILEUPLOAD in an Ajax call No error. The ajax request has all the libraries in it, and the div is there for the flash object

RE: [cfaussie] The request has exceeded the allowable time limit Tag: CFLOOP

2011-02-01 Thread Steve Onnis
Maybe there is the Stop Long Running Scripts setting that is killing it before it finishes? From: Gavin Beau Baumanis [mailto:b...@palcare.com.au] Sent: Wednesday, 2 February 2011 3:40 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] The request has exceeded the allowable time limit

RE: [cfaussie] The request has exceeded the allowable time limit Tag: CFLOOP

2011-02-01 Thread Steve Onnis
Steve, I assume that is in IIS / web server setting - since I can't find it in the CFAdmin interface anywhere? And if so would I not be getting a HTTP error and not a CFML generated one? On 02/02/2011, at 3:44 PM, Steve Onnis wrote: Maybe there is the Stop Long Running Scripts

RE: [cfaussie] CF9 Administrator Schedule Tasks

2011-01-04 Thread Steve Onnis
What comments would you like? Thats the options.not much more to it. If you want more precise scheduling then build it into your schedule script...checking dates there From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Wednesday, 5 January 2011 3:38 PM To:

RE: [cfaussie] Re: cfspreadsheet and vfs

2010-12-07 Thread Steve Onnis
be in breach of the confidentiality agreement? Which agreement are you referring to? I don't recall seeing one... On Dec 7, 12:52 am, Steve Onnis st...@cfcentral.com.au wrote: This is in relation to CF10 it seems and i would assume posting it would be breaching the confidentiality agreement? -- You

RE: [cfaussie] Re: cfspreadsheet and vfs

2010-12-07 Thread Steve Onnis
can share with people who are NOT in said private beta program. Cheers Kai Are you saying I may be in breach of the confidentiality agreement? Which agreement are you referring to? I don't recall seeing one... On Dec 7, 12:52 am, Steve Onnis st...@cfcentral.com.au wrote

RE: [cfaussie] Re: cfspreadsheet and vfs

2010-12-06 Thread Steve Onnis
This is in relation to CF10 it seems and i would assume posting it would be breaching the confidentiality agreement? -Original Message- From: Andrew [mailto:am2...@gmail.com] Sent: Monday, 6 December 2010 7:30 PM To: cfaussie Subject: [cfaussie] Re: cfspreadsheet and vfs FYI - received

RE: [cfaussie] Re: cfspreadsheet and vfs

2010-12-06 Thread Steve Onnis
To: cfaussie Subject: [cfaussie] Re: cfspreadsheet and vfs On Dec 7, 12:52 am, Steve Onnis st...@cfcentral.com.au wrote: This is in relation to CF10 it seems and i would assume posting it would be breaching the confidentiality agreement? I doubt there is a confidentiality agreement for automated replies

RE: [cfaussie] Session Variables with multiple sessions

2010-12-02 Thread Steve Onnis
Why wouldn't you just use AJAX for this? From: Barry Beattie [mailto:barry.beat...@gmail.com] Sent: Thursday, 2 December 2010 8:09 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Session Variables with multiple sessions What if the data changes in one session, and you are looking

RE: [cfaussie] Re: ColdFusion Builder Workspace Refreshing

2010-11-27 Thread Steve Onnis
Nope nothing -Original Message- From: charlie arehart [mailto:charlie_li...@carehart.org] Sent: Sunday, 28 November 2010 3:10 PM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] Re: ColdFusion Builder Workspace Refreshing Any resolution, Steve? /charlie -Original

RE: [cfaussie] Re: ColdFusion Builder Workspace Refreshing

2010-11-27 Thread Steve Onnis
: ColdFusion Builder Workspace Refreshing Well, I was also asking implicitly if you had considered the points I'd raised. It's still not clear. :-) Just trying to help. /charlie -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis

RE: [cfaussie] Microsoft SQL server CPU very high, close to 100% a lot of the time

2010-11-23 Thread Steve Onnis
I would say it is from running it on VMWare. I have never had good experiences running SQL server on VMWare. There just isn't the grunt there to do it. I started shifting my SQL servers to VMs and started having CPU issues so i moved them back to physical servers. -Original Message-

RE: [cfaussie] CF Development Firms In Melbourne...

2010-11-16 Thread Steve Onnis
Chris If you are looking for someone i am available (www.inevative.com.au) Steve Onnis -Original Message- From: Dawesi [mailto:daw...@gmail.com] Sent: Wednesday, 17 November 2010 1:53 PM To: cfaussie Subject: [cfaussie] CF Development Firms In Melbourne... Hello everyone, Out

RE: [cfaussie] ColdFusion Builder Workspace Refreshing

2010-11-15 Thread Steve Onnis
: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis Sent: Monday, November 15, 2010 12:16 AM To: cfaussie@googlegroups.com Subject: [cfaussie] ColdFusion Builder Workspace Refreshing Is there a way to either turn off or control how often ColdFusion Builder

RE: [cfaussie] Re: ColdFusion Builder Workspace Refreshing

2010-11-15 Thread Steve Onnis
) but I know with it if Build Automatically (under Project on the menu) is ticked, the same thing happens to me.  Every single press of a key causes Building workspace and can slow things down. Cheers Mark On Nov 15, 4:16 pm, Steve Onnis st...@cfcentral.com.au wrote: Is there a way to either

[cfaussie] ColdFusion Builder Workspace Refreshing

2010-11-14 Thread Steve Onnis
Is there a way to either turn off or control how often ColdFusion Builder refreshes the workspace? Currently it does it everytime i press a key and just slows everything downlike i type and i have to wait for the workspace refresh to finish so the typing can catch up and is really hindering my

RE: [cfaussie] OT: a couple of questions for my travel there in coming weeks

2010-11-05 Thread Steve Onnis
Also its not that big either. You can drive from one end to the other and back in a day so if you are there for a couple days, maybe look at staying in a couple places, hire a car and take in the sites :) -Original Message- From: Mike Kear [mailto:afpwebwo...@gmail.com] Sent: Saturday, 6

RE: [cfaussie] CF9 Administrator Page Showing Error

2010-10-28 Thread Steve Onnis
Sounds like something is screwed up with the java settings for coldfusion. Have you been playing around with the files of the cf server? From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Thursday, 28 October 2010 6:28 PM To: cfaussie@googlegroups.com Subject: [cfaussie] CF9

RE: [cfaussie] importing datasource into CF9

2010-10-27 Thread Steve Onnis
Only on enterprise version or you can have a look at http://blog.cfcentral.com.au/post.cfm/migrating-coldfusion-standard-servers From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Thursday, 28 October 2010 4:07 PM To: cfaussie@googlegroups.com Subject: [cfaussie] importing

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread Steve Onnis
That is classed as cross domain cookies thus your session does not get retained because the browser does not accept the cookies from the frameset domain -Original Message- From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Monday, 25 October 2010 12:32 PM To:

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread Steve Onnis
I notice they have their frameset outside of the head tag. Does that make a different? -Original Message- From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Monday, 25 October 2010 3:41 PM To: 'cfaussie@googlegroups.com' Subject: RE: [cfaussie] Sessions problem with IE8 That

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread Steve Onnis
Also where have you got the cookies for the session being stored? Client? database? -Original Message- From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Monday, 25 October 2010 3:41 PM To: 'cfaussie@googlegroups.com' Subject: RE: [cfaussie] Sessions problem with IE8 That

RE: [coldfusion-howto] [cfaussie] CFExchange and CF9

2010-10-20 Thread Steve Onnis
Also you may have to connect with a secure connection as i doubt exchange will let you connect to it using an unsecure connection From: rai...@ozemail.com.au [mailto:rai...@ozemail.com.au] Sent: Wednesday, 20 October 2010 6:21 PM To: cfaussie@googlegroups.com Subject: FW: [coldfusion-howto]

<    1   2   3   4   5   6   7   8   9   10   >