RE: cfmx and CAPTCHA

2004-06-17 Thread Adam Hope
Hi All, After having read through everyones posts here is how I actually did it and its currently running today on a site that gets 2000 new registrations a day. BTW this will run on CF 4.5 and up: Create a Java CFX which randomly uses a True Type Font from a zip file and randomly picks 6 cha

RE: xmlrpc

2004-06-17 Thread Craig Dudley
A little, I was getting several odd error messages from the xmlrpc server, websphere in this case. Things like, "invalid.session". The guys running that system could only tell me that in their logs it said, "invalid method name" I was getting the same error by using xmlrpc.cfc, creatin

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread rob.stokes
Hi Raymond, Sorry for late reply. Here's the application scope dump straight after the Error occurs. As you can see the application.calloutschema exists, which makes things even more worrying!! Application dump: BRIDGESCHEMA SA   BRIDGETABLEPREFIX TABLE   CALLOUTSCHEMA CALLOUT   CALLOUTTABLEPRE

RE: OT Plagiarism accusation stops posting

2004-06-17 Thread Peter Tilbrook
Well unfortunately it seems to be myself that has committed the crime of "plagiarism". I can certainly say that it was not intentional - nor was it deliberate. I have great respect for the "EasyCFM" tutorials and either neglected to properly quite an original author or the fell by the wayside with

RE: OT Plagiarism accusation stops posting

