RE: Spaces in cfexecute on Windows machine

2005-11-07 Thread Seth Bienek
Hey Adrian, Someone else may have a better approach, but this should work too. Open a command prompt, navigate to the folder in question, and do 'dir /x'. This will output the 8-dot-3 name in the 5th column, and the long name in the 6th column. For example, Program Files is USUALLY PROGRA~1,

RE: FTP Server

2005-10-07 Thread Seth Bienek
Serv-U is a popular FTP server that allows you to set up access based on users and groups you can create and manage yourself: http://www.serv-u.com/ Hope this helps, Seth -Original Message- Can anyone recommend a third party FTP server that runs on Windows that has a more granular

Re: Multiple File Upload

2005-08-26 Thread Seth Bienek
The Stickman blog has a cool, cross-browser, single-form implementation that uses DHTML that I have not tried out yet. But there's a demo on the site and an explanation of how it works: http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element Take

Re: Need to share encryption between CF and ASP environments

2005-08-23 Thread Seth Bienek
CFMX 7 comes with a TON of new features in the encryption/decryption department, via the encrypt() and decrypt() functions: http://livedocs.macromedia.com/coldfusion/7/htmldocs/0457.htm encrypt() and decrypt() now support AES, DES, DESEDE and Blowfish algorithms, in addition to

Re: CFEclipse and FTP

2005-08-11 Thread Seth Bienek
I just installed a product called WebDrive that lets you map an FTP folder as a virtual drive in Windoze.. I have read that there's a similar product for NetWare users called netdrive.exe (which has to come off the Novell resource disk), so that might be an option for NetWare users that have

Re: Any reason client.LastVisit wouldn't exist in CFMX7

2005-07-27 Thread Seth Bienek
I've initalized client variables in the application.cfc. Is there any other reason client variables wouldn't exist? Hey Daron, Did you use the cfapplication tag, or 'This.clientManagement=Yes;' to enable client variables? More info here:

Re: Throwing error inside a cfscript block.

2005-07-27 Thread Seth Bienek
- Original Message - Is there a way to throw an error from inside a cfscipt block equivalent to cfthrow ...? Hi Ian, Ray Camden has developed a UDF to allow you to throw exceptions from within cfscript: http://www.cflib.org/udf.cfm/throw Take Care, Seth