Re: Dhtml Menu System

2006-02-21 Thread Jon Austin
DHTMLGoodies.com is the best I have seen! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232981 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

Re: anti-sp*m email addy hiding techniques

2005-10-26 Thread Jon Austin
On 10/27/05, dave [EMAIL PROTECTED] wrote: anyone have any tricks that actually work? besides making it like me at mysite.com. I know there is a udf on cflib but like the comment says its really not a good solution. Get JS to abstract it and write it out.. E.g. Sample JS/HTML output would

Re: deleting directories older than say 6 hours

2005-10-20 Thread Jon Austin
On 10/20/05, Seamus Campbell [EMAIL PROTECTED] wrote: Hi I want to delete some temporary directories but only older than a certain number of hours (say 6) The actual deleting is no worries - it just that I can't work out to only select/delete directories older than x hours. Going on memory

Re: OT: 15 minute rule

2005-08-03 Thread Jon Austin
On 8/4/05, Bryan Stevenson [EMAIL PROTECTED] wrote: Hey All, Around Electric Edge we have something called The 15 Minute Rule. I'm not sure if this is a common sort of rule, but it sure does help keep development moving ;-) When the rule applies: Hmmm, in our little office that 4 of

Re: ColdFusion Birthday

2005-07-13 Thread Jon Austin
Australia had it's celebrations last night. Kicked off the night with beer, subway and pizza! We had a breeze presentation about the history of CF with some very interesting anecdotes. We also saw the famed PowerDeveloper 2000 infomercial seen at the launch of the first Allaire developers

Re: Macromedia Using CFPoP?

2005-06-21 Thread Jon Austin
On 6/21/05, Sean Corfield [EMAIL PROTECTED] wrote: Ugh! I've passed this message on to the appropriate folks... Will you be sharing whatever fix is applied? As we have the same issue and don't really feel comfortable applying the fix from gdbezona. Our server is nice and stable, would like to

Re: Macromedia Using CFPoP?

2005-06-21 Thread Jon Austin
On 6/21/05, Paul Vernon [EMAIL PROTECTED] wrote: Install the jar file that Paul H mentioned, get MM to adopt that same jar file as part of CF or, install a third party CFX tag like mine (CFX_POP3). I would use CFX_POP3 in a flash, except our app is designed to be platform independant and run on

Fwd: New Macromedia Security Zone Bulletin Posted

2005-05-10 Thread Jon Austin
FYI -- Forwarded message -- From: Macromedia Security Zone [EMAIL PROTECTED] Date: May 11, 2005 5:03 AM Subject: New Macromedia Security Zone Bulletin Posted To: bugtraq@securityfocus.com IMPORTANT: A new security

Re: OT - Site for Sale

2005-05-10 Thread Jon Austin
Erm, thats an interesting discussion on the front page. :) On 5/11/05, Justin D. Scott [EMAIL PROTECTED] wrote: Sorry for the OT post, but this is the only place I can think of to post this. ~| Discover CFTicket - The leading

Re: ColdFusion WHOIS Proxy?

2005-05-03 Thread Jon Austin
One point, most servers will have a query threshold which if you exceed (by continually making whois requests), you will find yourself banned. On 5/4/05, Jim McAtee [EMAIL PROTECTED] wrote: Who do you query to get the registrar of a .com domain or other domain with more than one registrar

Re: macromedia and Adobe?!

2005-04-18 Thread Jon Austin
Looks real. http://www.macromedia.com/macromedia/proom/pr/2005/adobe_macromedia.html Someone in the office just quipped Guess FireWorks will get the magnetic lasoo tool On 4/18/05, Kym Kovan [EMAIL PROTECTED] wrote: The macromedia Home Page looks interesting..

Re: cfc error

2005-04-04 Thread Jon Austin
Are all of your cfargument statements grouped under your cffunction? //got nuthin On Apr 5, 2005 2:40 PM, dave [EMAIL PROTECTED] wrote: anyone know what this error means? Local variable qLF on line 18 must be grouped at the top of the function body.

Re: Running Perl from CF on Windows

