Re: ColdFusion extensions for Ultradev

2001-11-12 Thread Peter Tilbrook
I must be missing something - the URL perhaps! ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: Allaire Alliance Partner Program - Macromedia Alliance Program...

2001-11-12 Thread Peter Tilbrook
Especially if you also purchased a subscription. The best I've experience was purchasing Forums at about AUD $760.00 only for Allaire to then make it open source. Really impressed. Honest. I was REALLY impressed! At 16:02 11/11/01 -0500, you wrote: New management, new rules. I was surprised

Coldfusion Server hanging up...

2001-11-12 Thread Kinley Pon
I am receiving this error message plus I am force to restart the server. -- Error Occurred While Processing Request Error Diagnostic Information Request canceled or ignored by serverServer busy or unable to fulfill request. The server is unable to

Re: Coldfusion Server hanging up...

2001-11-12 Thread Peter Tilbrook
Your attempts to break it seem to be working. I think your server infrastructure is not quite right. Alternatively you have been hit by the nasty virus whos name I won't dare mention. ~~ Your ad could be here. Monies from ads go to support these

Re: Coldfusion Server hanging up...

2001-11-12 Thread Jochem van Dieten
Kinley Pon wrote: I am receiving this error message plus I am force to restart the server. The entire server or just the CF Application Service. -- Error Occurred While Processing Request Error Diagnostic Information Request canceled or

Looping through dates using CFSCRIPT

2001-11-12 Thread Aidan Whitehall
Can anyone give me a rough idea how you'd write this loop so it can be put inside a CFSCRIPT block? CFLOOP FROM=#Attributes.StartDate# TO=#Attributes.EndDate# INDEX=Date Some stuff here... /CFLOOP Thanks -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks

RE: Looping through dates using CFSCRIPT

