CFX CyberCash Question....

2001-01-05 Thread KJis18
Ok Basically I am trying to get this darn tag to work, yet I am using the "Test" modes that are supposed to be used with real testing data, yet I still get an error back "faliure-hard" is there anything that I am doing wrong thanks Kevin CFX_CYBERCASH     VERSION="3.2"     CCPS_HOST="A

RE: line breaks in cfmail

2001-01-05 Thread Edward Chanter
Yes it does return an error in 4.01, I have nightmares with it because we run both 4.01 and 4.5 I find the simplest way to do it either to remember to remove the cfprocessingdirective or use an if statement with the variable Server.ColdFusion.ProductVersion checking for 4, 5 and if it finds it

Slightly OT

2001-01-05 Thread Jason Lees (National Express)
Hi All, Can anyone suggest an ISP (Perferably in the UK) that can host Cold fusion sites. TIA Jason Lees National Express Email : [EMAIL PROTECTED] ### This document is intended for, and should only be read by, those persons to whom it is

RE: Slightly OT

2001-01-05 Thread DeVoil, Nick
Can anyone suggest an ISP (Perferably in the UK) that can host Cold fusion How about www.londonweb.net ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you have

RE: One Crystal report with variable name of the table

2001-01-05 Thread Lena Trajkovska
Hi! Thank you both for the reply. I would gladly go to the conference but I'm over the 'big water' - Europe, so I will just keep reading from the URL you mentioned, and maybe after your analysis you would like to share the results with the rest of us. I would gladly get rid of the Crystal, but

RE: Slightly OT

2001-01-05 Thread Allan Pichler
That's actually a very interesting point to bring up It seems that almost all european countries uses php/asp whereas over here the market has room for all of the scripting languages is it the price for a license that scares companies in europe ?? Allan Pichler Machine Dreams Inc.

RE: Slightly OT

2001-01-05 Thread Martin Sutton
I think that possibly Microsoft (therefore ASP) has a stronger marketing machine here because our technology centres are not as guided. European countries are behind the US in software development and also in pricing. As an indication, CF Server Pro costs £1300 ish over here. It is $1200(?) in

RE: Slightly OT

2001-01-05 Thread Allan Pichler
But ... in my humble opinion you can easily justify the purchase of a CF server license when your development time is reduced AND THAT IS A FACT! Most evaluations of the scripting languages put cf on top regardless of the fact that it's not free ... who would want to use ASS-P anyway! My 5

RE: Slightly OT

2001-01-05 Thread Martin Sutton
The problem with this is that often, the people controlling the purse strings are not developers, they are BIS managers brought in to control budgets and strategy. I am pretty sure that this is why. They don't see a difference as long as the functionality is the same. Try asking a senior

RE: How to force CFOUTPUT to display results horizontally

2001-01-05 Thread Bud
On 1/5/01, BORKMAN Lee penned: Hi Britta, Just remember that EVERYTHING between the CFOUTPUT tags gets repeated for every row in the query. This includes any whitespace, eg new lines. So to get the output on a single line, don't put any new lines between your tags: CFOUTPUT#img#/CFOUTPUT As

OT: Regular Expression Gurus Please Help!

2001-01-05 Thread Edward Chanter
I'm really bad at these so maybe one of you has some ideas, basically I'm trying to create a reg ex to run against a list of cell phone numbers. I need to strip out + signs as well as brackets () and spaces " " the expression I'm using is: cfoutput #REReplace("+44 (0) 7799 657093","+|

Re: Acess DB Locking

2001-01-05 Thread Bud
On 1/4/01, Jon Hall penned: In 4.0 and previous versions of CF I was able to perform the a bad query on an Access datasource and break the database lock. Well now that does not work in 4.5, and sometimes going into the administrator and telling the server to unlock all the datasources does not

RE: Cold Fusion controlled CD-RW