2005-03-28 Thread Jon Austin
Download and install Perl for win32 (ActivPerl I think its called)... Use cfexcute to do perl.exe name_of_script.pl. That is a bit of a hack, if using Apache or IIS and you can add a handler for perl scripts the same way it does for CFML templates. Or, if feasible, re-implement the perl script

Re: Google Suggest-like functionality with CF

2005-03-20 Thread Jon Austin
See recent threads about AJAX :) Regards, Jon On Sun, 20 Mar 2005 21:42:26 -0500, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Anyone done anything like Google Suggest on CF? Care to share any tricks or tips? ~| Logware

Re: Get Disk Space from CF?

2005-03-17 Thread Jon Austin
Here is a tidy little UDF for you. On Thu, 17 Mar 2005 18:05:25 -0700, Jim McAtee [EMAIL PROTECTED] wrote: Does anyone know how I can retrieve the amount of disk space remaining in a disk volume on the server on which CF is running? CF5, IIS5, Windows 2000 Server Standard.

Re: Get Disk Space from CF?

2005-03-17 Thread Jon Austin
Hmmm, brain is firing on all neurons today. http://cflib.org/udf.cfm?ID=105 On Fri, 18 Mar 2005 11:26:04 +1000, Jon Austin [EMAIL PROTECTED] wrote: Here is a tidy little UDF for you. On Thu, 17 Mar 2005 18:05:25 -0700, Jim McAtee [EMAIL PROTECTED] wrote: Does anyone know how I can retrieve

Re: Automated testing? Is it possible for web development.

2005-03-09 Thread Jon Austin
While not unit or harness testing, I find Solex to be very useful. You record a session through the inbuilt proxy and then can replay it to your hearts content. Build a whole library of playbacks, then whenever you change some code, you can just switch perspective in Eclipse and let 'er rip.

Re: CF generated email.

2005-03-01 Thread Jon Austin
I think the issue is that they are being done in a asynchronous, single threaded fashion. By that, I mean your code is looping over each email to be sent, one by one. This probably means a full cycle of connecting to the SMTP service, HELO'ing, killing sockets etc. You need to find a replacement

Re: CF generated email.

2005-03-01 Thread Jon Austin
Argh, that was something of a brainfart on my behalf. Of course CF does spool them immediately to disk. If the SMTP server you are using during development is many miles away, the network issue could be a factor. You mentioned 1 per second, this would be reasonable IMO when delivering via a

Re: Problems with a large select box

2005-02-24 Thread Jon Austin
Mate! 40,000 items? No wonder the browser is choking! This is one of those situations where you need to find another solution I think. What about implementing something like Google suggest? http://www.google.com/webhp?complete=1hl=en Regards, Jon On Thu, 24 Feb 2005 20:22:02 -0500 (EST),

Re: Identifying Piggish CF Templates w/ Perfmon

2005-02-15 Thread Jon Austin
Perhaps creating some walk throughs using Solex then playing them a few times. Solex will show you the transaction times. This will only help identify CFM templates, not specific code however. Regards, Jon On Tue, 15 Feb 2005 13:42:13 -0800, David Delbridge [EMAIL PROTECTED] wrote: I am

Re: Holy Security

2005-02-14 Thread Jon Austin
Am I misreading what you said? Strange piece of logic there. I would think the fact that the source code not being available would make it more difficult to find security problems. It would easier to spot an overflow of some type in the code, rather than having to effectively brute force an

Re: Holy Security

2005-02-14 Thread Jon Austin
Well, the Linux kernel for one is pretty heavily peer-reviewed. And thats even before it gets committed to the source tree, which largely is a final process overseen by Linus. So the kernel code is VERY heavily reviewed. Look at the bugtraq mailing list. There are tonnes of people who are a)

Re: Holy Security

2005-02-14 Thread Jon Austin
a fantastic security record. On Tue, 15 Feb 2005 01:22:34 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: Jon Austin wrote: Well, the Linux kernel for one is pretty heavily peer-reviewed. And thats even before it gets committed to the source tree, which largely is a final process overseen

Re: Holy Security

2005-02-14 Thread Jon Austin
On Tue, 15 Feb 2005 01:40:25 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: You mean like the integer overflows that made non priviledge separated OpenSSH rootable a few years ago. Sure, the patch was out before the exploit was out. But did anybody take a step back, said wow, this is a

