[cfaussie] Re: Posting to Adobe forums

2007-10-01 Thread Joris de Beer
lol, looks like they forgot to performance test it before doing the migration. A bit amateur I would have thought. http://www.adobe.com/support/forums/ The previously announced Forum Migration is on hold. We are putting the Macromedia and Adobe forum consolidation on hold while

[cfaussie] Re: Reading Cookied information?

2008-02-04 Thread Joris de Beer
Hi Andrew, I think you need to rewrite your question. You're talking about domains, but you are not referencing any domains in your examples. However, I think what you are trying to ask is: If I have a reference to a tracking pixel in my page at: www.domainA.com/index.cfm to: img

[cfaussie] Re: Query of query and TOP

2008-03-06 Thread Joris de Beer
Sounds like the right way to do it. On 07/03/2008, at 10:16 AM, Scott Thornton wrote: Hi, Just wondering if there was an equivalent of top n that could be used in a query-of-query. When I used top 10, i received an error, so I used the maxrows attribute instead to restrict the

[cfaussie] Re: Generating PDF and JPG images from websites

2008-09-18 Thread Joris de Beer
There's a command line tool called Webshot available from: http://www.websitescreenshots.com/ For the Mac Heads use: http://www.paulhammond.org/webkit2png/ For linux you want KHTML2png: http://khtml2png.sourceforge.net/ On 19/09/2008, at 3:30 PM, Maximilian Nyman wrote: I've built a

[cfaussie] Filtering out folders.

2008-09-18 Thread Joris de Beer
I'm using cfdirectory to recursively list the contents of a folder structure. Unfortunately there are a lot of .svn folders in there and they are also getting returned. Anyone have a tip for filtering out folders? Currently I'm thinking of doing a query of queries to remove them from the

[cfaussie] Re: Filtering out folders.

2008-09-22 Thread Joris de Beer
Hi Chris, The filter attribute only filters in matching files, e.g. This will only list jpegs in a folder. cfdirectory action=list directory=#expandPath(Banners)# name=BannerFolders recurse=yes type=dir listinfo=name filter=*.jpg / Also, filter

[cfaussie] Re: Filtering out folders.

2008-09-22 Thread Joris de Beer
=*.html|*.xml|*.txt Alternatively (and less efficiently) you could use QoQ to exclude the types you don't want. Regards, Adam -Original Message- From: Joris de Beer [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2008 2:43 PM To: cfaussie@googlegroups.com Subject: [cfaussie

[cfaussie] Re: SQL INJECTION

2008-09-26 Thread Joris de Beer
I read the following article on TechNet a couple of years ago, and after implementing a HackerBasher site, we saw a big decrease in suspicious activity. http://technet.microsoft.com/en-us/magazine/cc160810.aspx The basic premise of the article is that most scripts work by attacking ip

[cfaussie] Re: REMINDER: Melbourne CFUG - 16th of October

2008-10-07 Thread Joris de Beer
Hi Mark, I'll be there. Cheers, Joris On 08/10/2008, at 3:34 PM, Mark Mandel wrote: All, This Month's CFUG is lined up! Location: NGA.net, Level 2, 17 Raglan St, South Melbourne Map: http://link.toolbot.com/google.com/73016 When: 16th of October, Meeting starts at 7:00, so get

[cfaussie] Re: RegEx replace text, but not within a tags

2009-02-17 Thread Joris de Beer
Also take a look at Regex Back References: http://livedocs.adobe.com/coldfusion/7/htmldocs/0989.htm cfhttp url=http://google.com.au; / cfset NewFileContent = REReplaceNoCase(cfhttp.filecontent, (a[^]*)*(/a), \1 ClickFind \2, all) cfdump var=#cfhttp# cfoutput #NewFileContent# /cfoutput

Re: [cfaussie] CF Query Timeout

2010-06-14 Thread Joris de Beer
I think cfquery has a timeout attribute too. I mainly use it to stop queries running to long, but maybe it works the other way too. On Wed, Jun 9, 2010 at 11:55 PM, rai...@ozemail.com.au wrote: Thanks Steve, I tried it and it worked a treat I pushed search criteria to the max to test it

Re: [cfaussie] cf 404 handling

2010-07-12 Thread Joris de Beer
I've had to use: CGI.REDIRECT_URL with Apache on OS X, but it didn't show up if I cfdumped CGI. Found a comment about it on coldfusion muse. http://www.coldfusionmuse.com/index.cfm/2009/7/30/CGI.Scope.differences#cCCEA8DF7-9E39-2F48-0AFDC11939EE29EF On 08/07/2010, at 12:12 AM, Brett