[cfaussie] Re: xml error with stylesheet

2009-09-21 Thread Steve Onnis
Firstly I would encase any data in ![CDATA[]] incase there is anything that is in your data that willl break the XML format Secondly I cant see a root node in your code. You have all these nodes right off the root which I don't think you can have. -Original Message- From: Greavesy

[cfaussie] Re: Melbourne CFUG topic Request.

2009-09-13 Thread Steve Onnis
Well if there is anyone around who knows it well enough who would like to present that’s would be great. I haven't really used it much and mark is a bit busy at the moment to present -Original Message- From: KKC [mailto:kck...@gmail.com] Sent: Monday, 14 September 2009 3:26 PM To:

[cfaussie] Backing up MySQL Databases

2009-09-08 Thread Steve Onnis
Does anyone know of an application i could install on a server to automate the backup on MySQL databases? I have seen there are plenty of scripts around but would rather something i can setup and schedule that i dont have to worry about it. Steve

[cfaussie] Re: Backing up MySQL Databases

2009-09-08 Thread Steve Onnis
Looking for more of a ui based thing like SQL server does it...to be honest I cant be bothered mucking around coding up backup routines -Original Message- From: Mark Mandel [mailto:mark.man...@gmail.com] Sent: Tuesday, 8 September 2009 8:14 PM To: cfaussie@googlegroups.com Subject:

[cfaussie] Re: Backing up MySQL Databases

2009-09-08 Thread Steve Onnis
B) Steve Onnis wrote: Looking for more of a ui based thing like SQL server does it...to be honest I cant be bothered mucking around coding up backup routines -Original Message- From: Mark Mandel [mailto:mark.man...@gmail.com] Sent: Tuesday, 8 September 2009 8:14 PM To: cfaussie

[cfaussie] Re: FW: string manipulation

2009-09-07 Thread Steve Onnis
thats a lot of work for not much -- Make it into a list cfset list = REReplace(12345678901, ([0-9]), \1,, ALL) / -- Make it into an array (CF8 only) cfset list = REMatch([0-9], 12345678901) / or cfset list = listToArray(REReplace(12345678901, ([0-9]), \1,, ALL)) / Even the example

[cfaussie] Re: Change Mail Spool Directory