Re: Audit / History Tracking

2005-02-14 Thread Jon Austin
Well, just a quick solution off the top of my head You need a transaction log table. Something like: id - index action - what action was taken, update/delete/insert user - what user performed the action tstamp - when they did it table - what table was affected row - what row (id) was changed

Re: ot: vmware ?

2005-02-14 Thread Jon Austin
You allocate a virtual disk, say 5gb and it creates this file. The entire virtual system is stored in there. You simply boot it up from the vmware app, and it sits inside a window. You can extend the window to full screen. Remember, that within vmware, the OS is being emulated. You are running

Re: ot: vmware ?

2005-02-14 Thread Jon Austin
One excellent feature I forgot to mention was, you can take the image file of the OS and redistribute it. Once I was asked to reconfigure a corporate LAN and implement a VPN between each office. They sent me a vmware image of each of their servers and I was able to emulate the whole thing and

Re: Holy Security

2005-02-14 Thread Jon Austin
And is some cases, issue an IMMEDIATE fix/workaround which you can patch against (or fetch the fixed version from CVS) and have the hole plugged in matter of minutes. Some researchers who have been finding exploitable issues in MS products have been issuing their own binary patch as a band-aid

Re: U.S.-based SMS/SMPP API

2005-02-10 Thread Jon Austin
MBlox. http://mbox.com They have a SMPP Java client you can use. On Thu, 10 Feb 2005 13:57:10 -0600, James Edmunds [EMAIL PROTECTED] wrote: Dear all, I've seen a nice list of SMS/SMPP account providers at Damon Cooper's blog, mostly UK or Europe-based. (http://tinyurl.com/4ouqp) Does

Re: Uploaded .doc files using cffile, now I need to 'scrape' the data from the files

2005-02-09 Thread Jon Austin
Quick, dirty and nasty? Pass the document through strings and store the output. http://www.sysinternals.com/ntw2k/source/misc.shtml#strings Regards, Jon ~| Find out how CFTicket can increase your company's customer support

Re: Business Case for a 4.5 - 7 upgrade

2005-02-09 Thread Jon Austin
4.5 = old and busted MX = much better Seriously though, 4.5 is quite a few major releases behind. The fact that MM do not support 4.5 anymore should be reason enough. But as you mentioned, if you app does a lot of reporting, they can have much prettier graphs and PDF documents. On Thu, 10 Feb

Re: How to make this URL variable work!

2005-02-01 Thread Jon Austin
You need to URLEncode() the variable. This escapes the symbol so it's not treated like another variable in the URL string. On Tue, 01 Feb 2005 20:51:41 -0400, Will Tomlinson [EMAIL PROTECTED] wrote: hey all again, I'm passing my URL variable like usual to my master page, but I'm having a

Re: Query Object coldfusion.sql.QueryTable

2005-01-31 Thread Jon Austin
That's the reason you DONT use undocumented features in the first place.. On Mon, 31 Jan 2005 19:42:30 +0100, xxx xxx [EMAIL PROTECTED] wrote: Does anyone know if the undocumented feature still work with ColdFusion MX 7 (Blackstone)?

Re: Is it feasible to create an online back-up system with CF?

2005-01-30 Thread Jon Austin
I'm sure there is a way to programatically add FTP accounts to your windows box using CF. The user then clicks a link opening thier FTP account in the browser and drag and drop the files to be backed up. You can then sweep the directory of each user when they login and present the files for

Re: WAP Devices

2005-01-30 Thread Jon Austin
The WML extension for FireFox is particularly handy. On Sun, 30 Jan 2005 22:24:30 -0800, Rob Munn [EMAIL PROTECTED] wrote: there are WAP simulators readily available all around the net. Just Google WAP simulator ~| Discover

Re: What utility could I use to measure my clients' website bandwidth usage?

2005-01-24 Thread Jon Austin
I remember Analog being pretty full featured. And free :) On Mon, 24 Jan 2005 20:40:27 -0500, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Doesn't have to be free, but I'm not just dying to spend money. ~| Find out how CFTicket

Re: CFPOP - returned timestamps GRR!