2001-01-05 Thread JustinMacCarthy
If I were you I'd look for some Open Source CD-RW software , that has been ported to Windows. That will give you the most options.. Try , freshmeat.org and gnu.org etc.. Justin -Original Message- From: Bernd VanSkiver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 12:53 AM

RE: Slightly OT

2001-01-05 Thread Philip Arnold - ASP
Can anyone suggest an ISP (Perferably in the UK) that can host Cold fusion sites. I'll second the mention of LondonWeb - they're good guys and know their stuff... as well as doing talks at the CFUG... Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20

RE: Calendar Question

2001-01-05 Thread JustinMacCarthy
Here you are. cfscript // replace now() with whatever date you are using. year = year(now()); month = month(now()); FirstDateOfMonth = CreateDate(year,month,1); LastDateOfMonth = CreateDate(year,month,DaysInMonth(FirstDateOfMonth)); FirstDayOfMonth = DayOfWeek(FirstDateOfMonth);

Re: Any good Authorizenet solutions?

2001-01-05 Thread Pardeep Singh
Does anyone know of any good Authorizenet processing solutions. i.e. a form is filled out, posting info into the database and at the same time going to Authorizenet to process a credit card, bringing back the result and posting also in the database?

RE: Cold Fusion controlled CD-RW

2001-01-05 Thread JustinMacCarthy
Check out http://www.cfcomet.com/ for lots of CF - COM examples Justin -Original Message- From: Bernd VanSkiver [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 1:25 AM To: CF-Talk Subject: RE: Cold Fusion controlled CD-RW I haven't dealt with COM objects before. Will have

RE: Regular Expression Gurus Please Help!

2001-01-05 Thread JustinMacCarthy
Try this instead of a re #Replacelist("+44 (0) 7799 657093","+, ,(,)","")# Justin -Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 10:47 AM To: CF-Talk Subject: OT: Regular Expression Gurus Please Help! I'm really bad at these so

RE: Calendar Question

2001-01-05 Thread Jason Lees (National Express)
Heres some psuedo code, I'm not sure how to do the actual CF but hope this helps CalRows=4 if (daysInMonth=28 and firstdayinmonthSunday) or daysinmonth28 then calrows=5 if (daysinmonth=30 and firstdayinmonth=Saturday) or (daysinmonth and firstdayinmonththursday) then calrows=6

RE: Regular Expression Gurus Please Help!

2001-01-05 Thread Edward Chanter
Thanks Justin, that's great! I actually managed to do it using a different method... ?The script is now pretty cool because it'll check for instances where the user only enters their cell phone number without the country code. Why BT have to put a 0 in front of all their numbers I don't know!

Re: OT: Regular Expression Gurus Please Help!

2001-01-05 Thread Dick Applebaum
Ed By changing the problem specification, slightly, to: "Remove all all non (numeric or space) characters" you get the simplified (faster and easier to understand) regexp: cfoutput #REReplace("+44 (0) 7799 657093", "[^0-9 ]", "", "ALL")# /cfoutput The "[^0-9 ]"

Re: CFX CyberCash Question....

2001-01-05 Thread Vance_Duke
If this is the same tag that I am using from Allaire, the CCPS_Host should not have all the HTML Code in it. Ours looks like this CCPS_HOST ="http://cr.cybercash.com/cgi-bin/" Hope that helps. Vance Duke Cold Fusion Application Developer i2 Technologies (469) 357-4729

RE: OT: Regular Expression Gurus Please Help!

2001-01-05 Thread Edward Chanter
cf_bighappysmile Thanks for the tip, you've just helped me speed the processing time of the query up by about 40% /cf_bighappysmile ;o) -= Ed -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: 5 January 2001 12:48 PM To: CF-Talk Subject: Re: OT:

RE: Slightly OT

2001-01-05 Thread bflynn
Sorry, but I have to comment - (engage soapbox mode) Managers that choose ASP over CF are showing that they have no business being a manager. I've done both. My first reaction to ASP was "Why is this so difficult?" My first reaction to CF was "Wow, someone finally made it simple." Anyone