2001-11-12 Thread Craig Dudley
Try this.. cfscript Attributes.StartDate = 30/10/2001 ; Attributes.EndDate = 31/12/2001; for ( x = Attributes.StartDate ; x lte Attributes.EndDate ; x = dateadd(d,1,x) ) { writeoutput(xbr); } /cfscript Craig. -Original Message- From: Aidan Whitehall [mailto:[EMAIL

RE: %$#@^%$ CFSETTING

2001-11-12 Thread Carlisle, Eric
I put a cfset directly after it. It still inserted the space. I'll play around with it with different amount of code on that line. Thanks :) EC -Original Message- From: BILLY CRAVENS [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 5:02 PM To: CF-Talk Subject:

RE: %$#@^%$ CFSETTING

2001-11-12 Thread Michiel Boland
[blank line in output even after cfsetting] You don't happen to have an Application.cfm that is included somewhere? That may also add to initial whitespace. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Multiple case statements in SCRIPT

2001-11-12 Thread Aidan Whitehall
ColdFusion throws a wobbly on this (and the other variations I've tried switch (Attributes.PeriodID) { case (1,2,3) { ... } case 4 { } } Is there any way to provide multiple values? Thanks. -- Aidan Whitehall [EMAIL PROTECTED] Macromedia ColdFusion Developer Fairbanks

Re: Database help needed please

2001-11-12 Thread Bud
On 11/11/01, Douglas L. Brown penned: I am kinda new to SQL and such and have the following question I have a table called (customer) which has a custNum column and is a PK it has a FK relationship to a table called cust_contacts and a column of custNum. when a user creates an account I generate

RE: %$#@^%$ CFSETTING

2001-11-12 Thread Carlisle, Eric
No, no application.cfm in use. Good idea, though. :) I'll try to mess around with it today and ask again if I'm certain I couldn't get it to work otherwise (saves time all around). Just wondered if that was a problem that sounded familiar. Thanks :) EC -Original

Re: Multiple case statements in SCRIPT

2001-11-12 Thread Clint Tredway
you can nest case statments inside each other. Clint -- Original Message -- from: Aidan Whitehall [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Mon, 12 Nov 2001 12:51:31 - ColdFusion throws a wobbly on this (and the other variations I've tried

RE: %$#@^%$ CFSETTING

2001-11-12 Thread Steve Martin
Do you have Suppress whitespace by default checked in the CF admin? If so then you'll always end up with a leading space as it would appear to compress runs of zero (yes, zero) or more whitespace characters to a space. Had me pulling my hair out for a while once. Steve -Original

Re: Multiple case statements in SCRIPT

2001-11-12 Thread Stephen Moretti
Aidan, ColdFusion throws a wobbly on this (and the other variations I've tried switch (Attributes.PeriodID) { case (1,2,3) { ... } You need a break; in the end of each case. That'll break out of the switch when one of the cases are met and carry on with the next lot of code.

RE: %$#@^%$ CFSETTING

2001-11-12 Thread Carlisle, Eric
cfprocessingdirective suppresswhitespace=Nocfsetting enablecfoutputonly=Yes cfscriptWriteOutPut(Hello);/cfscript /cfprocessingdirective HA! That did it! Many thanks! That was a great timesaver for me. :) EC -Original Message- From: Steve Martin [mailto:[EMAIL

RE: Multiple case statements in SCRIPT

2001-11-12 Thread Philip Arnold - ASP
ColdFusion throws a wobbly on this (and the other variations I've tried switch (Attributes.PeriodID) { case (1,2,3) { ... } case 4 { } } Is there any way to provide multiple values? Of course switch (Attributes.PeriodID) { case 1: case 2: case

i don't understand cflock? can you explain it?

2001-11-12 Thread Paul Ihrig
in the WACK 4.0 AID book's there is only a 1/2 page or so related to it. in mastering cf 4.0 there are a few pages about it, that i really don't understand. if i am not using application variables, just calling data sources for drop down list as well as calling data source for update pages,

RE: i don't understand cflock? can you explain it?

2001-11-12 Thread Beau Harbin
Paul, The simple rule of thumb is that if you are using application, session or server variables then you need to lock them on reads and writes. Meaning if you have a variable called Application.DSN, then you need to lock it when you write it and also lock it when you read it. If your

Re: i don't understand cflock? can you explain it?

2001-11-12 Thread gyrus
if i am not using application variables, just calling data sources for drop down list as well as calling data source for update pages, should i use cflock? Check the thread titled 'Request Scope Options', only a little way from the top of the http://www.houseoffusion.com CF-Talk archive

RE: Request Scope Questions

2001-11-12 Thread Christopher Olive
if i understand correctly, a week or so ago you (dave) mentioned that duplicate was only necessary for a session structure if it contained other complex variables. you said that StructCopy was sufficient if it was merely a structure with simple variables. is this correct? christopher olive,

RE: Request Scope Questions

2001-11-12 Thread Raymond Camden
I don't know if Dave said that or not, but the statement is correct. In general, I just always use Duplicate. Perhaps structcopy is 0.001% faster, but to be honest, I'd rather just use Duplicate() which I know will always work right. Bare in mind that CF 4.5 had a um, 'issue' with

FW: Request Scope Questions

2001-11-12 Thread Daniel Lancelot
If this is the case, is there any disadvantage of doing duplicate rather than structcopy? - It would seem that duplicate would always work... -Original Message- From: Christopher Olive [mailto:[EMAIL PROTECTED]] Sent: 12 November 2001 15:21 To: CF-Talk Subject: RE: Request Scope

Re: Request Scope Questions

2001-11-12 Thread gyrus
Bare in mind that CF 4.5 had a um, 'issue' with Duplicate. You can download a hotfix for it though. What was the issue?! I've got several sites live that are relying on Duplicate for passing session vars to request scope, and I'm not sure if the hosts have all the latest patches. - Gyrus

RE: Request Scope Questions

2001-11-12 Thread Christopher Olive
as ray points out, in principle, structcopy should be faster. by what margin, i don't know. but the principle remains. christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From: Daniel Lancelot [mailto:[EMAIL

RE: Request Scope Questions

2001-11-12 Thread Raymond Camden
I don't know if you mean me, but if so, I did not say structcopy is faster. I said it _may_ be faster, but if so, most likely not in any significant manner. (If I'm wrong, sorry. As always, listen to what I _meant_ to say, not what I said. ;)

RE: Request Scope Questions

2001-11-12 Thread Jeremy Allen
I have never been happy with the documentation nor the general handling of by reference/by value. I think it is honestly more confusing to have certain data structures behave one way, yet others behave another. It may hide the complexity short-term but in the long run it requires cruft like

Coldfusion and 4D

2001-11-12 Thread Stephen Adams
Hi, Has anyone used CF connecting to a 4D database, using the 4D ODBC driver. If so has anyone found any problems to be aware of ? Stephen ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

submitting a form with out a button? unload

2001-11-12 Thread Paul Ihrig
i am sure this has been done a lot but cant find it. how can i submit a form with out using a button. using an unload event? i was going to use cflocation on an action page, but cant pass my variable back to another page thanks -paul ~~

Re: submitting a form with out a button? unload

2001-11-12 Thread Critz
oi Paul!! a href=# onClick=document.forms[0].submit()Click Here to Submit./a -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Monday, November 12, 2001, 11:37:44 AM, you wrote: PI i am sure

RE: submitting a form with out a button? unload

2001-11-12 Thread Paul Ihrig
body onload=document.forms[0].submit(); found it -paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 11:38 AM To: CF-Talk Subject: submitting a form with out a button? unload i am sure this has been done a lot but cant find it. how

RE: Allaire Alliance Partner Program - Macromedia Alliance Progr am...

2001-11-12 Thread Dharmesh Goel
I think they offered a refund on the forums. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car Truck Rentals 416-744-0123 x290 -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] Sent: November 12, 2001 3:14 AM To: CF-Talk Subject:Re: Allaire

Re: Coldfusion Server hanging up...

2001-11-12 Thread Kinley Pon
Unfortunately, the entire the server... From: Jochem van Dieten [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Coldfusion Server hanging up... Date: Mon, 12 Nov 2001 10:52:04 +0100 Kinley Pon wrote: I am receiving this error message plus I am force

Re: i don't understand cflock? can you explain it?

2001-11-12 Thread David Green
Another question on understanding CFLOCK. when you say reading the variable what is considered a read. Any time you use the variable say in a cfoutput. Is this a read and should be locked? Thanks David - Original Message - From: Beau Harbin [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: i don't understand cflock? can you explain it?

2001-11-12 Thread tom muck
Yes, that is a read. If you even mention the variable name under your breath you should put a read only lock on it. If you are setting the variable put an exclusive lock on it. tom David Green [EMAIL PROTECTED] wrote in message

RE: i don't understand cflock? can you explain it?

2001-11-12 Thread Sandy Clark
Anytime you even look sideways at a shared scoped variable, that is considered a read. cfif isDefined('Application.variable') /cfif would be considered a read. -Original Message- From: David Green [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 9:22 AM To: CF-Talk Subject:

Re: i don't understand cflock? can you explain it?

2001-11-12 Thread Stephen Moretti
David, Another question on understanding CFLOCK. when you say reading the variable what is considered a read. Any time you use the variable say in a cfoutput. Is this a read and should be locked? You'd be correct in that assumption. Also in CFSETs and CFPARAMS, using the variable as

RE: submitting a form with out a button? unload

2001-11-12 Thread Bryan Love
Actually, it sounds like this would be better fixed by changing your architecture. If you need to retain form information then stack the action page on top of your form page. That way you can fall through and re-display the form if validation fails, or you can insert into the db and cflocate if

RE: Multiple case statements in SCRIPT

2001-11-12 Thread Bryan Love
Philip's got it. Remember when using switch statements in CFSCRIPT that once a condition is met CF will execute EVERYTHING until it encounters the end of the switch OR a break. Bryan Love Macromedia Certified Professional Internet Application Developer / Database Analyst Telecommunication

tickcount to actual time conversion

2001-11-12 Thread Justin Hansen
What formula would you use to convert tickcounts to actual time? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ:

Re: tickcount to actual time conversion

2001-11-12 Thread Howie Hamlin
You can't convert tickcount to actual time. Tickcount is the number of milliseconds since the sytem was rebooted (and resets after 43 days or so). HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS)

Re: Please Wait... ' or 'Loading...' message

2001-11-12 Thread Don Vawter
I create a div with position absolute and visibility visible and put a gif in the div Then I have the onload event change the visibility. By making the position absolute it doesnt affect placement of rest of the page. I also have the submit buttons show the div to indidicate to users the program

merant/foxpro

2001-11-12 Thread Colby Reese
Does anyone know of any special solaris environment variables or configurations that need to be present to achieve connectivity to foxpro databases? I am unable to verify connections with the canned foxpro dbf files included with cf5 like the snippets datasource. We typically only use the

RE: i don't understand cflock? can you explain it?

2001-11-12 Thread Dave Watts
I think the only time that it doesn't really do a read is when you do something like : IsDefined(session.myvariable), because this isn't reading the contents, only checking for the existance of the variable. Having said that though, there is still some debate about this. Comments anyone?

Re: ColdFusion extensions for Ultradev

2001-11-12 Thread Massimo Foti
Peter Tilbrook [EMAIL PROTECTED] wrote in message I must be missing something - the URL perhaps! It's in the signature, I will take note for next time to make it more visible :-))) Massimo Foti [EMAIL PROTECTED] http://www.massimocorner.com Dreamweaver, Ultradev

RE: Request Scope Questions

2001-11-12 Thread Dave Watts
if i understand correctly, a week or so ago you (dave) mentioned that duplicate was only necessary for a session structure if it contained other complex variables. you said that StructCopy was sufficient if it was merely a structure with simple variables. is this correct? Yes, that's

left outer join - and null results (Lazy but Stumped)

2001-11-12 Thread Eric Dawson
Here is the SQL. (I need for both access and MSDE datasources) select a.id, a.data, b.id, b.a_id, b.g, b.data from a left outer join b on a.id = b.a_id where b.g = #attributes.g# or b.id = null? That's basically what I want to do. a is a roster table b is a game data table where each

Using CFModule

2001-11-12 Thread Bosky, Dave
What are the standard locking procedures regarding CFMODULE and Custom Tags? Is it necessary to put a lock around a cfmodule call or only around a custom tag call? Thanks Dave ~~ Get the mailserver that powers this list at

RE: Using CFModule

2001-11-12 Thread Raymond Camden
You don't need a lock around either. If code in the inside of the CT does things that need locking, do it there. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM :

Grids

2001-11-12 Thread Janine Jakim
What are people using instead of the cfgrid? I can't use cfgrid anymore ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ:

Re: Grids Rarrararrr!!

2001-11-12 Thread Mookie Bear
well if u have a SQL server backend, use the SQL Enterprise Management Console :D From: Janine Jakim [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Grids Date: Mon, 12 Nov 2001 14:55:18 -0500 What are people using instead of the cfgrid? I can't use

RE: tickcount to actual time conversion

2001-11-12 Thread Bryan Love
if you want to measure processing time of a page you can get the tickcount with GetTickCount() at the beginning and at the end then subtract. Since it is in milliseconds you just need to multiply by 1000 to get seconds. Bryan Love Macromedia Certified Professional Internet Application

RE: left outer join - and null results (Lazy but Stumped)

2001-11-12 Thread Bryan Love
try this: select a.id, a.data, b.id, b.a_id, b.g, b.data from a left outer join b on a.id = b.a_id where b.g = #attributes.g# or b.id IS NULL Bryan Love Macromedia Certified Professional Internet Application Developer / Database Analyst Telecommunication Systems Inc. [EMAIL PROTECTED]

RE: Request Scope Questions

2001-11-12 Thread Bryan Love
Why not just copy the pointer from the session scope to the request scope? Wouldn't the single-threaded nature of the request scope protect the actual data from corruption? I suppose the question I have is HOW does the CF server force single threading in the request scope: 1. By forcing every

Allaire Alliance Partner Program - Macromedia Alliance Program.. .

2001-11-12 Thread Matthew Bertolami
Hi, Kevin: Your notes regarding the entitlements under the Allaire Alliance were forwarded to me today. Any partner with a current Allaire agreement is entitled to the benefits of the Allaire program until contract expiration. The CF Studio updates will be distributed soon. JRun 3.1 is a

CFCookie and the old switcharoo - help!

2001-11-12 Thread Langford, Bryan
Hey everyone, Anyone that read my recent posts CFCOOKIE and the old switcheroo. I am still looking for any other suggestion before I revert to using sessions instead of cookies. The basic problem is that I have a multiple user environment, a class room of students, each log in to take

Inserting single quotes into SQL Server...

2001-11-12 Thread Kevin Langevin
Hi all- I've beaten this problem before, but even looking at code that seems to work fine from previous projects, I can't see what I'm doing wrong. I want to insert a string into a record in a SQL Server 2000 DB. The string contains a customer's name. If the customer's name contains an

Re: CFCookie and the old switcharoo - help!

2001-11-12 Thread David Cummins
Sounds like there are old cookies on those machines from previous attempts. Maybe some machines now have cookie setting switched off, but of course the old cookies are still there. Try one of the machines with problems - turn cookie prompting on, etc. Maybe change the name of the cookie to rule

Re: Opening file

2001-11-12 Thread phumes1
Hi, I have a test page on the server (Intranet) with the following link. I've configured my file associations in UltraEdit (on the client) to open .dat files. When I click on the link the file gets opening in Ultraedit which is what I want. For some reason if the following tags are in the

RE: Am I a crackhead: CFContent Weirdness

2001-11-12 Thread Eric J Hoffman
CFHEADER NAME=Content-Disposition VALUE=inline; filename=#form.tempfilename# cfcontent type=application/unknown file=D:\blah\clientapps\marcon\archives\#form.tempfilename# It still comes up with the name of the calling template file instead of the file name! Am I still off? Eric J Hoffman Home

RE: Opening file

2001-11-12 Thread Joseph DeVore
You could use CFCONTENT to serve them up as .dat files. cfheader name=Content-Disposition value=inline; filename=yourfile.dat cfcontent file=d:\yourfile.dat type=text/plain deletefile=no Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Inserting single quotes into SQL Server... Rarrararrr!!!

2001-11-12 Thread Mookie Bear
For some reason this always works with me!! ok, i assume that customer's name is in form variable, so create a new variable and set it to that form variable, and use that new variable u created in the SQL code. this works, promise! if anyone knows why, i'd like to know! hehehe

Trying to access information I just inserted in Access

2001-11-12 Thread Steven Lancaster
I have a form which inserts data into an access database. Once that data is inserted I need to access the ID for that data so that I can send a URL in an email for them to click on so that the information can be updated by somebody else. I am running into the problem once I insert it tells me it

Re: Inserting single quotes into SQL Server...

2001-11-12 Thread Howie Hamlin
Use the PreserveSingleQuotes function. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Vote for iMS as the CFDJ Reader's Choice Awards Most Innovative Product

RE: Am I a crackhead: CFContent Weirdness

2001-11-12 Thread Duane Boudreau
what is your OS and SP level? Duane -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 4:49 PM To: CF-Talk Subject: RE: Am I a crackhead: CFContent Weirdness CFHEADER NAME=Content-Disposition VALUE=inline; filename=#form.tempfilename#

RE: Request Scope Questions

2001-11-12 Thread Christopher Olive
no, i said as you pointed out, it might be faster. in principle, this seems a logical statment. christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent:

RE: Am I a crackhead: CFContent Weirdness

2001-11-12 Thread Eric J Hoffman
The host is CF 5 on a Win2000 box if I recall correctly. Eric J Hoffman Home of Vikings fans Worldwide! http://www.purplepride.org -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 3:59 PM To: CF-Talk Subject: RE: Am I a crackhead:

RE: CFCookie and the old switcharoo - help!

2001-11-12 Thread Langford, Bryan
Hi david, Yeah actually I expired all the old cookies before beginning cfcookie name=repname expires=NOW cfcookie name=cfid expires=NOW cfcookie name=cftoken expires=NOW cfcookie name=repid expires=NOW Just to make sure that the old cookies no longer existed. On top of that I had

RE: Am I a crackhead: CFContent Weirdness

2001-11-12 Thread Duane Boudreau
Try this piece of code on your server to verify: cfoutput#Server.OS.Version# #Server.OS.BuildNumber# #Server.ColdFusion.ProductVersion#/cfoutput -Original Message- From: Eric J Hoffman [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 5:04 PM To: CF-Talk Subject: RE: Am I a

Frames , cookies and IE6... Hate 'em all

2001-11-12 Thread Matt Robertson
I have this 2-frame structure: FRAME.HTM: located at Site A top frame: secure .htm file shows logo from Site A bottom frame: secure .cfm file shows form from Site B IE6 is blocking the urltoken cookies since they are considered 3rd-party cookies. Bah. Has anyone else run into this?

RE[2]: Opening file

2001-11-12 Thread Joseph DeVore
FYI: I used the file type of text/plain for example. You will need to change this to whatever filetype you are trying to work with. In your case, maybe application/dat will be what you're looking for. Joseph DeVore VeloxWeb Technologies -Original Message- From: [EMAIL PROTECTED]

Re: Frames , cookies and IE6... Hate 'em all Rarrararrr!!

2001-11-12 Thread Mookie Bear
Pass em via javascript :) Rarrararrr From: Matt Robertson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Frames , cookies and IE6... Hate 'em all Date: Mon, 12 Nov 2001 14:12:27 -0800 I have this 2-frame structure: FRAME.HTM: located at Site A

Re: Trying to access information I just inserted in Access

2001-11-12 Thread Bruce Sorge
I usually do this (Presuming that you are using AutoNumbering). cfquery datasource=#Application.DSN# INSERT INTO. /cfquery cfquery datasource=#Application.DSN# Name=qSomeName Select MAX(Some_ID) AS LastID From Sometable /cfquery cfquery datasource=#Application.DSN# Name=qWhatever

Re: Frames , cookies and IE6... Hate 'em all

2001-11-12 Thread Kirk Boecker
Yup, we just ran into it on some applications we host- and it stinks - but after a few hours i figured out how to make it work - you have to jump through hoops and implement P3P on the server - which is actually easy - just the instructions kind of stink. here is where you can get started..

RE: cross datasource updates -- Access to Oracle

2001-11-12 Thread James Sleeman
If it's just this one time I'd just do it the easy way that takes a long time to execute. If it's gonna take a really long time (sounds like it might) you might be best to split the job into chunks. We had to do a similar job here, importing some large DB from paradox tables of all things

Re: CFCookie and the old switcharoo - help!

2001-11-12 Thread David Cummins
There are only three ways I can imagine it happening: 1. The wrong cookie values are being sent. I'm not sure how this would occur, but you should be able to see the entire cookie data in CGI.HTTP_COOKIE. 2. There is a caching problem - the cookies are set correct, but the page you see is

Help with regular expression

2001-11-12 Thread Seth Petry-Johnson
I am trying to build a regular expression to test for valid CFSET statements in a block of text. I have it working with one small issue: if a character appears on the right hand side of the equals sign, such as in CFSET test = This is a test with a sign then the regexp fails to match the

Re: Frames , cookies and IE6... Hate 'em all

2001-11-12 Thread Matt Robertson
Well, at least there's a (billable ;D) long-term solution. Right now I'm trying out the following band-aid: FRAME.HTM: located at Site B top frame: secure .htm file shows logo from Site A bottom frame: secure .cfm file shows form from Site B The only difference is the frame header

RE: CFCookie and the old switcharoo - help!

2001-11-12 Thread Langford, Bryan
Well thanks for looking David, I too was concerned that it might be a logic problem, The difficulty is that it never happened with sessions and I essentially did a site wide replace of session. for cookie. and I never had the problem before I used cookies. I have picked through the

(ot) Access, SQL Server and Replication

2001-11-12 Thread Owens, Howard
I have a client with an ecommerce site (not quite finished yet). One of the issues is keeping the online inventory in sync with the in-store inventory. He only has a dial up connection and one phone line, so he doesn't want to be online all of the time. He does have Access on his computer.

Re: Help with regular expression

2001-11-12 Thread David Cummins
Personally I don't think this is possible with regexs, but I'd love to be corrected. It would need to be able to look for an even number of quotes followed by a greater than sign. This would also allow the valid statement cfset test=part 2 part 1 to be distinguished from the invalid statement

CGGraph and Pinned CPU

2001-11-12 Thread Don Vawter
Has anybody else seen CFGraph pin the cpu and skyrocket memory usage(nt.javaconsole)? Win2k, CF 5 of course. It has happened twice today and the common factor seems to be that I was woking on a page with three calls to cfgraph. TIA Don ~~ Get

Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Tony Schreiber
I haven't had a chance to look at the documentation yet, but when using PayFlow Pro are you actually using a Cybercash integration? What's the best tag currently available for this gateway? Tony Schreiber, Senior Partner Man and Machine, Limited mailto:[EMAIL PROTECTED]

CFHTTP timeout in CF5

2001-11-12 Thread David Cummins
Hi all, Has anyone used the timeout attribute on CFHTTP? It doesn't seem to work for me. I've got a non-essential template to call via HTTP, and if it doesn't connect in 5 seconds I just want to give up - but CFHTTP doesn't actually stop executing within the timeout value. It keeps going until

Re: Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Matt Robertson
No, it has nothing to do with Cybercrash, and actually pre-dates Verisign's acquisition of them. Based on my older docs, it actually originated back when the service was Signio, before Verisign bought *them*. You're going to use a CFX that you get from Verisign once you either a) sign up for

RE: Inserting single quotes into SQL Server...

2001-11-12 Thread Bryan Love
That would fail. PreserveSingleQuotes would cause the single to NOT be escaped. It sounds like he wants it escaped (since it's part of the name). This may take a little examination on your part, Kevin. Single quotes should be escaped automatically. Chances are you have a

Re: Inserting single quotes into SQL Server...

2001-11-12 Thread Kym Kovan
Hi Kevin, Anyone have any standard ways of inserting strings into SQL which may or may not contain single quotes? CF will escape any single quotes only if the variable is a simple variable, ie a straight text string. If the code is more complex then you need to set it into a straight text var

RE: Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Michael Wilson
Tony, I believe the tag is called CFX_PAYMENTNET. It's available in the manager's area of your PFP account site. Mike -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 6:15 PM To: CF-Talk Subject: Quick PayFlow Pro / Cybercash

RE: Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Tony Schreiber
Yes. Thanks. I got it. Though the actual tag is PFPro_CF.dll or something... I believe the tag is called CFX_PAYMENTNET. It's available in the manager's area of your PFP account site. Mike -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Monday,

RE: Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Matt Robertson
No, we're talking about a bit of CF code to hook into the CFX; processing the responses and errmsgs. Not CFX_PaymentNet itself. The CF snippet is available at http://foohbar.org/verisign.txt It still works, but for an installation a little over a year old. CFX_PaymentNet may have been

RE: Quick PayFlow Pro / Cybercash Question

2001-11-12 Thread Matt Robertson
I checked and yes, the dll that I got over a year ago is named PFProCF.dll, but is called as CFX_PaymentNet, although maybe you can label it as whatever you want. I'm curious to know if they've updated the tag in the last 18 months. Does that code fit into what your docs tell you?

pass a structure to a stored proc ?

2001-11-12 Thread Rob Sherman
Is it possible to pass a simple name/value structure to a stored proc? (stored proc is on a SQL 7 server). Sincerely, Rob Sherman President Velocity Interactive, Inc. - Technology Solutions for Business http://www.velocityinteractive.com ~~

Passing large blocks of text to SQL 6.5 stored procedure

2001-11-12 Thread Jim McAtee
Is there any way to pass long text strings to a MS SQL 6.5 stored procedure from ColdFusion? Type varchar() is limited in SQL 6.5 to 255 characters. Can you declare and pass a variable of SQL type text to a stored procedure? If not, is there any sort of workaround? I'd like to be able to pass

What am I doing wrong here?

2001-11-12 Thread Douglas L. Brown
I am trying to populate the ID field of this table with the following. Please help CFQUERY DATASOURCE=#application.dsn# NAME=insert_cust_login INSERT INTO cust_contacts VALUES ( '#custNum#', '#f_name#', '#l_name#', '#email#', '#password#' ) DECLARE @maxid

Re: What am I doing wrong here?

2001-11-12 Thread Douglas L. Brown
Never mind, figured it out.. thanks DB - Original Message - From: Douglas L. Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 12, 2001 8:05 PM Subject: What am I doing wrong here? I am trying to populate the ID field of this table with the

update a user password on a LDAP server

2001-11-12 Thread Mak Wing Lok
hi CF ppl. anyone can help me on this? i need to update/change a user password thru CF application, how can i do that? any hints? i tried to use cfa_user to change it but the server keep track of two password, means that i be able to login with the old and new password. by the way, i'm using

Help with test

2001-11-12 Thread Douglas L. Brown
I want to test how many iterations I can put randRange(,) through before it comes up with a duplicate number, can someone help me with script to do so? CF_SIGNATURE NAME=Douglas L. Brown EMAIL=[EMAIL PROTECTED] PHONE=714.538.6611

Re: Help with test

2001-11-12 Thread Joseph Thompson
assuming you seed it, won't that number also be random? !---It never hurts to call the randomize function--- cfset GoodSeed = (Minute(now())Second(now())) cfset GoodSeed = Randomize(GoodSeed) cfset RandomID=randRange(,) I want to test how many iterations I can put

Re: Help with test

2001-11-12 Thread Douglas L. Brown
Well I guess what I am getting at is do I want to use it as a custID value...If I can get it through a million iterations then I probably can. Doug - Original Message - From: Joseph Thompson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 12, 2001 8:44 PM

Re: Help with test

2001-11-12 Thread Joseph Thompson
No, not as customer ID... I take it you don't like the CreateUUID() functions large strings? They are unique at least. Well I guess what I am getting at is do I want to use it as a custID value...If I can get it through a million iterations then I probably can. Doug - Original

  1   2   >