2005-01-24 Thread Jon Austin
Adam, Point taken. But would why bother including a component which is flawed in two pretty fundamental ways? If this was a problem with an open source platform (say, PHP which by the way has several flawless POP3 implementations), I wouldn't be upset. I would politely request that it be fixed,

Re: CFPOP - returned timestamps GRR!

2005-01-24 Thread Jon Austin
Hi Paul, Thanks for your input. As you've already stated, you can't use CFX_POP3 so unless you can find a Java based replacement for CFPOP you aren't going to be able to do much to improve the state of your issues. Unfortunately, this is the case. Feel like writing a Java implementation? :)

Re: CFPOP - returned timestamps GRR!

2005-01-24 Thread Jon Austin
Hi Paul, Thanks for your input. As you've already stated, you can't use CFX_POP3 so unless you can find a Java based replacement for CFPOP you aren't going to be able to do much to improve the state of your issues. Unfortunately, this is the case. Feel like writing a Java implementation? :)

Re: CFPOP - returned timestamps GRR!

2005-01-24 Thread Jon Austin
Hi Paul, Thanks for your input. As you've already stated, you can't use CFX_POP3 so unless you can find a Java based replacement for CFPOP you aren't going to be able to do much to improve the state of your issues. Unfortunately, this is the case. Feel like writing a Java implementation? :)

CFPOP - returned timestamps GRR!

2005-01-23 Thread Jon Austin
Hi all, This is somewhat of a complex issue. The scenario works as follows: 1. My POP account receives several emails. Fetching them with CF, the DATE column of the returned CFPOP query are all the same, for example 01/01/2000 10:10:10. The action is getHeaderOnly. 2. I fetch the emails using a

Re: CFPOP - returned timestamps GRR!

2005-01-23 Thread Jon Austin
Further to my CFPOP frustrations, does anyone know of a way to determine the MIME type of the attachments? This is a bug I need to close from awhile ago, and last time I looked at it, you can't. Regards, Jon On Mon, 24 Jan 2005 14:20:42 +1000, Jon Austin [EMAIL PROTECTED] wrote: Hi all

Re: SeeFusion

2005-01-19 Thread Jon Austin
I have not used it, but can't Windows perfmon do all of that? On Thu, 20 Jan 2005 11:52:32 +0800, James Holmes [EMAIL PROTECTED] wrote: Has anyone used this? http://www.seefusion.com/ http://www.seefusion.com/ ~| Find out

Large-scale webmail applications

2005-01-19 Thread Jon Austin
Hi list, Has anyone had any experience with building scalable webmail applications? I've got a pretty good infrastructure in place to support the email store and attachments. The interface is clean and usable. All email accounts in the system are either POP'd from the local server or a remote

Re: CF Text Support App?

2005-01-18 Thread Jon Austin
Well, a remoted flash application would be best, otherwise it would seem to the user that the page is refreshing every X seconds. Not very elegant. For a true chat experience, flash is definately ideal. I'm not really sure if there are any free ones out there, I don't work with flash much. Anyone

Re: OT: Lynx MySQL v Win2003/IIS SQL