2004-06-17 Thread Peter Tilbrook
I think my real mistake was, despite the best intentions, it was my material. Big mistake which I have learnt from. My inentions were good but I stuffed up basically!   _   From: Michael Kear [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 June 2004 3:38 PM To: CF-Talk Subject: OT Plagiarism ac

Re: RDS support (was Re: CFEclipse release - beta

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 03:01 am, Aaron DC wrote: > Back in my day we had pedals under the desk hooked up to a generator to Punch cards ? Punch cards !?! Thing yourself lucky - back in *my* day we got splinters for the abacus beads :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(

Re: ColdFusion TechNote notification

2004-06-17 Thread Thomas Chiverton
On Wednesday 16 Jun 2004 22:23 pm, Debbie Dickerson wrote: > The following TechNotes have been updated: Could you include at least the titles in future, as now I have to go to each one in turn to see if it is relevent. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 ema

Re: List of States and Provinces

2004-06-17 Thread Adam Howitt
Also you can use create a _javascript_ array once on the page and then have a function to copy the option list to any number of select lists, reducing the page weight.  Looks neater and shorter than 3 state select boxes with the same set of CF code looping /running 3 times ... - Original Messa

RE: RDS support (was Re: CFEclipse release - beta

2004-06-17 Thread Peter Tilbrook
Wow! I am 35 now but even remember punch cards! And PASCAL?   _   From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 June 2004 8:51 PM To: CF-Talk Subject: Re: RDS support (was Re: CFEclipse release - beta On Thursday 17 Jun 2004 03:01 am, Aaron DC wrote: > Back in my da

cfun

2004-06-17 Thread Whittingham, P
Anyone going to CFUN in MD later this month?   This is a thread in cfdj. Is their a networking/fun gathering on Friday? TIA, Patrick Whittingham United Space Alliance   _   _   _ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations

Re: cfun

2004-06-17 Thread Rick Root
Whittingham, P wrote: > Anyone going to CFUN in MD later this month?   This is a thread in cfdj. > Is their a networking/fun gathering on Friday? My coworker and I will be there!  Couldn't get the University to pay for it (we're also going to the MAX conference) so my "company" is footing the

RE: cfun

2004-06-17 Thread Sandy Clark
I will be there, speaking twice on Sunday! Looking forward to it.   Btw, at last count (Wednesday morning), there were 525 people registered. It should be absolutely amazing Sandy   _   From: Whittingham, P Anyone going to CFUN in MD later this month?   This is a thread in cfdj. Is

RE: cfun

2004-06-17 Thread Tim Laureska
Where is this event and what is it... I'm in Maryland and was just curious Tim -Original Message- From: Sandy Clark [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 8:17 AM To: CF-Talk Subject: RE: cfun I will be there, speaking twice on Sunday! Looking forward to it.   Btw

How to Ban IP Addresses

2004-06-17 Thread Justin Jefferson
I'm trying to figure out a way to ban IP Addresses that are outside a particular IP range.    If anyone has a idea that would be great. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: cfun

2004-06-17 Thread Sandy Clark
Its the largest user group conference specifically for ColdFusion in the US. This is the 5th year. Last year it was something like 350 people. This year its 525 people, 2 days, 5 tracks, 36 speakers and a heck of a lot less expensive than MAX. Also since most of the topics are CF/programming 

Re: How to Ban IP Addresses

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 13:29 pm, Justin Jefferson wrote: > I'm trying to figure out a way to ban IP Addresses that are outside a > particular IP range. Whack checks for the correct CGI scope var's in hte Application.cfm. Or do it at your firewll. -- Tom Chiverton Advanced ColdFusion Programmer

Re: advanced search

2004-06-17 Thread Thomas Chiverton
On Wednesday 16 Jun 2004 23:07 pm, Ray Champagne wrote: > What's CFQUERYPARAM? It turns your query into a statement - which in theory excutes faster, as well as protecting against SQL injection. The CF docs are fairly good, ya know. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1

RE: How to Ban IP Addresses

2004-06-17 Thread Sandy Clark
  _   From: Justin Jefferson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 8:30 AM To: CF-Talk Subject: How to Ban IP Addresses I'm trying to figure out a way to ban IP Addresses that are outside a particular IP range.    If anyone has a idea that would be great.   ___

Re: RDS support (was Re: CFEclipse release - beta

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 12:05 pm, Peter Tilbrook wrote: > And PASCAL? PASCAL ? PASCAL ! We'll have non of your nambie pampy new fangled high level constructs here ! It's toggle it in at the panel or not at all :-) I think we may be drifting of the list topic though. -- Tom Chiverton Advanced

Re[2]: How to Ban IP Addresses

2004-06-17 Thread Uwe Degenhardt
Hi, I did that once with something like the following code to block IPs of certain countries: acceptableCountries="BE,DK,LU,..."; //could be pulled from db or ini file at app start up ok=init(); if (ok) thisCountry=findCountry(cgi.REMOTE_ADDR,cgi.HTTP_ACCEPT_LANGUAGE);        Sorry, you

Re: advanced search

2004-06-17 Thread Philip Arnold
On Thu, 17 Jun 2004 13:34:38 +0100, Thomas Chiverton wrote: > > On Wednesday 16 Jun 2004 23:07 pm, Ray Champagne wrote: > > What's CFQUERYPARAM? > > It turns your query into a statement - which in theory excutes faster, as well > as protecting against SQL injection. > The CF docs are fairly good,

RE: Re[2]: How to Ban IP Addresses

2004-06-17 Thread Joe Rinehart
This'd probably be a good place to use regex: To block 123.123.123.*:     ...block... To block 123.123.*.*:     ...block... And so on... (This is off top of my head, and I'm not the best regexer - someone else may have a better way.) -Original Message- From: Uwe Deg

Re: advanced search

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 13:57 pm, Philip Arnold wrote: > Erm, you obviously missed the 2nd line of his reply :looks After all the random white space ? Yeah... > > J/K of course. > :P I didn't think acronyms had slashes in... -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834

RE: cfun

2004-06-17 Thread Raymond Camden
I'll be there, and speaking as well. Bringing the entire clan up there. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cfun

2004-06-17 Thread Judith Dinowitz
>Where is this event and what is it... I'm in Maryland and was just >curious > >Tim Tim, It's the best CF event ever! Michael and I go to it every year (House of Fusion is a sponsor) and Michael is speaking as well. Well worth the money. Judith [Todays Threads] [This Message] [Subscription]

Re: cfun

2004-06-17 Thread Rick Root
Sandy Clark wrote: > > Last year it was something like 350 people. This year its 525 people, 2 > days, 5 tracks, 36 speakers and a heck of a lot less expensive than MAX. Well, I thought the $895 registration fee for MAX wasn't *too* bad... > Also since most of the topics are CF/programming  orie

RE: cfun

2004-06-17 Thread Tim Laureska
Thanks all for the info ... I'm going to see if I can fit it in.. Tim -Original Message- From: Judith Dinowitz [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 9:11 AM To: CF-Talk Subject: Re: cfun >Where is this event and what is it... I'm in Maryland and was just >curious > >Tim

Back Button Issue?

2004-06-17 Thread Greg Luce
Here's my situation, we have a form submission that processes a payment and takes the user to a confirmation page. I have programmed logic in the processing page to prohibit duplicate entries. But the clients are asking that if the user is on the confirmation page and hit's the browser "Back" butto

RE: cfun

2004-06-17 Thread Samuel Neff
Intro was originally developed for Flash Forward and I'm pretty sure it's now a commercial product, so "getting a hold of it" means probably taking resources away from other things, or hiking up the price.   CFUN is a great conference, strongly suggest it for CF developers (for technical content o

RE: First Web Service

2004-06-17 Thread Joe Rinehart
Here ya go. http://www.macromedia.com/devnet/mx/coldfusion/articles/webservices.pdf -joe -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 5:45 PM To: CF-Talk Subject: First Web Service Can any body point me to a good, concise begin

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
> A spider is nothing more than another HTTP client. It can do anything that > any HTTP client can do, and it can't do things that HTTP doesn't allow. So, > to answer a question like this, all you have to do is ask "can I do that > with a browser". If yes, then it can be done with a spider, and if

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
Aren't there a finite number of different combinations of a number between 1 and 6? And you're saving that variable to the page? If so that can be picked up and eventually guessed. Adam Hope wrote: > Create a Java CFX which randomly uses a True Type Font from a zip file > and randomly picks 6 c

RE: Back Button Issue?

2004-06-17 Thread Tom Kitta
I think they are referring to the page expiring after the form is being submitted. AFAIK you cannot disable a back button - even if you could it is part of client browser of which you have only as much control as the user (owner) of the browser gives you. TK   -Original Message-   From: Gr

verity k2

2004-06-17 Thread Whittingham, P
Hi All,   I don't know if this situation has been answered before concerning Verity K2 and CF. 1.) Intranet : both cf and verity using non-K2 and using files (pdf/rtf/txt) on same server.(http) = currently works great for 1's of files. 2.) Extranet : use cf and Verity K2, point to in

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread Raymond Camden
That seems odd for sure. Did you put your cfdump right above the query that causes the error? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: oops! cfmx migration (laptop)

2004-06-17 Thread Dwayne Cole
I did this and now I'm having problems.  Could it be that my old system was running CFMX 6 and the new syste is running 6.1. Here's the messages I'm receiving. Macromedia][SequeLink JDBC Driver][SequeLink Server]Required user name is missing >> Just got a new laptop for my development enviornme

RE: cfmx and CAPTCHA

2004-06-17 Thread Burns, John D
That was my thought.  Thus, if it can get a session, it can continue to the next page without a problem.  That's why the only way that seems feasible to me is to push an image to the client and for each request that the client makes for an image, associate that with a unique ID that you use kind of

Re: cfmx migration (laptop)

2004-06-17 Thread Dwayne Cole
I did this and now I'm having problems.  Could it be that my old system was running CFMX 6 and the new syste is running 6.1. Here's the messages I'm receiving. Macromedia][SequeLink JDBC Driver][SequeLink Server]Required user name is missing === >Dwayne Cole wrote: >

RE: cfmx and CAPTCHA

2004-06-17 Thread Burns, John D
Bryan, I don't think he's saying that the spider can _read_ the session var, but if you set one and it is passed to the next page, the spider will have it and then all it needs to do is figure out the image. John -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: T

Re: Version Management Inquiry

2004-06-17 Thread Dan O'Keefe
Massimo, Can it be integrated with Homesite 5.5+? Dan >  Is there a extension for DWMX 2k4 to use subversion? > I am not aware of any dedicated extension. I would use TortoisesSVN anyway, since DW's isn't the only editor I use Massimo Foti http://www.massimocorner.c

Re: cfmx and CAPTCHA

2004-06-17 Thread Ryan Emerle
I have posted the tag i created on my site.  You can grab a copy from here: http://www.emerle.net/programming/display.cfm/t/cfx_captcha Included is an example file which shows how you can use session variables. Basically, the example file will act as an image.  You simply add an IMG tag pointing

Re: Version Management Inquiry

2004-06-17 Thread Massimo Foti
> > I am not aware of any dedicated extension. I would use TortoisesSVN anyway, > > since DW's isn't the only editor I use > > Can it be integrated with Homesite 5.5+? > TortoisesSVN integrate itself into Windows's Explorer, just like TortoisesCVS does. I am not sure of what kind of integration yo

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
A session value passes in a HTTP header? Burns, John D wrote: > I don't think he's saying that the spider can _read_ the session var, > but if you set one and it is passed to the next page, the spider will > have it and then all it needs to do is figure out the image. [Todays Threads] [This Me

RE: Slow Down CFmail?

2004-06-17 Thread Mark W. Breneman
Tom, Not knocking here, just asking. Thanks for the improvements to cfmail. I have worked with the mails server tech support and they said that they also use CF for their mail engine and they have the same problem. They give me a few tips to help resolve the problems on the mail server (Note the

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
I like yours Ryan. I would try and make the key a little stronger. Ryan Emerle wrote: > I have posted the tag i created on my site.  You can grab a copy from here: > > http://www.emerle.net/programming/display.cfm/t/cfx_captcha > > Included is an example file which shows how you can use session

RE: cfmx and CAPTCHA

2004-06-17 Thread Dave Watts
> > A spider is nothing more than another HTTP client. It can > > do anything that any HTTP client can do, and it can't do > > things that HTTP doesn't allow. So, to answer a question > > like this, all you have to do is ask "can I do that with > > a browser". If yes, then it can be done with a

Three Selects Related and session variables

2004-06-17 Thread James Taavon
I am using the popular CF_ThreeSelectsRelated custom tag. I am storing the selected values as session variables for viewing on the next page of my application to display all values in a particular form before submission. Is it possible if the user wanted to go back to the original form to popluate

Re: cfmx and CAPTCHA

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 15:16 pm, Bryan F. Hogan wrote: > A session value passes in a HTTP header? If you use cookies as your session storage, yes. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
Good, just making sure that I haven't been making myself sound like an a** > That's correct. Neither can a browser. All a browser can do is send > identifying tokens like cookies or URL variables back to the server, which > can then read Session variables and use them within the program that > gen

RE: cfmx and CAPTCHA

2004-06-17 Thread Burns, John D
I'm not saying it ever receives that variable.  However, CF somehow associates that session with that client, therefore, the spider appears to be a valid client.  Once it has the session, what keeps it from posting a million times on that session?  CF has to set something on the client (cookie or t

RE: cfmx and CAPTCHA

2004-06-17 Thread Pascal Peters
AFAIK you can use cookies for client staorage but not for session storage > -Original Message- > From: Thomas Chiverton [mailto:[EMAIL PROTECTED] > Sent: donderdag 17 juni 2004 16:27 > To: CF-Talk > Subject: Re: cfmx and CAPTCHA > > On Thursday 17 Jun 2004 15:16 pm, Bryan F. Hogan wrote

authentication...

2004-06-17 Thread techmike
I'm looking for a way to password protect a section of a template.  Very minimal security.  (define the password in the template as a varible). I'm having issues writing this though, anyone have a snippet that could give me some ideas? Thanks Mike [Todays Threads] [This Message] [Subscript

Re: cfmx and CAPTCHA

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 15:30 pm, Pascal Peters wrote: > AFAIK you can use cookies for client staorage but not for session > storage :blaims liquid lunch and goes back to the corner :-) -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger L

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
Since when can you store the session in anything other than memory? It's client variables that you can change the storage mechanism for. Thomas Chiverton wrote: > If you use cookies as your session storage, yes. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Set

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
CFID and CFTOKEN are stored for that session. CF maps that internally to the to retrieve the session. Even if the spider read the CFID and CFTOKEN values, there is no way it could then tell CF to try and map it to retrieve the session. And even if it could, it couldn' read the value of the sess

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread rob.stokes
Raymond, The Application dump was captured after the query had happened and was sent to me using the error exception in Application.cfm: It seems to be happening to random queries for random users - if I go to test the query as a logged on user that has just flagged an error it works fine and I

RE: cfmx and CAPTCHA

2004-06-17 Thread Burns, John D
Right, but what I'm saying is that once it has the cfid and cftoken, couldn't it loop over a url passing possible texts for the image (thus keeping the same session) John -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 10:40 AM To: CF-Talk

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread Burns, John D
What's your timeout set to for the app? John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 10:47 AM To: CF-Talk Subject: RE: Application Scope goes missing... HELP!! Raymond, The Application dump was captured after the query had hap

RE: authentication...

2004-06-17 Thread Tom Kitta
How about this, in application.cfm add:    "blah">     roles="admin">                         In login.cfm place Secure area login Login has failed, please try again. User name: maxlength="100"> Password: maxlength="20"> TK   -Original Message-   From: tech

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
It could loop over the URL. But if the string for the image is stored in the session and compiled into the image, the only way it could figure it out would to be use brute force (guessing over and over again), decompiling the image and trying to read what is the text, or using OCR. 1 and 2 are

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread rob.stokes
John,    setClientCookies = "Yes"    SessionManagement="Yes"    SessionTimeout="#CreateTimeSpan(0,1,0,0)#"    applicationTimeout = "#CreateTimeSpan(0,8,0,0)#"> -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 17 June 2004 3:48 pm To: CF

RE: OT Plagiarism accusation stops posting

2004-06-17 Thread Matt Robertson
Guy Rish wrote: >I'd bet that it is most specifically that the verbiage is a match. Everything was an identical match.  Three entire articles and their code were duplicated precisely to the character (except for the one we removed, which was missing a line that broke the code).  You've already see

CFMX 6.1 & PowerPoint

2004-06-17 Thread Tangorre, Michael
Has anyone looked into, or successfully integrated CF with PowerPoint. A requirement came in today whereby some upper management people want a PowerPoint presentation dynamically populated from data within the application. If the application were written in ASP.NET or something MS, I'm sure it woul

RE: cfmx and CAPTCHA

2004-06-17 Thread Burns, John D
Well, I'm just trying to figure out why it wouldn't be easier to have a unique string passed with each request that is also tied to the correct "answer" for the image.  That way, the spider could not post multiple times with the same unique string.  It just seems like that would even rule out the b

RE: Application Scope goes missing... HELP!!

2004-06-17 Thread Burns, John D
I know the errors seem sporadic, but maybe you should throw something in your code to check to make sure the application scope has a variable in it before doing anything else.  Maybe do that at the top of the application.cfm and if the scope is empty, reset it to what it should be.  Other than that

Re: CFMX 6.1 & PowerPoint

2004-06-17 Thread George Abraham
Welcome to my world, Mike! I am saddled with somewhat the same problem. I managed to do some stunts with CF5 and make it work. Right now CFMX just plain doesn't like the same code. I do have some time before I have to change the code for CFMX. Anyway, have you seen anything with the Jintegra Ja

CF adm Image storage

2004-06-17 Thread Sam komolafe
Hi, How do I store image files (attachments from customers) to a SQL Server database using ColdFusion AND is this a better way to store attachements? Thanks Sam --- [This E-mail scanned for viruses.] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Don

RE: CFMX 6.1 & PowerPoint

2004-06-17 Thread Tangorre, Michael
Thanks George. I will check for the presentation. I have been reading up on some JAVA based solutions but everything is always noted as "not safe for running on an unattended server" leading me to believe that messing with PPTs is not the best idea on a heavily used production box... Nonetheless I

SOT: Musings CFAnywhere, Bandwidth, RIAs Part 1

2004-06-17 Thread Dick Applebaum
Recent CF-Talk threads discussed RIAs and PIAs, inspired by Rob Rohan's Neuromancer. Still other threads recently have discussed running CFMX/BD from CD/DVD or on the desktop -- the CFAnywhere concept. There are lots of possibilities to use this format for existing apps -- but it may also open

Re: Three Selects Related and session variables

2004-06-17 Thread Aaron Rouse
This is going from rather old memories but I believe you can do it via the Default1, Default2, Default3 attributes or some naming conventions along those lines. I have an example of three related select boxes online and code for populating them when a variable exists or is not blank but it uses qF

Upload a file using Java in CF

2004-06-17 Thread Andrew Spear
Sorry if this is a bit OT.  I have a file upload form that posts to the code below.  The code takes the uploaded file and writes it to the server.  The only problem is that it only works with text files.  It will write any file, but types like Word docs won't open.  I'm pretty sure the problem is t

Re: cfun

2004-06-17 Thread Adrocknaphobia
I'll be there, along with my lovely fiance as always. This will be my 3rd year going. I'm not cool enough to be speaking, so I'll be drinking instead. It's my birthday that Saturday so I hope I wont have to drink alone :( btw. also bringing 5 other coworkers along. Did I mention its only a few bl

Re: CFMX 6.1 & PowerPoint

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 16:17 pm, Tangorre, Michael wrote: > Has anyone looked into, or successfully integrated CF with PowerPoint. That are Java objects that will read/write powerPoint, if that is a route you want to explore. -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 8

RE: How to Ban IP Addresses

2004-06-17 Thread James Smith
In the past I have found the following suitable for most subnets.    You can either redirect the unauthorised users with cflocation or simply display an error then cfabort the template. -- Jay From: Sandy Clark [mailto:[EMAIL PROTECTED] Sent: 17 June 200

Re: CFMX 6.1 & PowerPoint

2004-06-17 Thread Adrocknaphobia
I successfully got a nice PPT application working on CFMX using the PPT COM objects. However it was just not very stable. I've been meaning to come back to the issue now with Office 2003. O'Reily just relased an Office2k3 XML book, you may want to look into it. -Adam - Original Message -

Re: CF adm Image storage

2004-06-17 Thread Thomas Chiverton
On Thursday 17 Jun 2004 16:35 pm, Sam komolafe wrote: > How do I store image files (attachments from customers) to a SQL Server > database using ColdFusion AND is this a better way to store attachements? CLOB or BLOB, normal. base64 encoded is another way (because it's just varchar2 then). Unless

Re: Version Management Inquiry

2004-06-17 Thread Dan O'Keefe
>I am not sure of what kind of integration you are looking for. >Massimo Same way MS VSS integrates. For the most part, I do not need the VSS interface to do my work. Map a Homesite project to a VSS DB and you can check in/out directly in Homesite. Dan [Todays Threads] [This Message] [Subs

Re: cfmx and CAPTCHA

2004-06-17 Thread Bryan F. Hogan
Burns, John D wrote: > Well, I'm just trying to figure out why it wouldn't be easier to have a > unique string passed with each request that is also tied to the correct > "answer" for the image.   There is nothing wrong with that if you store it in the session. That way, the spider could not pos

Jrun Closed Connection : Help

2004-06-17 Thread Robertson-Ravo, Neil (RX)
OK, I know of a few technotes on this error but to be honest the results it returns are pretty much useless...anyone know why a perfectly healthy server would start to generate the Jrun Closed Connection Error while ColdFusion crashes and restarts?  It all seems to work fine on a development serv

Frame Effect With CF?

2004-06-17 Thread Nick Baker
Is there any way to embed a Frame within a table cell? From my limited knowledge of frames, frames have a lot of conflicts that make it very difficult to embed. Or is there a custom CF Tag (or _javascript_ function) that will accomplish the same thing? I am sure this is old hat to most of you.

Re: CF adm Image storage

2004-06-17 Thread Bryan F. Hogan
You store them on the file system and store the locations to them in the database. I do not suggest to store the binary data in your DB. Sam komolafe wrote: > How do I store image files (attachments from customers) to a SQL Server > database using ColdFusion AND is this a better way to store at

Re: CFMX 6.1 & PowerPoint

2004-06-17 Thread Dick Applebaum
You might be able to do it by CFExecuting an OSA script: Here's some info on the Mac using AppleScript (Apple's OSA scripting language).     http://www.apple.com/applescript/powerpoint/ It says you can create and edit slides! Since MS put the hooks into PowerPoint, I assume they have an OSA s

RE: CF adm Image storage

2004-06-17 Thread Joe Rinehart
You can store them in the database, but most people (and most examples you'll see) save the attachment to a directory on the server, and a reference to the filename in the database. -joe -Original Message- From: Sam komolafe [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 11

OT: Palm OS development

2004-06-17 Thread Bryan Stevenson
Hey All, We've been asked to develop an application for PDAs (Pocket PC and Palm OS). We use Pocket Builder for Pocket PC...so development there is a snap...but we haven't tackled Palm before. So if anyone has any advice/resources about Palm OS application development (data mining essentially) th

CFC Response Delay Bug in ColdFusion 6.1???

2004-06-17 Thread Carlo Gabriel Evidente
Since we upgraded our CF MX 6.0 server to 6.1 version, i noticed that there's a delay with the CFC response from the Coldfusion to the FlashCom server. When my flashcom's client-side action script calls a CFC component, like to check the username and password in the database, it takes a quite long

Re: CF adm Image storage

2004-06-17 Thread Dick Applebaum
Technologically, you do it as BLObs (Binary Large Objects). There are prior threads that discuss the  pros/cons of whether these are best stored in the DB or in the file structure (with a reference in the DB). Search the  archives for more info! Dick On Jun 17, 2004, at 8:35 AM, Sam komolafe

SOT: Musings CFAnywhere, Bandwidth, RIAs Part 2

2004-06-17 Thread Dick Applebaum
What if my preso of family memories could show a high-quality video/shideshow with sound -- and the user could click on something (say an individual in a group photo of the new years party) and get a hint who she is-- then click again and see their position in the family tree.  Say... Hal,  Mat

Re: cfmx migration (laptop)

2004-06-17 Thread Rick Root
Dwayne Cole wrote: > I did this and now I'm having problems.  Could it be that my old system > was running CFMX 6 and the new syste is running 6.1. > > Here's the messages I'm receiving. > > Macromedia][SequeLink JDBC Driver][SequeLink Server]Required user name > is missing I guess I missed t

RE: OT Plagiarism accusation stops posting

2004-06-17 Thread John Munyan
I should start by saying I have never written a tutorial so I don't know what it feels like to have my IP stolen personally.  I am far from an expert with CF, maybe proficient.  I have bennefited from tutorials across the web to help me with my website, the purpose of which to simple provide Hiking

CFC Response Delay Bug in ColdFusion 6.1???

2004-06-17 Thread Carlo Evidente
I'm currently developing a Flashcom application that interacts with the Coldfusion server. Since we upgraded our CF MX 6.0 server to 6.1 version, i noticed that there's a delay with the CFC response from the Coldfusion to the FlashCom server. When my flashcom's client-side action script calls a CFC

RE: cfun

2004-06-17 Thread Tangorre, Michael
Adam, Whereabouts do you live... I am right off of Tuckerman! Mike > I'll be there, along with my lovely fiance as always. This > will be my 3rd year going. I'm not cool enough to be > speaking, so I'll be drinking instead. It's my birthday that > Saturday so I hope I wont have to drink alone

RE: CFMX 6.1 & PowerPoint

2004-06-17 Thread Tangorre, Michael
> I successfully got a nice PPT application working on CFMX > using the PPT COM objects. However it was just not very > stable. I've been meaning to come back to the issue now with > Office 2003. O'Reily just relased an Office2k3 XML book, you > may want to look into it. PowerPoint 2003 got sh

RE: advanced search

2004-06-17 Thread Frank Dewey
Thanks guys for helping me with this.  I looked more in Verity.  Verity only looks at static pages.  Since my page is generated dynamically by the database at runtime, this option will not work.  I'm still kinda new to CF and so didn't know about CFQUERYPARAM...but I do now :-) I am using Micros

Re: Frame Effect With CF?

2004-06-17 Thread Bryan F. Hogan
CF is out of the picture. You want an iframe. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Palm OS development

2004-06-17 Thread Tony Weeg
isnt code warrior the app that ports vb type apps to palm? tw -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 12:01 PM To: CF-Talk Subject: OT: Palm OS development Hey All, We've been asked to develop an application for PDAs (Pocket PC

RE: Frame Effect With CF?

2004-06-17 Thread Tangorre, Michael
> Is there any way to embed a Frame within a table cell? From > my limited knowledge of frames, frames have a lot of > conflicts that make it very difficult to embed. > > Or is there a custom CF Tag (or _javascript_ function) that > will accomplish the same thing? > > I am sure this is old hat

Re: Version Management Inquiry

2004-06-17 Thread Massimo Foti
> >I am not sure of what kind of integration you are looking for. > > >Massimo > > Same way MS VSS integrates. For the most part, I do not need the > VSS interface to do my work. Map a Homesite project to a VSS DB > and you can check in/out directly in Homesite. > I never use it, sorry Massi

RE: Musings CFAnywhere, Bandwidth, RIAs Part 1

2004-06-17 Thread Dave Watts
> Why can't Hal's site have a richer UI -- think of it -- Hal's > voice, explaining the animated preso? There's already a great answer for this, though - Macromedia Breeze. It's a really good product for this sort of thing, and it makes building presentations very easy. Dave Watts, CTO, Fig Leaf

RE: cfmx and CAPTCHA

2004-06-17 Thread Dave Watts
> I'm not saying it ever receives that variable. However, > CF somehow associates that session with that client, > therefore, the spider appears to be a valid client. I would go a step farther and say that it is a valid client. There's no difference between one HTTP client and another, from the

RE: Palm OS development

2004-06-17 Thread Dave Watts
> We've been asked to develop an application for PDAs (Pocket > PC and Palm OS). We use Pocket Builder for Pocket PC...so > development there is a snap...but we haven't tackled Palm > before. > > So if anyone has any advice/resources about Palm OS application > development (data mining essenti

  1   2   >