RE: An error with CFMAIL

2001-04-19 Thread Axiomatique (Vincent)
I am getting the same error message as the one below, we are not using IMailv6. We started to get the error when sending a specific message. So I broke down the message in 4 pieces and all 4 were sent successfully, but when putting the message back together step by step when reaching a certain siz

Re: SQL update not executing?

2001-04-19 Thread Jon Hall
Well I seem to have beaten the problem, I spent a couple of hours taking a lot of the logic into sql server, dynamic SP's and all...whew. I still dont know why the problem happened in the first place though Thanks /me wishes I had a dba... ;-) jon - Original Message - From: "Todd As

Re: Hey Check This Out?!?!

2001-04-19 Thread Todd Ashworth
You need to make sure you get all of the URL. When outlook/outlook express sends/recieves an E-mail, it tends to break up strings that are over a certain length. Make sure you get all the parts and put them back together. This means that you will probably have to copy and paste them into a brows

Re: help

2001-04-19 Thread Mak Wing Lok
have you try use FILEFIELD="form.newsPrint" ? - Original Message - From: "Susan Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 10:01 PM Subject: help > Hi- > > I have a form that allows users to upload files using: > > > On the receiving

Re: SQL update not executing?

2001-04-19 Thread Todd Ashworth
This has nothing to do with your current question, but as to your earlier question, our DBA says it can't be done on the application level (in a web based environment, due to its stateless nature) and is dubious as a Stored Procedure. I'll bug him more about it tomorrow and see if he can't come u

Re: Hey Check This Out?!?!

2001-04-19 Thread kmansel
Nothing came up?? Original Message From: [EMAIL PROTECTED] To: [EMAIL PROTECTED], Subject: Re: Hey Check This Out?!?! Date: Thu, 19 Apr 2001 19:45:23 -0400 >http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&; >config= >cf-talk_houseoffusion_com&restrict=&exclude=&wo

SQL update not executing?

2001-04-19 Thread Jon Hall
OK, no response on the question earlier, but maybe someone has seen this or can help me figure out where to look... I have a page which every once in a while will execute fully, but there is an update statement that does not update the database even though I see the query in my debug. Here is a sn

RE: 4.5 Certification

2001-04-19 Thread C. Hatton Humphrey
A bit on the side I guess, but since 5.0 is coming out, is there going to be a separate study guide for that version? I've been given the green light by my company to start studying for the test... but which book's going to be the one to study if I'm not planning on taking the test for another 6

RE: 4.5 Certification

2001-04-19 Thread John Wilker
Terry, You get an Unwieldy gym bag (Mine broke after a week) and a Floppy disk with the Official logo and such. And the Certificate of course :-) At least MCSD's get a snazzy little lapel pin LOL!! Congrats too by the way. J. John Wilker Web Applications Consultant Allaire Certified Col

RE: Request vs. Application scope

2001-04-19 Thread Bryan Love
Application variables are not unique to each request; they do not use the CFID and CFTOKEN, but rather are found based on the NAME of your application as specified in the cfapplication tag. Session variables are stored in RAM on the CF server and are unique to each session. The corruption here c

Re: To sum up some numbers

2001-04-19 Thread Tony Schreiber
#ArraySum(ListToArray(ValueList(myquery.column)))# is one way... Try and do it in the query if you can, that's easier: SELECT ... SUM(column) AS ColumnSum ... > I think I don't get it today. > > How can I add (sum up) the following numbers: > 12 3 4 0 6 5 4 3 ... > > They do come from a quer

RE: To sum up some numbers

2001-04-19 Thread Costas Piliotis
See, I would have opened up calculator and typed: 12 + 3 + 4 + 0 + 6 + 5 + 4 + 3 Tee hee... Are you trying to add up a bunch of recordcounts? If you don't want to write a separate query, you can use on your recordset and add it all up... Not as good as using a separate query though. -Or

RE: ifs inside a select inside a Stored Procedure