Re: Any CFMAIL bug in 4.5 solutions?

2001-01-05 Thread Pardeep Singh
Does anyone know of any good CFMAIL bug solutions for CF version 4.5? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: Slightly OT

2001-01-05 Thread net_man
Not in the UK but we host CF 4.5, www.atswebnet.com Robert - Original Message - From: "DeVoil, Nick" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, January 05, 2001 5:09 AM Subject: RE: Slightly OT Can anyone suggest an ISP (Perferably in the UK) that can host Cold

RE: CD from Developer Conference

2001-01-05 Thread Neil Giarratana
None of our group that went has received it. Regards, Neil ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: Xml and SQL?

2001-01-05 Thread Neil Giarratana
Not sure where (if anywhere) you are with the process. My first suggestion would be to take a look at the xmldom COM object from Microsoft. It will allow you to walk the XML document and/or search out and loop through desired nodes. The good news is that any machine installed with IE5 already

Re: Searching Help files in Studio

2001-01-05 Thread Chris Norloff
-- Original Message -- From: "Gene Kraybill" [EMAIL PROTECTED] In Studio, I can browse the Help reference tree, finding topics by drilling down, but when I use the Search facility, I always get "No matches found", even when searching all references for

RE: CFX CyberCash Question....

2001-01-05 Thread Kurt Ward
Kevin, I use the CF_ CyberCash tag with no problems as follows: CFX_CYBERCASH VERSION="3.2" CCPS_SSL_HOST = "https://cr.cybercash.com/cgi-bin/" CCPS_HOST = "http://cr.cybercash.com/cgi-bin/" CYBERCASH_ID = "#CybercashID#" HASH_SECRET = "#Cybercash_Hash#" MERCHANT_KEY="#Merchant_Key#"

RE: Slightly OT

2001-01-05 Thread JustinMacCarthy
A couple of comments on this: I used to work for one of the first ISP on Europe, we used mostly Linux + Gnu etc. We supplied Mosaic and then Netscape 1.2 , Netscape 3 etc . Then of course Microsoft looked at the WEB. They gave us IDC (awful) and huge amounts of money / support etc... They gave

Re: Any CFMAIL bug in 4.5 solutions?

2001-01-05 Thread Gordon Burns
At 05:05 05/01/01 -0800 Pardeep Singh said Does anyone know of any good CFMAIL bug solutions for CF version 4.5? If you mean as a replacement I recommend Howies CFX tag with the SE Post server. I think he has it on Special at the moment. (Free for a limited period)

RE: CFX CyberCash Question....

