RE: cfwebstore

2009-07-27 Thread Sebastiaan GMC van Dijk
Take a look at ProShop, the Onlinebase CF webshop product. Yours for a licence fee of E 200. Contains all the features you want and it is simple. Buit in FB 3.x, but reworked to use the FB 5.x principles of a central config file etc. Sebastiaan = So long and

RE: Coldfusion 7 and Helm 3

2009-07-27 Thread Jenny Gavin-Wear
Bumping this ... anyone can help please? Jenny -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: 21 July 2009 13:17 To: cf-talk Subject: RE: Coldfusion 7 and Helm 3 Hi Mike, Many thanks for your reply, great info. I think I'm 99% of the way to

Re: SSH Telnet - ColdFusion

2009-07-27 Thread Tom Chiverton
On Sunday 26 Jul 2009, Arsalan Tariq Keen wrote: Does anyone know of a possible way of connecting to devices on the network using ColdFusion and telnet/ssh and execute commands on the host machines? You can CFEXCEUTE a (CFFILE-authored) batch file that does it. -- Helping to apprehensively

Re: CFMX 8 install problems sidebyside error?

2009-07-27 Thread Timothy Laureska
thanks Dave... that download at least cleared the side by side error Dave Watts dwa...@figleaf.com 07/24/09 2:59 PM Follow-up - I'm seeing errors in the event viewer with the source being sidebyside - this must be the source of the problem... message like: Anyone ever since this? Event

cfdocument question

2009-07-27 Thread Orlini, Robert
Any reason why the cfdocument line below does not save the file anywhere? I try to attach it to an email and it cannot find this file. cfdocument format=pdf scale=90 filename=youreceipt.pdf Thanks. RO HWW ~| Want to

Re: cfdocument question

2009-07-27 Thread Roger Austin
Orlini wrote: Any reason why the cfdocument line below does not save the file anywhere? I try to attach it to an email and it cannot find this file. cfdocument format=pdf scale=90 filename=youreceipt.pdf Can you provide the remainder of your code that ends in /cfdocument?

Re: cfdocument question

2009-07-27 Thread Randi Knutson
Your code below will save the pdf in the same folder as your cf template.are you sure that is where your email is looking for the file? I usually have to give cfmail the full path from the root directory (c:\#myFullPath#\etc\etc\). Your configuration might be simpler, of course.

Re: using my injected bean within a CFC

2009-07-27 Thread Tom Chiverton
On Sunday 26 Jul 2009, James Holmes wrote: The way ColdSpring does this is simpler: The init() of your CFC takes a dsnBean as an argument. Or you can set 'autoWire=byName' and have ColdSpring use your set'er methods to do the injection for you. I think this is clearer, and I don't duplicate

Re: SSH Telnet - ColdFusion

2009-07-27 Thread Jordan Michaels
I've done things similar to this using CFEXECUTE and shell scripts. It's not terribly easy or simple, but it works. Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Open BlueDragon Steering Committee Adobe Solution Provider Arsalan Tariq Keen wrote: Guys... Does

Re: SSH Telnet - ColdFusion

2009-07-27 Thread Shannon Peevey
What about using a JAVA library? http://commons.apache.org/net/apidocs/org/apache/commons/net/telnet/package-summary.html http://www.alphaworks.ibm.com/tech/sshlite http://www.alphaworks.ibm.com/tech/sshlitespeeves On Mon, Jul 27, 2009 at 11:25 AM, Jordan Michaels jor...@viviotech.netwrote:

Re: SSH Telnet - ColdFusion

2009-07-27 Thread Arsalan Tariq Keen
Thanks Tom, Jorda and Shannon.. :) you all have given nice ideas ... but it seems I am looking for something like Shannon's solution :) now I will explore the Java libraries besides... Tera Term Pro Web is another opensource option ... I finally found last night... it uses POST and GET

Encrypt/Decrypt error

2009-07-27 Thread Les Mizzell
I'm on CF7. Here's my code: (in Application.cfc) cfset request.seed = wPznEZnrpWToMHNR8HcDQ== cfset request.algorithm = CFMX_COMPAT cfset request.encoding = UU (encrypt) encrypt(FORM.password,request.seed,request.algorithm,request.encoding) (decrypt)

Re: Encrypt/Decrypt error

2009-07-27 Thread Kris Jones
If the form.password contains characters that the encryption seed will cause to result in a string that contains a space or plus-sign, you will have trouble with the CFMX_COMPAT mode. Suggest going with a different mode. Cheers, Kris I'm on CF7. Here's my code: (in Application.cfc) cfset

Re: Encrypt/Decrypt error

2009-07-27 Thread Jason Fisher
Your example shows the same input for decrypt as you used for encrypt ... hopefully that was just a typo, otherwise it's probably your issue. (decrypt) decrypt(FORM.password,request.seed,request.algorithm,request.encoding) In other words, I would expect something more like this: encPwd =

Question re: Reactor

2009-07-27 Thread Caroline Wise
We have a rather old application that uses an early version of Reactor (vintage 2006-ish). It works fine with SQL 2000 in the development environment. We don't get many change requests for this app so while it gets a lot of use in the production environment, things on dev and staging are pretty

HoF site down?

2009-07-27 Thread Jordan Michaels
I haven't been able to get to the HoF site. Is it down for anyone else or am I just losing my mind? Thanks. ;) -- Warm regards, Jordan Michaels Vivio Technologies http://www.viviotech.net/ Open BlueDragon Steering Committee Adobe Solution Provider

RE: HoF site down?

2009-07-27 Thread Josh Nathanson
Down for me...in Bay Area, CA -- Josh -Original Message- From: Jordan Michaels [mailto:jor...@viviotech.net] Sent: Monday, July 27, 2009 5:01 PM To: cf-talk Subject: HoF site down? I haven't been able to get to the HoF site. Is it down for anyone else or am I just losing my mind?

Re: HoF site down?

2009-07-27 Thread Michael Dinowitz
Unfortunately, it is down. Greg went down to see what's up with it. On 7/27/09, Jordan Michaels jor...@viviotech.net wrote: I haven't been able to get to the HoF site. Is it down for anyone else or am I just losing my mind? Thanks. ;) -- Warm regards, Jordan Michaels Vivio Technologies

Re: HoF site down?

2009-07-27 Thread Azadi Saryev
down here as well (Hong Kong). been down for almost 24 hours now, i think... my sites with AHP have been up and down lately, too, but seem to all be OK now (knocks on wood)... Azadi Saryev On 28/07/2009 08:03, Michael Dinowitz wrote: Unfortunately, it is down. Greg went down to see what's up

oAuth

2009-07-27 Thread Brett Hellman
Has anyone implemented oAuth / Twitter Connect on an app? I'm struggling to understand how to implement oAuth with Coldfusion and could use some pointers or documentation for CF. Thanks, Brett ~| Want to reach the ColdFusion

Re: Question re: Reactor

2009-07-27 Thread Nathan Strutz
Caroline, There haven't been very many big changes in Reactor for a few years. You should update to the latest version and see what breaks. (but no, I can't confirm that it works or doesn't in SQL2005) You may be able to win if you just update reactor, (making sure to delete the cache files in