2001-04-19 Thread Costas Piliotis
You can't use if. Use case SELECT logdate as CSTlogdate, datepart(hour,logtime) as CSTLogHour, TrafficOrigin = CASE WHEN [c-ip] ='xxx.xxx.xxx.xxx' THEN 'internal' ELSE 'external' END FROM [filterPageViews] -Original Message- From: Eric Dawson [mail

RE: ER-Diagram Tools

2001-04-19 Thread Costas Piliotis
I prefer to use ER tools reactively... Nothing beats a good session with the whiteboard to design... I like the ER tools for documenting existing schemas... -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 2:06 PM To: CF-Talk Subject: RE:

RE: Weekly Date Driven Content in Cold Fusion?

2001-04-19 Thread Peter Tilbrook
Assuming your database contains a date field use the BETWEEN function in your SQL to select records dated between Now() (ie: today) minus however days you want to go back. -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Friday, 20 April 2001 07:13 To: CF-Talk S

RE: 4.5 Certification

2001-04-19 Thread Ben Forta
Terry, Congrats on passing the test, and I am glad the book helped. Part of the reason that some of those topics were not covered is that there are actually two different test, you got one set of questions, but there is another whole set. Also, FYI, when the test is revised for CF5 some of the t

Re: Hey Check This Out?!?!

2001-04-19 Thread Todd Ashworth
http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config= cf-talk_houseoffusion_com&restrict=&exclude=&words=CFTempOnlyForSetVariableN everUseThisNameInYourCFMLCode1223335654321 Todd Ashworth - Original Message - From: "Kevin Mansel" <[EMAIL PROTECTED]> To: "CF

RE: To sum up some numbers

2001-04-19 Thread Sicular, Alexander
in you query just use select sum(columnname) from ... where ... good luck, alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 6:26 PM To: CF-Talk Subject: To sum up some numbers I think I don't get it today. How can I add (sum

RE: Advanced CF5 Bootcamp format

2001-04-19 Thread Peter Tilbrook
Ouch! $4,500 x poor old Aussie dollar = $9,000! >> -- 68 hours over six days, 12 hours per day M-F, 8 hours on Saturday -- All three meals catered -- $4,500 normally, $3,950 early registration But it's been suggested that a better format would be this: -- 60 hours over five days, 12 hours per

Re: Request vs. Application scope

2001-04-19 Thread Jason Lotz
Andrew, Thanks for the response. I completely understand what you are saying so I think I misphrased my question. Let's try an example and I'll show you what I mean Let's say you set an Application variable "Application.DSN" under the application named "MyApp". Assuming everything is setup

Re: Request vs. Application scope

2001-04-19 Thread Todd Ashworth
You also need to lock your application variables, which add some additional overhead. Todd - Original Message - From: "Andrew Tyrone" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 6:17 PM Subject: RE: Request vs. Application scope > > -Origina

Passing DB Variables from one table DataSource to another

2001-04-19 Thread SHEETS, DAYV (PB)
How would one go about passing one database variable to another? Here's my dilemma; I have been asked to write a counter that will store the users ID in the table (in addition to IP/page/browser etc). Once the user is authenticated I would like to pass the users ID into my counter table. The pro

Re: Weekly Date Driven Content in Cold Fusion?

2001-04-19 Thread Ken Beard
put two date fields in your database, start_date and end_date.. set the values for each set of content 5 days apart.. or however far apart you wish. use SQL like createodbcdate(now()) BETWEEN start_date AND end_date At 02:12 PM 4/19/01 -0700, you wrote: >Is there a way to do a date range from st

OT: Re: locks and StructClear

2001-04-19 Thread Ken Beard
EXCLUSIVE At 04:42 PM 4/19/01 -0500, you wrote: >What type of lock is used with StructClear(Session)? Is it ReadOnly or >Exclusive? > >Sebastian > > > ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauth

Hey Check This Out?!?!