2005-01-18 Thread Jon Austin
IMHO, MySQL while stable, is still only just starting to mature in terms of features. A lot of new stuff has appeared in MySQL 4.x. It depends on what all of your requirements are: will you be running replicated, load-balanced servers? Replication in MySQL is much easier (and much chaper per

Re: CF Text Support App?

2005-01-17 Thread Jon Austin
Text support? Do you mean as in internationalization / translation for your application? Or tech support? Regards, Jon On Mon, 17 Jan 2005 23:08:30 -0500, Rick Faircloth [EMAIL PROTECTED] wrote: Can't locate a good CF text support apps...just one-to-one. Anyone have any leads? Flash ok...

Re: CFFM + FCKEditor (good stuff?)

2005-01-10 Thread Jon Austin
If it's not working, raise a bug on SourceForge for FCKEditor. He usually fixes them pretty quickly. On Mon, 10 Jan 2005 22:12:38 -0500, Tony Weeg [EMAIL PROTECTED] wrote: hi there. im using fckEditor, and the file upload piece is trippin'

Re: DNS caching in CF

2005-01-09 Thread Jon Austin
Command prompt: ipconfig /flushdns is a start. When this happened to me, I flush'd DNS, made sure nameserver server is using was responding with correct IP (use a looking glass, like http://looking-glass.optus.net.au), and restarted CFMX. Should get you back on track. D'oh: Just noticed you

Re: bug tracker

2004-12-01 Thread Jon Austin
Also consider three open-source (albeit non-CF) packages: Bugzilla - probably more useful for larger projects than smaller ones. Request Tracker - the last time I used this was for a help desk ticketing system, but I'm sure can be adapted for bug tracking. Again, due to the number of features,

Anyone built a webmail app? Inline image issue

2004-12-01 Thread Jon Austin
Hi there, I've got an issue displaying inline images from an HTML email message retrieved by CFPOP. Basically, when CFPOP retrieves the message it decodes the inline image as an attachment. The problem is that in the HTML source of the body, the src attribute of the image tag is for the CID

CFMX: DNS cache?

2004-12-01 Thread Jon Austin
Does CFMX have its own DNS resolver cache? From the Windows command prompt, the address (mail server in this case) resolves correctly, but intermittently, CFPOP is using the old IP of our mail server (this changed about 4 days ago). Very frustrating; tried flushing the Windows DNS cache and

Re: Nevermind... blame it on IE

2004-12-01 Thread Jon Austin
VERY frustrating issue. But yes, it was a PEBKAC error. (problem exists between keyboard and chair) On Wed, 1 Dec 2004 19:24:17 -0500, Michael T. Tangorre [EMAIL PROTECTED] wrote: Of course it had to be Microsoft's fault! Now now.. The setting is there for you to control... User's fault

Re: Garbled CFMX Error Messages

2004-11-28 Thread Jon Austin
Works fine for me...? On Mon, 29 Nov 2004 06:31:17 -, Martin Parry [EMAIL PROTECTED] wrote: That's what was wrong with it .. ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net

Re: Need to encrypt cfm output

2004-11-25 Thread Jon Austin
This is a fallacy; the client's browser need to see plain text or it will never be able to render the HTML! (SSL being the exception - the browser knows how to handle it) What you are doing is actually 'encoding' the HTML sent to the client; this is at best obfuscation and will not stop someone

Re: Bug fix follow-up application

2004-11-24 Thread Jon Austin
Check out 'lighthouse' by Ray Camden. http://www.camdenfamily.com/morpheus/blog/ On Wed, 24 Nov 2004 16:41:14 -0500, CFDEV [EMAIL PROTECTED] wrote: Does anyone knows a good open source project of following bugs for software developement? preferably an application that is written in CF.

Strict email validation

2004-11-24 Thread Jon Austin
will only validate the first example. Kind Regards, Jon Austin ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185374 Archives

Re: Strict email validation

2004-11-24 Thread Jon Austin
Well, if you feel like sharing... I just don't trust my regex's enought yet... :) On Thu, 25 Nov 2004 00:03:24 -0500, Michael Dinowitz [EMAIL PROTECTED] wrote: I plan to be working on the HoF system over the next 2 days and this is something covered in the code. I just have to wrap it nice

Re: Strict email validation

2004-11-24 Thread Jon Austin
The four formats listed above are for MX. They are all RFC compliant, so there should be very very few SMTP servers that reject any one of the formats. As for requirements, it's for an email client I've built. It is so the user can type a portion of the name, or email address (which comes from a

CFPOP; inline vs attached fle issue

2004-11-14 Thread Jon Austin
correctly, I was planning on replacing the CID:; img src to a real http URL to make it display properly. Anyone know where I'm going wrong? Or have another solution? I'm sure this has been done before. Kind Regards, Jon Austin

List of MIME types and icons?

2004-10-31 Thread Jon Austin
Hi all, Does anyone know of a list of MIME types and has a corresponding icon for (as many as possible) types? i.e. A little MS Word icon, Excel icon etc etc. Regards, Jon ~| This list and all House of Fusion resources hosted

Bug / defect tracker in CF?

2004-10-06 Thread Jon Austin
Hello, Does anyone know of a good (free) bug / defect tracker that is written in CF? I've had a quick google, but there does not seem to be much around. Regards, Jon [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]