2009-09-03 Thread Steve Onnis
? Would there be locking conflicts between the servers trying to get the mail to send out? What if you could assign one server to process mail and the other servers deposit into that server? Any thoughts? Steve _ From: Steve Onnis [mailto:st...@cfcentral.com.au] Sent: Thursday, 3

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
Files dont have a DateCreated value, only DateModified _ From: AJ Mercer [mailto:ajmer...@gmail.com] Sent: Monday, 31 August 2009 3:49 PM To: cfaussie@googlegroups.com Subject: [cfaussie] set file created date with ColdFusion Does anyone know of a way to set a file's created date?

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
to the filename required -Original Message- From: phad...@formstar.com [mailto:phad...@formstar.com] Sent: Monday, 31 August 2009 4:56 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: set file created date with ColdFusion On Mon, Aug 31, 2009 at 04:29:32PM +1000, Steve Onnis wrote

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
if you are on a windows machine and on a 32 bit platform i would recommend just using the COM object and accessing the cfscript fso = CreateObject(COM, Scripting.FileSystemObject); f = fso.GetFile([filePath[); /cfscript cfoutput#f.DateCreated#/cfoutput _ From: AJ Mercer

[cfaussie] Re: Application.cfm to Application.cfc (Problems with Functions)

2009-08-27 Thread Steve Onnis
I cant see where COMUDF is being defined for one so it will ofcourse be undefined... Is it meant to be getting defined here? CFSET loadAppCFC(comUDF, comUDF,Application.ini.debug.ReloadObjects) What is that anyway? -Original Message- From: Sanjeev [mailto:planetsanj...@gmail.com]

[cfaussie] Coldfusion 9 trial hosting accounts

2009-08-27 Thread Steve Onnis
accounts setup within 24 hours. Regards Steve Onnis NovaHost --~--~-~--~~~---~--~~ 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

[cfaussie] Re: Coldfusion 9 trial hosting accounts

2009-08-27 Thread Steve Onnis
tags have a server attribute. In this case, neither the server attribute nor the default SMTP server setting are specified. Brian Knott ext 53954 Ph (07)3135 3954 From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis Sent: Friday

[cfaussie] Re: Query related to CFEXECUTE

2009-08-21 Thread Steve Onnis
You only need the arguments if the bat is expecing them and from the code below I can see that will error as you just have arguments= rather than arguments= -Original Message- From: Sanjeev [mailto:planetsanj...@gmail.com] Sent: Friday, 21 August 2009 4:27 PM To: cfaussie Subject:

[cfaussie] Re: Error : Cannot declare local variable cfcatch twice

2009-08-19 Thread Steve Onnis
You cant use var unless it is inside a function and you can only declare it once so the example below would infact error. if thats what you have you need to remove the second var in the cfset _ From: Kevin Pepperman [mailto:chorno...@gmail.com] Sent: Wednesday, 19 August 2009 5:04 PM

[cfaussie] Re: Error : Cannot declare local variable cfcatch twice

2009-08-19 Thread Steve Onnis
has solved this issue. Cheers and thanks. On Wed, Aug 19, 2009 at 5:08 PM, Steve Onnis st...@cfcentral.com.au wrote: You cant use var unless it is inside a function and you can only declare it once so the example below would infact error. if thats what you have you need to remove the second

[cfaussie] Re: XML File/Data Validation

2009-08-19 Thread Steve Onnis
Someone got a sneak peek at cf10 I think. doMagic() is a function that communicates to a neural webservice that reads your thoughts and just does what you want. -Original Message- From: MrBuzzy [mailto:mrbu...@gmail.com] Sent: Wednesday, 19 August 2009 9:42 PM To:

[cfaussie] Melbourne CFUG This TONIGHT

2009-08-19 Thread Steve Onnis
Reminder for Melbourne CFUG is TONIGHT Date and Time: August 20, 2009 from 7:00pm - 8:30pm Address: 21 Victoria Street, Melbourne, Victoria, Australia http://maps.google.com/maps?q=21+Victoria+Street%2C+Melbourne%2C+Victoria%2 C+Australia google map Speakers: Steve Onnis Agenda: Regular

[cfaussie] Re: XML File/Data Validation

2009-08-18 Thread Steve Onnis
Kevin Totally agree which is why i didnt bother replying. We are here to help eachother, not ask for others to do out work for us. Sounds harsh maybe but oh well. _ From: Kevin Pepperman [mailto:chorno...@gmail.com] Sent: Tuesday, 18 August 2009 7:03 PM To: cfaussie@googlegroups.com

[cfaussie] Melbourne CFUG This Thursday

2009-08-16 Thread Steve Onnis
Reminder for Melbourne CFUG this Thursday night Date and Time: August 20, 2009 from 7:00pm - 8:30pm Address: 21 Victoria Street, Melbourne, Victoria, Australia google map http://maps.google.com/maps?q=21+Victoria+Street%2C+Melbourne%2C+Victoria%2 C+Australia Speakers: Steve Onnis Agenda

[cfaussie] Re: Bolt

2009-07-29 Thread Steve Onnis
If you want free there is always notepad :) -Original Message- From: Kai Koenig [mailto:k...@bloginblack.de] Sent: Wednesday, 29 July 2009 6:43 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Bolt Well, no one knows for sure - but why would Adobe make a development IDE

[cfaussie] Re: Bolt

2009-07-29 Thread Steve Onnis
Na just a cloning machine :) Maybe a magic hammock like Homer Simpson had. _ From: Mark Mandel [mailto:mark.man...@gmail.com] Sent: Wednesday, 29 July 2009 2:20 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Bolt Would you like fries with that? ;) On Wed, Jul 29, 2009

[cfaussie] Installing Flash Builder and Coldfusion Builder into FLEX Builder