2001-01-05 Thread Lord, Heath
Kurt, you are using the CFX if the code sample you sent was your working version. Is this the case? Heath -Original Message- From: Kurt Ward [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 8:44 AM To: CF-Talk Subject: RE: CFX CyberCash Question Kevin, I use the CF_

OT: New CFUG in Michigan

2001-01-05 Thread Kevin Schmidt
I am starting the Mid-Michigan (MMCFUG). The first meeting is January 31,2001 at Baker College in Jackson. If anyone is interested in helping or needs more info email or visit: http://www.fusemonkey.com/cfug Thanks, Kevin Schmidt, Web Technology Manager Allaire Certified Cold Fusion

RE: Slightly OT: Allaire Developer Certification

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Misty, I took my test on Dec 14, I got my package on Dec 27... you'd better get in touch with Allaire. Aaron Johnson, MCSE, MCP+I Allaire Certified ColdFusion Developer MINDSEYE, Inc. phn617.350.0339 fax617.350.8884 icq66172567 [EMAIL PROTECTED]

RE: CFX CyberCash Question....

2001-01-05 Thread Kurt Ward
Yes. Slip of the tongue (keyboard) ;-) CFX_Cybercash Kurt -Original Message- From: Lord, Heath [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 9:08 AM To: CF-Talk Subject: RE: CFX CyberCash Question Kurt, you are using the CFX if the code sample you sent was your

RE: Slightly OT

2001-01-05 Thread Adam Reynolds
Back to the original question... It depends how dirty you want to get your hands. An ISP that provides hosting services WILL in most cases load as many CF sites onto a server as possible. If you have a low bandwidth site then this may be acceptable. What I have done (for my consulting

Re: Any good Authorizenet solutions?

2001-01-05 Thread Tobe Goldfinger
We coded the connection to authorizenet ourselves using CFHTTP it works just fine. We've done projects using both styles of A/Net processing the kind where the secure form is theirs but after processing they send you back the results (for clients too cheap to spring for a digital

RE: Those Pesky Pound Signs

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Howard, Don't know if you've solved your or issue or not... here's my try... cfset calendar = "tabletrtdAaron/td/tr/table" cfset bgcolor="FFCCFF" cfset calendar= Replace(calendar, "tr", "tr bgcolor=###bgcolor# align=center", "ALL")

RE: CF vs. Lotus Domino App Server

2001-01-05 Thread Russel Madere
I had the opertunity to investigate using Domino for an Intranet project. All I found going for Domino was IBM and Lotus. I was thoroughly unimpressed with the product. Where they promised speed and security, I found gaping security holes. In a very short order, a knowledgable user was able

RE: cfcookie acting wierd???

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joe, I don't think this is a bug. I think you'll find that all cookie names are sent as uppercase, not just your "MyHotCookie". Maybe you could try setting a cookie called "cookiename" that contains the case sensitive cookie name you are trying to

RE: cfcookie acting wierd???

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 And to follow up that... Section 4.1 of HTTP State Management Mechanism (http://portal.research.bell-labs.com/~dmk/cookie-2.36.txt) states that: Attributes (names) (attr) are case-insensitive. Thus, it's spec that names are sent as ALL lowercase

RE: Troubles with Tables

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, Could you abstract your logic a bit and create another table called "Groups"... and then assign each client to a specific group. Assign the group specific rights. Then, when your customer gets a new client, you simply assign the client to a

RE: CF-Studio 4.52

2001-01-05 Thread Sean Daniels
OK, so I really want to update to 4.5.2, particularly for the "remembering that your in an RDS session". However, I have customized the crap out 4.5.1 and I am scared off by these mails that say the 4.5.2 installer kills your snippet and hotkey settings. Is there any way to back these up? Or

Re: !-#include file=cfFile.cfm -

2001-01-05 Thread Fred T. Sanders
True at least with the cfinclude tag. However (yes I know it has some overhead attached, you can cfhttp the other pages in. - Original Message - From: "Norman Elton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, January 04, 2001 6:46 PM Subject: RE: !-#include

RE: CFHTTP

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Fernando, Your code works fine on my machine. I'd check a couple machine specific things: a) Is your server behind some sort of firewall or proxy? b) If you have physical access to the CF server in question, can you open up a browser and open that

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dian, There won't be a patch for that any time soon. "Client" is a reserved word in ColdFusion, meaning ColdFusion doesn't allow you to use that word as a variable. Check here for more info: Reserved words in ColdFusion

RE: line breaks in cfmail

2001-01-05 Thread Benjamin S. Rogers
Correct. I ran into a problem with a mail server being maintained by a system admin at a sister company. Under certain conditions, his qmail server would strip CR/LFs into bare LFs. At which point, qmail would then reject the mail because it contained bare LFs, when in fact, bare LFs are legal in

RE: line breaks in cfmail

2001-01-05 Thread Edward Chanter
I wouldn't call it a bug. I believe that the reason it happens is because as of CF 4.5 Allaire included a "white-space stripper" in the CF App Server. Basically it removes all the extraneous space generated when the CF server takes out the cold fusion. Because email get's sent as plain text

RE: Slightly OT

2001-01-05 Thread Benjamin S. Rogers
Allaire is US centric, from their technical support offerings to their lack of Unicode support. Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Allan Pichler [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 5:16 AM To:

RE: Any good Authorizenet solutions?

2001-01-05 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pardeep, There are 2 custom tags in the tag gallery for doing exactly this: CF_AuthNet http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34743C-2830-1 1D4-AA9700508B94F380method=Full CF_Authorize

NNTP

2001-01-05 Thread W Luke
Hi all, I bought Fuseware's cfx_nntp tag a while back, and have been fiddling around with it in between work. I have the use of a classy NNTP server that my friend hosts, and I have a couple of private groups on there which friends use. My plan, although I don't know how!, is to mirror these

Re: Slightly OT

2001-01-05 Thread Paul Hastings
Allaire is US centric, from their technical support offerings to their lack of Unicode support. they are moving to unicode (i will be the 1st to admit slowly) team allaire members are (were) strewn across all kinds of timezones to provide some support around the clock.

CFMAIL question

2001-01-05 Thread Dave Hannum
Hello, I have an application where the client wants to be able to have customers submit information and a document using CFMAIL via a web form. Does someone have an example they can share where they do this. User fills out a form and then attaches a file from their local hard drive and it is

RE: CF-Studio 4.52

2001-01-05 Thread Sean Daniels
Actually I was think of writing a little VB app that would allow you to save all studios settings as wddx ,would many people be interested in this? Ooh. That would be a beautiful thing. Having to recustomize every time I reinstall the OS or switch machines is tedious. I would love to be able

RE: Those Pesky Pound Signs

2001-01-05 Thread Benjamin S. Rogers
You have to double them up or use the Chr() function. The pound sign always has to be escaped in a CFML page. The only times you don't have to worry about it is when your reading it from a file or a field in a database (i.e. some external source that is not evaluated as CFML). Anyway, to answer

RE: Slightly OT

2001-01-05 Thread paul smith
Isn't this changing with CFAS 6? best, paul At 10:09 AM 1/5/01 -0500, you wrote: their lack of Unicode support. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: CF-Studio 4.52

2001-01-05 Thread Mary_Baotic
I didn't lose my snippets or hotkeys when I upgraded. I did copy the UserData directory to a safe place before upgrading just in case. Mary "Sean Daniels"

RE: Slightly OT

2001-01-05 Thread Benjamin S. Rogers
ColdFusion 6 will by virtue of it's complete rewrite in Java which supports Unicode. Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 10:23 AM To: CF-Talk

RE: Any good Authorizenet solutions?

2001-01-05 Thread Gary McNeel, Jr.
There is also one on the net for ASP (a COM or DCOM object) that sounds very nice. Been awhile since I saw it. I think it was AuthorizeX or something like that. Sorry, I just can't remember the name. Was nice though. You pass the object the info, it initiates a secure connection to AuthorizeNet,

Re: CF-Studio 4.52

2001-01-05 Thread Greg Wolfinger
Justin: That would be a really cool vb app that every cf developer would want to have. --Greg - Original Message - From: "JustinMacCarthy" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, January 05, 2001 10:09 AM Subject: RE: CF-Studio 4.52 Actually I was think of

Re: Slightly OT

2001-01-05 Thread W Luke
I can highly recommend www.loud-n-clear.net Will. - Original Message - From: ""Jason Lees (National Express)"" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent: Friday, January 05, 2001 10:01 AM Subject: Slightly OT Hi All, Can anyone suggest an ISP (Perferably in the UK)

LARGE QUERY RETURNS

2001-01-05 Thread William J Wheatley
Ok I have found that when i return alot of returns to a page, 5000+ it adds quite a bit of time to the processing on the CF side with displaying the information as opposed to it being database bottleneck. In Fact the database is Hustling returning the 70,000 records in about 4 seconds but it

Access DB Locking - Flushing

2001-01-05 Thread Richard Kern
This may have been answered by now but here my 2c worth. The bad query route has never worked for me. Comments last year on this board lead to recognition that the .ldb file is the culprit and the only way to get rid of that is to flush the DB connection. This works both locally and remotely,

Re: Xml and SQL?

2001-01-05 Thread Gilles Ratté
I would be very interested the see some cold fusion code samples. Thanks - Original Message - From: "Neil Giarratana" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, January 05, 2001 8:10 AM Subject: RE: Xml and SQL? Not sure where (if anywhere) you are with the

Re: CFMAIL question

2001-01-05 Thread James Taavon
Dave, I have an app that does something similar, but the file is uploaded to the server ina specifoed directory where it can be retrieved. Is that good enough? Dave Hannum wrote: Hello, I have an application where the client wants to be able to have customers submit information and a

Re: LARGE QUERY RETURNS

2001-01-05 Thread Greg Wolfinger
Now is there anything i can do to cut down on the time it takes to show those, other then doing a Next Previous system?? Beef up your server with some more RAM and a second processor. --Greg - Original Message - From: "William J Wheatley" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL

RE: Xml and SQL?

2001-01-05 Thread Paul Johnston
It has to be said, that if you want to get into XML, go and have a look at the Siteobjects tags http://www.siteobjects.com It's an excellent starting point. Paul -Original Message- From: Gilles Ratté [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 3:54 PM To: CF-Talk

RE: LARGE QUERY RETURNS

2001-01-05 Thread Sean Daniels
Ok I have found that when i return alot of returns to a page, 5000+ it adds quite a bit of time to the processing on the CF side with displaying the information as opposed to it being database bottleneck. My guess is that it's less of a CF issue and more of a bandwidth issue. Like, how large

Re: CFMAIL question

2001-01-05 Thread Dave Hannum
How do you handle the possibility of duplicate file names? If you have a handler, that would be good enough (or I can write a handler to uniquely rename each file) Thanks, Dave = "What we need is a list of specific unknown problems we will encounter" David

RE: LARGE QUERY RETURNS

2001-01-05 Thread William J Wheatley
well the 3 Clustered CF servesr are all Dual PIII 800 with 1gig of ECC ram, Dual SCSI cards with 4 10X RPM Cheetahs and the DB servers are DUAL PIII800 with 1.5 GIG of ECC ram dual DPT scsi cards with 4 10X RPM Cheetahs so i dont think horsepower is the issue lol Bill Wheatley Director of

RE: CFX CyberCash Question....

2001-01-05 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 As someone else mentioned, you need to take the a href=" stuff out of the CCPS_HOST line. Tho I suspect that might have been your mail software doing you a favor by turning that into a link as opposed to you actually doing that yourself... The

Re: Access DB Locking - Flushing

2001-01-05 Thread Bud
On 1/5/01, Richard Kern penned: The bad query route has never worked for me. That's strange. I've built applications on about 10 different servers and it's worked every time on every server. I sometimes have to hit the bad query twice. -- Bud Schneehagen - Tropical Web Creations

RE: LARGE QUERY RETURNS

2001-01-05 Thread William J Wheatley
thats what i figured =) so i guess i'l just have to do that, Does anyone have a query way that they keep all the results stored. Heres the scenario each row has 1 check box to send an email to so what i'm going to have to do is set it so wahtever you have checked when you hit next it remembers

RE: Xml and SQL?

2001-01-05 Thread Hal Helms
Brett Suwyn from SiteObjects did a writeup in my Occasional Newsletter with instructions on how to implement XML with SiteObjects. There's a copy online at www.halhelms.com. Hal Helms == See www.ColdFusionTraining.com for info on "Best Practices with ColdFusion Fusebox" training, Jan 22-25 ==

RE: Any good Authorizenet solutions?

2001-01-05 Thread Chris Montgomery
-Original Message- From: Pardeep Singh [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 5:18 AM Does anyone know of any good Authorizenet processing solutions. i.e. a form is filled out, posting info into the database and at the same time going to Authorizenet to process

Re: CFMAIL question

2001-01-05 Thread James Taavon
CFFILE can handle that issue. Dave Hannum wrote: How do you handle the possibility of duplicate file names? If you have a handler, that would be good enough (or I can write a handler to uniquely rename each file) Thanks, Dave = "What we need is a

[Re:] RE: CF vs. Lotus Domino App Server

2001-01-05 Thread FARRAH NG
hi all, lotus notes and domino is a pure IBM in house product which is out of sync with today's web technology. I even don't understand why they use flat file system in notes in the very beginning. The way it works is totally like old IBM technology, wrapped within a so called 'web sever'.

Re: LARGE QUERY RETURNS

2001-01-05 Thread C Frederic Valone
We are running a solaris quad 450 with a gig of ram and still get slow page display on large pages. So I do not know that more ram and another proccessor will help that much. Thanks, Frederic. Greg Wolfinger wrote: Now is there anything i can do to cut down on the time it takes to show

RE: LARGE QUERY RETURNS

2001-01-05 Thread Conrad, Christopher
Can you show us some code ? Chris Christopher Conrad Victoria's Secret Catalogue Limited Technology Services - New Media Senior.Programmer.Analyst http://www.VictoriasSecret.com 614.337.5653 [EMAIL PROTECTED] -Original Message- From: C Frederic Valone [mailto:[EMAIL PROTECTED]] Sent:

RE: LARGE QUERY RETURNS

2001-01-05 Thread Eric Barr
William, The bottleneck you are experiencing can be caused by four things: DB Processing Time, CF Processing Time, bandwidth bottleneck, Browser Rendering time. I'm not sure which you are experiencing, but its most likely a combination of all three. But there are probably ways to address each

RE: LARGE QUERY RETURNS

2001-01-05 Thread WebSite CFTalk
What about the cf_gzippage tag? Compress the pages going out to the client before leaving the www server and let the client handle decompressing. You can get a 10:1 compression ratio easily. (cf_gzippage uses cfz_gzip to compress html output.) page.cfm: cf_gzippage !DOCTYPE HTML PUBLIC

Re: LARGE QUERY RETURNS

2001-01-05 Thread Dick Applebaum
Bill If you absolutely must return that many rows to the browser at one time (you can't page it)... Then one way to limit both the CF processing and bandwidth is to offload the formatting of the data to the browser as follows, (kind of a pseudo WDDX): 1) in CF loop through the query and

Re: LARGE QUERY RETURNS

2001-01-05 Thread Greg Wolfinger
well the 3 Clustered CF servesr are all Dual PIII 800 with 1gig of ECC ram, Dual SCSI cards with 4 10X RPM Cheetahs and the DB servers are DUAL PIII800 with 1.5 GIG of ECC ram dual DPT scsi cards with 4 10X RPM Cheetahs so i dont think horsepower is the issue lol Yeh, I think then you best

Where's the output?

2001-01-05 Thread Todd Ashworth
OK .. this one has me completely baffled. I was working on a custom tag. I had been loading it up in a browser every so often to take a look at it. A few minutes ago, I added a cfparam tag and a bunch of !--- --- for some new comments. Now, the page won't load. Well, it loads, but there is

RE: LARGE QUERY RETURNS

2001-01-05 Thread paul smith
Other strategies to pursue are to use query caching if you go the next 500 record route and helping the user focus on/drill down to the records they are interested in of the 5000. best, paul At 11:46 AM 1/5/01 -0500, you wrote: William, The bottleneck you are experiencing can be caused by

RE: LARGE QUERY RETURNS

2001-01-05 Thread Eric Barr
You are not going to incur too much overhead from using WDDX and pushing it down to the browser using ACTION="CFML2JS" because in this case the packet is not pushed down as XML it is pushed down as a JS array with all possible white space removed. All in all its pretty compact. -eric

RE: LARGE QUERY RETURNS

2001-01-05 Thread William J Wheatley
=) I appreciate all the help i am goign to try to endeavor down the road and see how good i do Since i am not particularly fond of JavaScript =), lol java yes, js no =) but i appreciate your help and everyone elses Bill Wheatley Director of Development AEPS INC Allaire ColdFusion Consulting

RE: Where's the output?

2001-01-05 Thread Richard Kern
A couple of ideas a. Browser choice, use IE over NN during the testing process. NN is less forgiving of html structure errors for output. The blank screen is the clue for me here. b. use the validation tool in studio to check for any gross error c. drop back to a

RE: Where's the output?

2001-01-05 Thread Stephen Moretti
Sounds like a potential candidate for the classic typo... ;o) Check and make sure all your comments have 3 "-"'s in the start and end markers. If you get a mismatch, eg. !--- comment --, then you sometime see this kind of thing happening. Regards Stephen -Original Message- From:

Re: Where's the output?

2001-01-05 Thread Todd Ashworth
Geeez .. that was it. Thanks. It's funny how you can look at something for 20 minutes and not see it. Todd Ashworth - Original Message - From: "Stephen Moretti" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, January 05, 2001 12:21 PM Subject: RE: Where's the

RE: Where's the output?

2001-01-05 Thread bflynn
Well, it would be funny if... Something I've found is that CF Studio won't catch this. I spent over an hour looking for this same typo a few weeks ago. While looking, I set comments to highlight yellow...when I found it, I noticed that although I only had -- to close it, CFS stopped tracking

Application Start up?

2001-01-05 Thread SMITH,RANDY (HP-USA,ex1)
Hello! This is my first posting, although I have been lurking and answering offline for awhile now. I hate to be heathenous and use the letters ASP, but ASP has a feature that detects when the the application is being shutdown (Application_OnEnd in the global.asa) and you can take some

RE: CFMAIL question

2001-01-05 Thread Gary McNeel, Jr.
Read-up more on CFFILE. It can handle that for you. First it checks for a file with the same name in the appropriate directory. If it finds one it automagically renames the uploaded file to something like AC109.exe (whatever). It returns the new file name to you in a variable that you can

RE: CPU 100% when one CFM file is accessed

2001-01-05 Thread Chad Gray
The code doesn't matter. I forgot to mention that if i access this template from one page it works. If i access the page from another page it does not work. I am passing URL variables but they are the same. I gave up trying to trouble shoot it. I upgrade to service pack 2 and have not

RE: Application Start up?

2001-01-05 Thread Nathan Nelson
-onrequestend.cfm- -Original Message- From: SMITH,RANDY (HP-USA,ex1) [mailto:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 10:51 AM To: CF-Talk Subject: Application Start up? Hello! This is my first posting, although I have been lurking and answering offline for awhile now. I

RE: Where's the output?

2001-01-05 Thread Stephen Moretti
I would be a liar if I said I haven't been caught out by that one a few times... ;o) Glad that sorted the problem out. Regards Stephen Geeez .. that was it. Thanks. It's funny how you can look at something for 20 minutes and not see it. Todd Ashworth | Sounds like a potential

CFMAIL time issue

2001-01-05 Thread Jeff Britts
We have an issue with the sent time of mail going out through CFMAIL. A check of the CF servers and the mail servers reveal those times correct. However, this is what the header looks like. Received: from fusion-prod1.blah.com ([10.200.5.95]) by corp-exc1.blak.com with SMTP (Microsoft

RE: Query with nested hierarchy

2001-01-05 Thread bflynn
A suggestion to get running quickly. I've done this before by writing a stored procedure that acted in the WHERE clause. Inside the stored procedure, I'd loop over a select statement until I ran out of data or found what I was looking for...NOT EFFICIENT at all, but it will get you going if

RE: Those Pesky Pound Signs

2001-01-05 Thread Owens, Howard
Thanks. This was the correct answer (adding more pound signs). I figured it out shortly after sending my message to the list. H. -Original Message- From: Benjamin S. Rogers [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 05, 2001 7:26 AM To: CF-Talk Subject: RE: Those

  1   2   >