2001-04-19 Thread Kevin Mansel
Anyone ever seen this An error has occurred while processing the expression: !airheadjb_test=CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode1223335654321 Invalid token found on line 1 at position 1. ColdFusion was looking at the following text: ! Invalid expression el

Re: CF Server behind DMZ

2001-04-19 Thread Michael Lugassy
check clustercats. run a search on www.allaire.com -> Support -> Knowdlege base Thanks, Michael Lugassy, Senior Server Engineer Interactive Music Ltd. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionaut

RE: ER-Diagram Tools

2001-04-19 Thread Clint Tredway
I feel the same way. I use Rapid SQL and ER Studio and I like them. They have thier faults just any software package, but the benefits far outway any drawback. -- Original Message -- From: "Dylan Bromby" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date

Re: cfschedule behind protected directory

2001-04-19 Thread Michael Lugassy
Run the scheduled script with url params you know they're VALID. - Original Message - From: "Chris Giminez" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 9:08 PM Subject: cfschedule behind protected directory > I am using cf security to protect a d

ifs inside a select inside a Stored Procedure

2001-04-19 Thread Eric Dawson
I want to do this but can't seem to find the right syntax. I am sure Alter Procedure [_process Daily Page Views] As Insert into [processPageViews] (CSTLogDate,CSTLogHour,TrafficOrigin) ( SELECT logdate as CSTlogdate, datepart(hour,logtime) as CSTLogHour, if [c-ip]='xxx.xxx.xxx.xxx' beg

Re: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Sean Renet
Chris, The fact is that you actually do not need to post from a secure page at all. Nor do you need to do any other trickiness that has been explained in prior emails. Did Bank of America set up a test site for you? Did that site work? I was having the same problems you are describing and decid

RE: Newbie question -- Dynamic form processing

2001-04-19 Thread Bruce, Rodney
Melissa I haven't seen an answer back to you yet, so here is one possibly way. IF (assuming here) you are displaying all items for sale, with a text box to enter number of each item customer wants to buy: i.e (123, Shovels, garden, []) (side comment you may want to display price): sampl

locks and StructClear

2001-04-19 Thread sebastian palmigiani
What type of lock is used with StructClear(Session)? Is it ReadOnly or Exclusive? Sebastian ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.c

4.5 Certification

2001-04-19 Thread Terry Bader
just wanted to express some knowledge about the exam which I just passed... =^) my stats: 45 mins, 75% score... not bad, will shoot for 85-90% on the 5.0 one when it comes out... but what I just wanted to share was some of the stuff that was or really what WASN'T on the exam first of

ot: javascript question

2001-04-19 Thread Bruce, Rodney
I am having a problem with running javascript on in a second(popup) window. from the calling page I use: windnow.open("file.cfm"); when the page first opens everything works fine, but when I call a function to rewrite the page, the next time I try to call any function, I get the err

CF Server behind DMZ

2001-04-19 Thread Bob Smith
Hi all, Many organizations today have an architecture such that you have a firewall on the outer perimeter then webservers and then the next perimeter is of second firewall. Organizations are demanding that Application Servers such as ColdFusion be kept behind the second firewall. I know ColdFu

Weekly Date Driven Content in Cold Fusion?