2009-07-26 Thread Steve Onnis
Does anyone know how i can install Coldfusion Builder and FLASH Builder into my Flex 3 Builder as the plugin? I tried but the install does not detect that Flex Builder is a valid ecplise installation, or am i better off just installing eclipse on its own to do this? Steve

[cfaussie] Re: Installing Flash Builder and Coldfusion Builder into FLEX Builder

2009-07-26 Thread Steve Onnis
and Coldfusion Builder into FLEX Builder You can't coldfusion builder into flexbuilder 3 to the best of my knowledge it must be installed into flashbuilder 4 or standalone eclipse. You can also download flashbuilder 4 as its in public beta. Paul On 7/26/09, Steve Onnis st...@cfcentral.com.au wrote

[cfaussie] Re: Attached vs. embedded (cfmail, multipart/mixed, attachments, embedded image)

2009-07-22 Thread Steve Onnis
Did you try it AS IS ? It worked fine the way it was -Original Message- From: randzman [mailto:randz...@verizon.net] Sent: Wednesday, 22 July 2009 10:43 PM To: cfaussie Subject: [cfaussie] Re: Attached vs. embedded (cfmail, multipart/mixed, attachments, embedded image) Steve, thank

[cfaussie] Re: barcode magnetic stripe readers in forms

2009-07-21 Thread Steve Onnis
do you have to know it is going to be a comma? Barcodes are usually numbers so.. cfset seperator = LEFT(1, REReplace(barcode, [^[:alpha:]], , ALL)) / That will give you what ever is seperating the numbers _ From: Mark Ireland [mailto:markinc...@hotmail.com] Sent: Tuesday, 21

[cfaussie] Re: Attached vs. embedded (cfmail, multipart/mixed, attachments, embedded image)

2009-07-21 Thread Steve Onnis
This worked for me cfmail to=em...@email from=em...@email subject=mime test cfmailparam file=filetoattach / cfmailparam file=imagefile contentid=image / cfmailpart type=text/html img src=cid:image / /cfmailpart /cfmail -Original Message- From: randzman

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

2009-07-21 Thread Steve Onnis
, 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

[cfaussie] OT : Free trial Coldfusion 9 hosting accounts now available

2009-07-21 Thread Steve Onnis
as to not breach any terms of the beta use policies outlined by Adobe. Again, you can sign up at http://www.coldfusion9.com.au/ Regards Steve Onnis --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post

[cfaussie] Melbourne CFUG Reminder : This Thursday Night

2009-07-20 Thread Steve Onnis
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

[cfaussie] Re: OT : Friday discussion To browse or not to browse

2009-07-17 Thread Steve Onnis
. Chad who still lurks on Cold Fusion forums like the bad smell from the lunch your 6th grade kid forgot in their bag over school holidays On Fri, Jul 17, 2009 at 11:59 AM, Steve Onnis st...@cfcentral.com.au wrote: Today I thought I would log into my twitter account after 7 months mind you

[cfaussie] Re: grouped query - display each group in new column