2001-04-19 Thread SHEETS, DAYV (PB)
Is there a way to do a date range from start to end (e.g. a five day span)? I want to be able to have content automatically change every week from information being stored in a database. The information will be displayed only if it falls within that date range criteria (I would build two fields "s

RE: ER-Diagram Tools

2001-04-19 Thread Dylan Bromby
i use them. i really like them. i'm glad i wasn't the one who paid for them. they're powerful and expensive. i like the interface better than SQL ent. mgr. in some cases. -Original Message- From: Chris Sham [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 12:48 PM To: CF-Talk Su

Request vs. Application scope

2001-04-19 Thread Jason Lotz
I have noticed that I can easily interchange the use of Application and Request scoped variables. Both are easily accessible in custom tags and are only exist for the current http request. So, what are good reasons to use one instead of the other? Jason ~~

RE: a week before...

2001-04-19 Thread Hayes, David
Look at DateAdd. -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 1:19 PM To: CF-Talk Subject: a week before... Hi, I make a date using: How can I find out what the day is 7 days prior? TIA, Pete ~~~

RE: a week before...

2001-04-19 Thread Seva Petrov
Brook, HTH, Seva Petrov > -Original Message- > From: Peter Benoit [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 2:19 PM > To: CF-Talk > Subject: a week before... > > > Hi, > > I make a date using: url.day)#> > > How can I find out what the day is 7 days prior? > > T

Re: Send Cookie in custom tag?

2001-04-19 Thread Jon Hall
Dont know if that would work, but if you dont mind relying on javascript, something like this will work. self.location='myPage.cfm'; The cooke will get set fine... jon - Original Message - From: "Willy Ray" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April

Re: a week before...

2001-04-19 Thread Shawnea Carter
- Original Message - From: "Peter Benoit" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 2:19 PM Subject: a week before... > Hi, > > I make a date using: url.day)#> > > How can I find out what the day is 7 days prior? > > TIA, > Pete > > > ~~

RE: a week before...

2001-04-19 Thread Garza, Jeff
I wouldn't use now as a variable name... Could be confusing seeing how it's a function all to itself... Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECT

ER-Diagram Tools

2001-04-19 Thread Chris Sham
Does anyone have pros/cons of ER Studio or other ER-Diagram/Database Management tools. Of the little bit of ER Studio (and components: Rapid SQL, DB-Artisan, etc..) the tools looked impressive. I am looking for reasons why I need it. Any testimonials or lack there of for such tools would be

RE: CFExcute doesn't run EXEs

2001-04-19 Thread Andrew Tyrone
> -Original Message- > From: Michael Lugassy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 9:12 AM > To: CF-Talk > Subject: CFExcute doesn't run EXEs > > > I'm having problems with CFEXCUTE. > apperntly I can run stricly bat files that contains > commands like: move, copy a

Manual Lock row?

2001-04-19 Thread Jon Hall
OK, here is my problem, I have two program running on different servers that query and update the same field in the same database. I am running into concurrency problems where users happen to be running the same program at the same time and end up updating the field with the wrong info. What I nee

RE: ASP for Cold Fusion Disciples

2001-04-19 Thread Zhou, Mei Y (Mei)
Since you comes from CF, and know what web about, then the best place I think is: www.asptoday.com excellent site, it seems to charge a little bit now ( economy reason? ), but it is very worth it. Mei -Original Message- From: Greg Jordan [mailto:[EMAIL PROTECTED]] Sent: Thursday, Apr

HARPOON 4.0

2001-04-19 Thread Steven A. del Sol
Ok, I also was on the list for Harpoon beta but 4.0 did not show up. I had to request to be added again. They have posted it up and added me. So for all those that were on the list you might have to get added again. Steven A. del Sol NETPACQ Internet Systems [EMAIL PROTECTED] http://www.netpa

cfschedule behind protected directory

2001-04-19 Thread Chris Giminez
I am using cf security to protect a directory. If the user is not logged in (with a correctly defined session variable) they are redirected to a login page in a different directory. I would like to run cfschedule for a page that is located in the protected directory. It cannot access it due to

RE: cfincluded select box doesn't work

2001-04-19 Thread Seva Petrov
Allen, This probably has nothing to do with your problem, but have you checked that the include is not part of a block? If it's the case, you might want to put your inside a tag pair. HTH, Seva Petrov > -Original Message- > From: Allen Hudson [mailto:[EMAIL PROTECTED]] > Sent: Thursd

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Christopher Olive, CIO
that was on my list. tried it now while waiting for my client to get their SSL setup so i can test my first suspicion. chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Tracy Bost [mailto:[EMAIL PROTECTED]] Sent: Thursday, April