2009-07-17 Thread Steve Onnis
If you are not concerned about the data being in cells like a table I would use lists and use CSS for format the display, as in float all the li elements so you have columns style ul { margin:0px; padding:0px; list-style:none;

[cfaussie] OT : Friday discussion To browse or not to browse

2009-07-16 Thread Steve Onnis
Today I thought I would log into my twitter account after 7 months mind you and have a look around again thinking maybe I can put it to some use (jury is still out on that one), but while I was in there I noticed in the right hand column under Trending topics I noticed a topic names IE6 Must die.

[cfaussie] OT : Another Friday discussion : FLEX Vs HTML5

2009-07-16 Thread Steve Onnis
Just watched an interesting, and my first video (http://www.youtube.com/watch?v=AusOPz8Ww80) on what's happening with HTML5. From what I have seen in the past, HTML5 has been in the works for a long time and from what I can see now it will still be a while before it is officially released even

[cfaussie] OT : Adobe Website Performance

2009-06-30 Thread Steve Onnis
Is it just me or does logging into any area of the adobe website take foreeever.. --~--~-~--~~~---~--~~ 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

[cfaussie] Re: OT : Adobe Website Performance

2009-06-30 Thread Steve Onnis
Everything Trying to log into the adobe groups side, into the partner portal, into the site generally is very painful. -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Chris Velevitch Sent: Wednesday, 1 July 2009 12:52 PM To:

[cfaussie] Re: OT : Adobe Website Performance

2009-06-30 Thread Steve Onnis
Its always been slow...not just now -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Chris Velevitch Sent: Wednesday, 1 July 2009 1:13 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: OT : Adobe Website Performance Groups is

[cfaussie] Re: some of us make web sites, right?

2009-06-28 Thread Steve Onnis
I would if I didn't have to pay to actually register. -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kay Smoljak Sent: Monday, 29 June 2009 2:18 PM To: cfaussie Subject: [cfaussie] some of us make web sites, right? Apologies for

[cfaussie] Re: some of us make web sites, right?

2009-06-28 Thread Steve Onnis
Who seriously would go there looking for developers? I cant really see the advertising benefit there. -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Chris Velevitch Sent: Monday, 29 June 2009 3:20 PM To: cfaussie@googlegroups.com

[cfaussie] Re: CF8 file not found strangeness

2009-06-22 Thread Steve Onnis
Ryan Sounds like they are either controlling the cf FileNotFound error or the FTP folder is not matching up with your hosting account. Does the same thing happen with a plain HTML page? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of

[cfaussie] Re: CF8 file not found strangeness

2009-06-22 Thread Steve Onnis
. On Mon, Jun 22, 2009 at 9:09 PM, Steve Onnis st...@cfcentral.com.au wrote: Ryan Sounds like they are either controlling the cf FileNotFound error or the FTP folder is not matching up with your hosting account. Does the same thing happen with a plain HTML page? -Original Message- From

[cfaussie] Re: Web service not working after CF8 upgrade

2009-06-22 Thread Steve Onnis
Can you call it as a CFMCFC call? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Matthew Sent: Tuesday, 23 June 2009 12:18 PM To: cfaussie Subject: [cfaussie] Web service not working after CF8 upgrade Hi We've recently upgraded from

[cfaussie] Re: Web service not working after CF8 upgrade

2009-06-22 Thread Steve Onnis
: Fatal Error: URI=null Line=-1: Premature end of file. It is recommended that you use a web browser to retrieve and examine the requested WSDL document to ensure it is correct. Cheers Matthew On Jun 23, 12:24 pm, Steve Onnis st...@cfcentral.com.au wrote: Can you call it as a CFMCFC call

[cfaussie] Re: What does {} do?

2009-06-21 Thread Steve Onnis
created a new object cfset bla = {} / is the same as cfset bla = structNew() / Steve _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Andrew Myers Sent: Monday, 22 June 2009 11:50 AM To: cfaussie@googlegroups.com Subject: [cfaussie] What does {} do?

[cfaussie] Flex background

2009-06-16 Thread Steve Onnis
how do i remove it? have tried a few things but the gradient remains... --~--~-~--~~~---~--~~ 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

[cfaussie] Re: PHP to CF help

2009-06-16 Thread Steve Onnis
you might have to scope the fileField attribute for the file upload for one as it might be conflicting with the local var you are using for your loop. _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Ben Lowndes Sent: Wednesday, 17 June 2009 11:41 AM To:

[cfaussie] Re: PHP to CF help

2009-06-16 Thread Steve Onnis
into the directory. 2009/6/17 Ben Lowndes ben.lown...@gmail.com OK I've scoped the fileField and it's not making any difference. There's no error message occurring either. Anyone got any other ideas? Thanks, B On Wed, Jun 17, 2009 at 11:53 AM, Steve Onnis st...@cfcentral.com.au wrote: you

[cfaussie] OT : Flex Usergroup

2009-06-16 Thread Steve Onnis
Does anyone know if this group is actually still running or where i can join a group thats actually active? Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to

[cfaussie] Re: OT : Flex Usergroup

2009-06-16 Thread Steve Onnis
the google group is dead it seems ill try flexcoders _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kai Koenig Sent: Wednesday, 17 June 2009 3:26 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: OT : Flex Usergroup flexaussie nzfxug

[cfaussie] THIS WEDNESDAY : Coldfusion 9 and FLEX 4 Product Preview Presentation

2009-06-14 Thread Steve Onnis
from your workplace or clients along you can do so. Just let me know the names of the people that would like to attend. Places are limited and they are filling up quickly so register now so you don't miss out. Regards Steve Onnis --~--~-~--~~~---~--~~ You

[cfaussie] Re: custom global coldfusion file mappings

2009-06-10 Thread Steve Onnis
I want to map to a file though, not a folder. Can you map to a specific file using mappings? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Mike Kear Sent: Wednesday, 10 June 2009 10:46 PM To: cfaussie@googlegroups.com Subject:

[cfaussie] Re: custom global coldfusion file mappings

2009-06-10 Thread Steve Onnis
Application.cfc you should be able to use that set up application-specific mappings. It works very nicely. On Jun 10, 3:53 pm, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if it is possible to add custom mappings into the cf server and if so where and how?  I want to add a script file

[cfaussie] Re: Banner Tracking

2009-06-10 Thread Steve Onnis
What you could do is do this Instead of loading the image/swf, make the script load a cfm file like... img src=loader.cfm?adImage.gif / then you could increment the counter for that ad based on the file being used to load the ad. Then because you know the name of the image/swf you can

[cfaussie] custom global coldfusion file mappings

2009-06-09 Thread Steve Onnis
Does anyone know if it is possible to add custom mappings into the cf server and if so where and how? I want to add a script file that is accessible to and cf site but needs to be automatic...sorta like how the graphing scripts work. Steve --~--~-~--~~~---~--~~

[cfaussie] REMINDER : Coldfusion 9 and FLEX 4 Product Preview Presentation

2009-06-08 Thread Steve Onnis
your workplace or clients along you can do so. Just let me know the names of the people that would like to attend. Places are limited and they are filling up quickly so register now so you don't miss out. Regards Steve Onnis --~--~-~--~~~---~--~~ You received

[cfaussie] Re: Coldfusion 9 and FLEX 4 tour

2009-06-02 Thread Steve Onnis
to register on cfcentral, but couldn't) On 6/2/09, Steve Onnis st...@cfcentral.com.au wrote: And the email says. Please visit http://groups.adobe.com/posts/081e9d435f to find out more information and please register as numbers are limited to 90 people. Thats where you need to register

[cfaussie] Re: Coldfusion 9 and FLEX 4 tour

2009-06-02 Thread Steve Onnis
Like the song goes heyits like 10,000 spoons when all you need is a knife There is a lot of places the adobe groups app falls down and I actually find it quite cumbersome to use and not very user friendly.. -Original Message- From: cfaussie@googlegroups.com

[cfaussie] OT : VM Ware OS Installation

2009-06-02 Thread Steve Onnis
Hoping someone can help me out. I am trying to install a new guest OS on a VM i have created but the ISO i have created and loaded in as a CDROM drive won't kick in. I have: -Set the CDROM drive to be the first item in the boot sequence in the BIOS -Set the CDROM to connect at startup

[cfaussie] Coldfusion 9 and FLEX 4 tour

2009-06-01 Thread Steve Onnis
. There will be pre drinks (and maybe post drinks) and some nibblies prior to the presentations. Please visit http://groups.adobe.com/posts/081e9d435f to find out more information and please register as numbers are limited to 90 people. Hope to see many of you there. Regards Steve Onnis CFUG Usergroup Manager

[cfaussie] Re: Coldfusion 9 and FLEX 4 tour

2009-06-01 Thread Steve Onnis
://www.cfcentral.com.au/register/index.cfm Thanks. On Tue, Jun 2, 2009 at 12:14 PM, Steve Onnis st...@cfcentral.com.au wrote: Well it is finally here.CF9 and FLEX 4 product tour is happening on June the 17th at CQ Functions, 113 Queen Street Melbourne, Victoria. Adobe ColdFusion 9

[cfaussie] Re: CFMAIL headers

2009-05-24 Thread Steve Onnis
Im on CF8 -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Chris Velevitch Sent: Monday, 25 May 2009 10:25 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFMAIL headers On Fri, May 22, 2009 at 12:50, Steve Onnis st

[cfaussie] Re: CFMAIL headers

2009-05-23 Thread Steve Onnis
or perhaps part of the extended SMTP additions? just hoping there might be a spec that covered it and - perhaps by miracle - painlessly supported by CFMAIL /? just thinking out loud... On Fri, May 22, 2009 at 12:50 PM, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if it is possible to add

[cfaussie] Re: CFMAIL headers

2009-05-23 Thread Steve Onnis
headers Steve Onnis wrote: What I am wanting to do, as a default thing for ALL mail generated by CFMAIL for any domain or application WITHOUT having to use CFMAILPARAM is to add another entry into the mail file like... / type

[cfaussie] Re: CFMAIL headers

2009-05-23 Thread Steve Onnis
tag in. -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kym Kovan Sent: Saturday, 23 May 2009 10:21 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFMAIL headers Steve Onnis wrote: No no no I DON'T want to do it using

[cfaussie] Re: Security Of Customer Bank Account Details

2009-05-23 Thread Steve Onnis
you shouldnt be doing it in the first place _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of SAMARIS Software Sent: Sunday, 24 May 2009 2:45 PM To: cfaussie@googlegroups.com; coldfusion-ho...@yahoogroups.com Subject: [cfaussie] Security Of Customer Bank

[cfaussie] Re: Security Of Customer Bank Account Details

2009-05-23 Thread Steve Onnis
Raiola SAMARIS.net Software Email: i...@samaris.net Mobile 0414 228 948 Website: www.SAMARIS.net _ From: Steve Onnis Date: Sun, 24 May 2009 14:53:46 +1000 To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Security Of Customer Bank Account Details you shouldnt be doing

[cfaussie] Invalid spool file

2009-05-21 Thread Steve Onnis
I keep seeing this in the logs... The ColdFusion mail spool encountered an invalid spool file in the spool directory Anyone know what causes this? Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie

[cfaussie] CFMAIL headers

2009-05-21 Thread Steve Onnis
Does anyone know if it is possible to add additional headers into the CFMAIL process other than individually setting them for each CFMAIL call? Currently there is an X-MAILER property there, i would like to add a X-DATE or something named similar so i can read when the mail item was created as i

[cfaussie] Re: Adding Extra Column To SQL Database

2009-05-17 Thread Steve Onnis
Claude Before you do anything, make sure you back up the database. To answer your question, it should just add the column in. Depending on how complex the table change is, sometimes it created a tmp table, puts the data in there, drops the table, re-creates the table with the changes and adds

[cfaussie] Re: CGI.HTTP_ACCEPT_LANGUAGE

2009-05-14 Thread Steve Onnis
There is a way or a service you can use to determining the location of a website visitor based on IP address. Maybe that is something you can have a look at? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Stephen M Sent: Friday, 15

[cfaussie] Re: CreateODBCDateTime best practice?

2009-05-14 Thread Steve Onnis
You don't need createODBCDateTime() for that as NOW() is a datetime stamp as it is In any case, that's a CFQUERYPARAM best practise which is it is best practise to use CFQUERYPARAM anyway -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf

[cfaussie] Re: SEO - How to upgrade my skills

2009-05-11 Thread Steve Onnis
Mike From my experience the only things in SEO that change rapidly are the hacks and cheats where as the fundamentals have not really changed...XHTML, CSS, content content content, keyword and keyword page relevance and links. I tend to prefer rankings that persisit rather than using hacks and

[cfaussie] View email as text only in gmail

2009-05-04 Thread Steve Onnis
anyone know how to do 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

[cfaussie] Re: Buying SSL Certificate

2009-04-29 Thread Steve Onnis
I can do them for about $99 per year for you through Geo-Trust -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of karan Sent: Wednesday, 29 April 2009 3:49 PM To: cfaussie Subject: [cfaussie] Buying SSL Certificate Hi All This topic is

[cfaussie] Re: Buying SSL Certificate

2009-04-29 Thread Steve Onnis
, Steve Onnis st...@cfcentral.com.au wrote: I can do them for about $99 per year for you through Geo-Trust If you mean http://www.geotrustaustralia.com, I can't find that price. The cheapest that I can find on their site is $349 for QuickSSL Chris -- Chris Velevitch Manager - Adobe Platform Users

[cfaussie] Re: Buying SSL Certificate

2009-04-29 Thread Steve Onnis
On Wed, Apr 29, 2009 at 16:29, Steve Onnis st...@cfcentral.com.au wrote: I am a wholesalers So how does one go about getting 1 $99 SSL certificate from you? Are there any restrictions? Chris -- Chris Velevitch Manager - Adobe Platform Users Group, Sydney m: 0415 469 095 www.apugs.org.au Adobe

[cfaussie] Re: CFMAIL to GMail

2009-04-22 Thread Steve Onnis
in gmail itself, I have never had any problems sending HTML to gmail except when the company got themselves blacklisted somehow. From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis Sent: Monday, 20 April 2009 12:42 PM To: cfaussie@googlegroups.com

[cfaussie] Re: CFMAIL to GMail

2009-04-22 Thread Steve Onnis
@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis Sent: Wednesday, 22 April 2009 6:25 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFMAIL to GMail it ends up in the inbox fine but no html version can be displayed if i send a text version it displays fine, if i send

[cfaussie] Re: CFMAIL to GMail

2009-04-22 Thread Steve Onnis
to view the email using mail.google.com? From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Steve Onnis Sent: Wednesday, 22 April 2009 6:34 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: CFMAIL to GMail UTF-8

[cfaussie] Ozemail email address

2009-04-20 Thread Steve Onnis
Anyone at an ozemail or iinet email address i can test an eemail to at all? just trying to see if my rdns is working... Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group,

[cfaussie] CFMAIL to GMail

2009-04-19 Thread Steve Onnis
Has anyone had any issues with generating HTML emails and sending to gmail accounts? I am not sure but i think there is an encoding issue that gmail doesnt seem to like. Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[cfaussie] Re: Session / application scope management.

2009-04-17 Thread Steve Onnis
Do you have a cfparam at the top of that setting the initialised variable? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Gavin Baumanis Sent: Friday, 17 April 2009 3:56 PM To: cfaussie Subject: [cfaussie] Session / application scope

[cfaussie] Is there anyone i can test a couple emails with?

2009-04-14 Thread Steve Onnis
Does anyone use IINet or Ozemail? I need to test a couple emails to that network. Regards Steve Onnis --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups cfaussie group. To post to this group, send email to cfaussie

[cfaussie] Re: Is there anyone i can test a couple emails with?

2009-04-14 Thread Steve Onnis
@googlegroups.com Subject: [cfaussie] Re: Is there anyone i can test a couple emails with? Yes I do all my email addresses terminate at my ozemail account Regards Claude Raiola SAMARIS.net Software Email: i...@samaris.net Mobile 0414 228 948 Website: www.SAMARIS.net _ From: Steve Onnis

[cfaussie] Re: Is there anyone i can test a couple emails with?

2009-04-14 Thread Steve Onnis
long should I wait? B) Steve Onnis wrote: Thanks...sent it. Let me know if you get it -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Brett Payne-Rhodes Sent: Tuesday, 14 April 2009 7:12 PM To: cfaussie@googlegroups.com Subject

[cfaussie] Re: RE Replace

2009-04-07 Thread Steve Onnis
its a slash \1 just make sure you replce it with the right backreference though _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of AJ Mercer Sent: Wednesday, 8 April 2009 1:08 PM To: cfaussie@googlegroups.com Subject: [cfaussie] RE Replace Is it

[cfaussie] Re: RE Replace

2009-04-07 Thread Steve Onnis
','more test' 2009/4/8 Steve Onnis st...@cfcentral.com.au what is the intended result meant to be? _ From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of AJ Mercer Sent: Wednesday, 8 April 2009 3:07 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: RE

[cfaussie] Re: RE Replace

2009-04-07 Thread Steve Onnis
@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of AJ Mercer Sent: Wednesday, 8 April 2009 3:18 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: RE Replace yep 2009/4/8 Steve Onnis st...@cfcentral.com.au is this for a CSV string? _ From: cfaussie

[cfaussie] Flash sites being hacked

2009-04-01 Thread Steve Onnis
Does anyone know of any vulnerabilities or security issues with flash player that would enable someone to write files to a file system through the flash player? I have a few sites that keep getting hacked and they are all flash based websites. Regards Steve Onnis

[cfaussie] Re: Flash sites being hacked

2009-04-01 Thread Steve Onnis
? 2009/4/2 Steve Onnis st...@cfcentral.com.au Does anyone know of any vulnerabilities or security issues with flash player that would enable someone to write files to a file system through the flash player? I have a few sites that keep getting hacked and they are all flash based websites. Regards

[cfaussie] Re: Flash sites being hacked

2009-04-01 Thread Steve Onnis
Onnis st...@cfcentral.com.au Does anyone know of any vulnerabilities or security issues with flash player that would enable someone to write files to a file system through the flash player? I have a few sites that keep getting hacked and they are all flash based websites. Regards Steve Onnis

[cfaussie] Re: Flash sites being hacked

2009-04-01 Thread Steve Onnis
instead of the actual site being loaded, there is a replacement page with junk in there saying that site has been hacked. they are not getting in via ftp or any other way and i am sus about it being only flah sites that it is happening to _ From: cfaussie@googlegroups.com

[cfaussie] First CFUG Melb for the year : March 19, 2009

2009-03-10 Thread Steve Onnis
Well we are finally back for the new year and we are hoping this will be one of the best years yet for CFUG. Thank you everyone who participated in our survey and we have listened to what you want and have a new venue for our meetings. Date and Time: March 19, 2009 at 10:00am Address: 21

[cfaussie] Re: CFCHART Height / Width

2009-03-09 Thread Steve Onnis
Simple answer.nope I guess you could choose not to show it at all and use some html to make your own legend -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of SAMARIS Software Sent: Monday, 9 March 2009 8:25 PM To:

[cfaussie] Happy Birthday to Mark Mandel

2009-03-09 Thread Steve Onnis
Birthday wishes for Mark Mandel --~--~-~--~~~---~--~~ 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] Re: CFquery problem with list values

2009-03-04 Thread Steve Onnis
If they are string values you need to listQualify the string like so select * from properties where city in (#listQualify(form.city, ')#) OR the preferred method is using cfqueryparam like so select * from properties where city in (cfqueryparam cfsqltype=CF_SQL_VARCHAR list=true

[cfaussie] Re: Cold Fusion Encryption of Bank Details etc

2009-02-25 Thread Steve Onnis
I wold be asking why Why do you need to store it? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of SAMARIS Software Sent: Thursday, 26 February 2009 1:36 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Cold Fusion Encryption of

[cfaussie] Re: Cold Fusion Encryption of Bank Details etc

2009-02-25 Thread Steve Onnis
...@googlegroups.com] On Behalf Of Steve Onnis Sent: Thursday, 26 February 2009 8:59 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Cold Fusion Encryption of Bank Details etc I wold be asking why Why do you need to store it? -Original Message- From: cfaussie@googlegroups.com

[cfaussie] CFUG Victoria meeting locations

2009-02-18 Thread Steve Onnis
down and let people in. - Be able to seat at least 15-20 people - Have access to a projector - Internet access Anyone who can help out we would love to hear from you. Please contact either Mark Mandel (mark.mandel [at] gmail.com) or Steve Onnis (steve [at] inevative.com.au) Thanks Steve

[cfaussie] Re: Remove � from cfhttp.fileContent

2009-02-15 Thread Steve Onnis
I would say its an encoding issue actually. Do you know what encoding is being used to create the content you are pulling down? -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of karan Sent: Monday, 16 February 2009 12:27 PM To: cfaussie

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