Re: help

2001-04-19 Thread Brook Davies
Can some body please share a link to a live example of a crystal reports report. I also have the following questions: Is Crystal Report processor intensive? Is it viable to use the free version that comes with older versions of CF? Any examples? What does the new version cost!! I couldn't find a

a week before...

2001-04-19 Thread Peter Benoit
Hi, I make a date using: How can I find out what the day is 7 days prior? TIA, Pete ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-

RE: cfincluded select box doesn't work

2001-04-19 Thread Semrau, Steven L Mr SRA
When you say "but it will not work" what exactly do you mean? Is it including the file but the code is not executing? It's not including the file? Or? Are you trying to include this more then one time on the same page? Is this being included inside of another form? Steven Semrau SRA Internati

FW: Advanced CF5 Bootcamp format

2001-04-19 Thread Arden Weiss
The second option sounds great. The only problem is that Adam can talk faster than I can hear/absorb and at that price, absorbsion is King. ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Matt Eschenbaum [SMTP:[EMAIL

RE: Advanced CF5 Bootcamp format

2001-04-19 Thread Arden Weiss
The second option sounds great. The only problem is that Adam can talk faster than I can hear/absorb and at that price, absorbsion is King. ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Matt Eschenbaum [SMTP:[EMAIL

RE: Un-defining a Variable

2001-04-19 Thread Adkins, Randy
if it is not a session variable then once the page changes/reloads, the variable is not defined unless physically defined again -Original Message- From: Geoff Hoffman [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 12:33 PM To: CF-Talk Subject: Un-defining a Variable What

Re: Should I optimize collections?

2001-04-19 Thread Joseph Thompson
If you are really purging them and reindexing, you won't need to "optimize". That is exactly the method I use now. "Optimizing" is ok if you just update a few records here and there, but after losing my first collection I went with plan "A" above without further trouble. > Anyone? > > > I'm usi

Send Cookie in custom tag?

2001-04-19 Thread Willy Ray
I know I can't use CFCOOKIE above CFLOCATION on a template, but what if I had a custom tag that dropped a cookie above a CFLOCATION? Like this: Would the cookie go? Willy ~~ Structure your ColdFusion code with Fusebox. Get the official bo

Re: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Sean Daniels
On 4/19/01 12:42 PM Christopher Olive, CIO wrote: > 3) they suggested that i have to be coming *from* a secure URL as well. i'm > working on trying that possibility next. I would give that a shot. I've always had problems with form fields disappearing when posting to an HTTPS from an HTTP. - S

Re: Advanced CF5 Bootcamp format

2001-04-19 Thread Adam Phillip Churvis
Scholarship plan, huh...? Now that's an idea! Actually, you can probably get a signature loan for a small amount like that at your local bank with just proof of employment. But which of the two formats I mentioned would you prefer? And most importantly, why? I want to make this course what pe

Weekly Date Driven Content in Cold Fusion?

2001-04-19 Thread SHEETS, DAYV (PB)
Is there a way to do a date range from start to end (e.g. a five day span)? I want to be able to have content automatically change every week from information being stored in a database. The information will be displayed only if it falls within that date range criteria (I would build two fields "s

Re: Advanced CF5 Bootcamp format

2001-04-19 Thread Adam Phillip Churvis
Your email probably broke the URL. We're now just re-directing all broken URLs to the itinerary, so even broken ones should work now :) Respectfully, Adam Phillip Churvis Productivity Enhancement, Inc. http://www.ColdFusionTraining.com http://www.ColdFusionSeminars.com http://www.CommerceBlock

Re: CFExcute doesn't run EXEs

2001-04-19 Thread Michael Lugassy
No system policy. No problem with %PATHEXT%, I've also specified the exact location (path and filename) for arj32.exe :(( - Original Message - From: "Steve Bernard" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 6:27 PM Subject: RE: CFExcute doesn't

RE: ASP for Cold Fusion Disciples

2001-04-19 Thread Greg Jordan
maybe not from a CF perspective, but http://www.4guysfromrolla.com it pretty good for regarding ASP and I would definitely check out http://java.sun.com/products/jsp/index.html for JSP, if you have not done so already... Greg -Original Message- From: Troy Hiltbrand [mailto:[EMAIL PRO

RE: ASP for Cold Fusion Disciples

2001-04-19 Thread Arden Weiss
If you (as I do) tend to learn better by example, downloaded CodeCharge from http://www.codecharge.com/download/?templ=examples&example_id=4 CodeCharge is a code generator that can be used to generate Cold Fusion, ASP, JSP, PHP and Pearl code for an identical spec'd app. Their existing tutoria

RE:HTML editor for idiots? recommendation?

2001-04-19 Thread Jose Alberto Guerra Ugalde
This is a multi-part message in MIME format. --=_NextPart_000_00B5_01C0C8C4.6BD4FE80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable This may sound to simple . . . or maybe to complex =3DO) but why = don't you put the editable "plain text

RE: cfincluded select box doesn't work

2001-04-19 Thread Garza, Jeff
You might want to try using a fully qualified domain name for your links, like http://mycompany.com/cf_testing/sarc/attachmate/attachmate-e.cfm. That way no matter where in your site it's placed, it will point to the right file. Other than that, what errors are you getting? Jeff Garza Web Devel

Re: CFExcute doesn't run EXEs

2001-04-19 Thread Michael Lugassy
is this relevent? I thought it's an optional parameter. the process should take about 2 seconds to complete (checked it by running it myself manually). Michael. - Original Message - From: "Craig Dudley" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001

Re: help

2001-04-19 Thread Michael A. Cady
If you have not included the enctype="multipart/form-data" parameter in your form submission you will get this error. It can also be caused by users with browsers older than MSIE 4 or Netscape 3 trying to use the tag on a page. These browsers don't know about this tag. Check your error log and

Re: Un-defining a Variable

2001-04-19 Thread Michael Dinowitz
You can't unset a variable but you can fake it. Lets say you created a structure and in that structure is a key with a value. That key has the same effect as a variable and you can 'delete' it. > What I need/want is the ability to so that > subsequent isdefined("aVariable") returns FALSE. > > A

RE: Advanced CF5 Bootcamp format

2001-04-19 Thread Matt Eschenbaum
Get the entire URL! Sincerely, Matthew M. Eschenbaum Allaire Certified Professional DevTech Inc. [EMAIL PROTECTED] 206.956.0888 www.dev-tech.com -Original Message- From: David Sammons [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 9:15 AM To: CF-Talk Subject: RE: Advanced C

Re: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Tracy Bost
Have you tried specifying your user agent in the cfhttp post ?. I have seen certain web servers not play well with cfhttp unless that is specified. - Original Message - From: "JoshMEagle" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 10:30 AM Subje

RE: Harpoon The Current Status

2001-04-19 Thread Mike Brunt
Here is a FAQ which explains the current status with Harpoon. "Q. I have heard rumors that Harpoon is being cancelled? What is the status of Harpoon? Harpoon is not being cancelled. Macromedia is committed to delivering a resource that meets our high quality assurance standards so that the de

Un-defining a Variable

2001-04-19 Thread Geoff Hoffman
What I need/want is the ability to so that subsequent isdefined("aVariable") returns FALSE. Another way of saying it would be, why isnt there DeleteVariable("var") like there is DeleteClientVariable("var") Or put yet another way, Why can't you cfset r=StructDelete(Variables, "var") As

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Christopher Olive, CIO
my apologies. i neglected to mention that the CF guys at BoA verified that the code is correct. in response to the other questions: 1) i'm going to try to use the USERAGENT part of CFHTTP to "spoof" IE if nothing else works. 2) yes, i'm posting to a secure URL. no, i haven't had any problems w

RE: Advanced CF5 Bootcamp format

2001-04-19 Thread JoshMEagle
Wow! I'd love to attend ... got a scholarship plan? That's a boatload of money for the training. I'm sure it's worth it, but OUCH!!! How about the $1500 and we pack our own breakfast/lunch plan? Can we get a volume discount by taking the Bootcamp class and Fusebox class and sleeping in the parkin

RE: help

2001-04-19 Thread Dylan Bromby
post all the code. -Original Message- From: Susan Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 8:35 AM To: CF-Talk Subject: RE: help I'm still stumped. I have the enctype="multipart/form-data" included in my form tag that sends "newsprint "...? > -Original

ASP for Cold Fusion Disciples

2001-04-19 Thread Troy Hiltbrand
I am a Cold Fusion disciple and am currently working with ASP and JSP. Does anyone know of any web sites that teach ASP and JSP from the perspective of someone that has been writing web apps in Cold Fusion? It just seems that I have been taking things like client variables and IsDefined for gran

Re: help

2001-04-19 Thread Michael Lugassy
HAve you tried my second suggestion? change form action to: GET and check what the long url gives ya. Your answer might be lay there. - Original Message - From: "Susan Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 5:34 PM Subject: RE: help

RE: How secure are cgi variables

2001-04-19 Thread Costas Piliotis
http://advice.networkice.com/Advice/Underground/Hacking/Methods/Technical/Sp oofing/default.htm -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 6:36 PM To: CF-Talk Subject: RE: How secure are cgi variables I'm just trying to figu

RE: Delimiters

2001-04-19 Thread Peter J. MacDonald
tildes ( ~ ) are not bad. Thank You, Peter Peter J. MacDonald II Creative Computing, Inc. 100 Middle Street Lincoln, RI 02865 Phone: 401.727.0183 x123 Fax: 401.727.4998 Portable: 401.965.3661 E-MAIL: [EMAIL PROTECTED] Web Page: www.creatcomp.com -Original Message- From: Dave Hannum [m

RE: CFExcute doesn't run EXEs

2001-04-19 Thread Steve Bernard
Is there any possibility of a system policy being in place? Do you have CF 'Admin' access or are you operating in a sandbox? Also, check the NT environment variable '%PATHEXT%', it may have been limited if you are running under the context of a user other than SYSTEM or 'Admin'. Steve -Origi

RE: Forging HTTP headers

2001-04-19 Thread Thomas Chiverton
> So... does anyone know how it's done? using netcat or telnet, pass a raw HTTP request like the following: User-Agent: n30/browser Host: www.speeddy3d.com Referer: http://www.speeddy3d.com/cgi-bin/news/news.cgi GET /cgi-bin/news/news.cgi?addAuthor HTTP/1.0

RE: Advanced CF5 Bootcamp format

2001-04-19 Thread David Sammons
I would definately be interested in the type of training that you're planning. Unfortuneately I received the following error when going to your site. Error Diagnostic Information An error occurred while evaluating the expression: Len(Trim(Attributes.EventID)) Error near line 35, column 6

RE: help

2001-04-19 Thread Susan Matthews
I have IE5, but my client uses IE and I don't know which version. > -Original Message- > From: Michael A. Cady [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 10:26 AM > To: CF-Talk > Subject: Re: help > > > What version of IE are you using to test? > > - Original Message

RE: help

2001-04-19 Thread Susan Matthews
I'm still stumped. I have the enctype="multipart/form-data" included in my form tag that sends "newsprint "...? > -Original Message- > From: Michael Lugassy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 11:32 AM > To: CF-Talk > Subject: Re: help > > > make sure you have t

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread JoshMEagle
could you show us the code? Are you using ? Are you closing your ? Are you certain you've included the POST command? It's hard to diagnose without a snippet. Thanks, Joshua Miller Web Development Eagle Technologies Group Technology Solutions for the Next Generation www.eagletgi.com [EMAIL PROTEC

Advanced CF5 Bootcamp format

2001-04-19 Thread Adam Phillip Churvis
I'm trying to make a decision about the Advanced Bootcamp for ColdFusion 5, Database, and Javascript, and I could really use some advice. I'm wondering if the format is right for people. Currently, I have it scheduled like this: -- 68 hours over six days, 12 hours per day M-F, 8 hours on Satur

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Aaron Johnson
Hey Chris, I've used BofA before on a site... It was awhile go so I don't remember my specific problems but I think ended up not using CFHTTP and just did a form post to their servers (which is a *huge* no no but I didn't have a choice, that was the clients merchant account...) Aaron Johnson, MC

RE: CFExcute doesn't run EXEs

2001-04-19 Thread Tim Bahlke
This doesn't help, but I've had the same problem. I'd be interested in reading the solution as well. -- Tim Bahlke > -Original Message- > From: Michael Lugassy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 11:27 AM > To: CF-Talk > Subject: Re: CFExcute doesn't run EXEs >

Forging HTTP headers

2001-04-19 Thread Aidan Whitehall
OK, after listening to you guys I've gone ahead and told someone that it's possible to forge the cgi.HTTP_REFERER value. Their reply (perhaps understandably) was "show me how". So... does anyone know how it's done? Thanks -- Aidan Whitehall <[EMAIL PROTECTED]> Netshopperuk Telephone +44 (017

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Tim Bahlke
Are you posting to a secure page (https)?has a problem with that. -- Tim Bahlke > -Original Message- > From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 10:16 AM > To: CF-Talk > Subject: Bank of America and e-stores and CFHTTP > > > has anyone

RE: Bank of America and e-stores and CFHTTP

2001-04-19 Thread Mike Sullivan
they could be checking the browser/client user agent. maybe coldfusion... isn't valid, try an ie or netscape agent header. mike > -Original Message- > From: Christopher Olive, CIO [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 7:16 AM > To: CF-Talk > Subject: Bank o

RE: The Best Clustering Solution

2001-04-19 Thread Tom Clark
We are doing basically the same thing. Although we haven't gone "live" yet, what we are doing is using the "web deploy" feature of Visual Sourcesafe to keep the servers up to date. Nothing goes on the servers that isn't checked into sourcesafe. All of the code is specified as "web projects" whi

RE: isdefined() being phased out? how soon?

2001-04-19 Thread Dylan Bromby
no. IsDefined() replaces ParameterExists(). -Original Message- From: JoshMEagle [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 7:29 AM To: CF-Talk Subject: isdefined() being phased out? how soon? I've heard talk that isdefined() is being phased out of CF any idea if th

Error message in window generated by link from a web page viewed in CFStudio's editor window

2001-04-19 Thread Hubert Earl
I'd appreciate some advice on the following problem. Some help files on studio include a link (often showing examples of code) which are supposed, I believe to show in a browser window separate from Studio. The window comes up, all right, but with this error message: Error Occurred While Proce

Re: isdefined() being phased out? how soon?

2001-04-19 Thread David E. Crawford
More likely ParameterExists() will be phased out since it has been deprecated for about 3 releases. DC - Original Message - From: "JoshMEagle" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 10:29 Subject: isdefined() being phased out? how soon? > I

how to get the jrunsessionid

2001-04-19 Thread ychen
Hi, I am using CF to access to JRUN server, how can I get the jrunsessionid ? Is there a way to catch jrunsessionid value and add it on to my URL If there is a way to add jrunsessionid on to my URL, what is the syntax, such as http://127.0.0.1/my.jsp?jrunsessionid=12244455 any suggestio

RE: help

2001-04-19 Thread Terry Bader
make sure you have your encrypt type set: Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED] icq: 5202487 aim: lv2bounce

  1   2   >