RE: CFMX Taking all CPU Resources?

2002-07-29 Thread Chris Kief
Joe, After reading your recent slew of posts, I feel compelled to speak up (as others already have) for the majority of CFMX users on this list that are doing just fine with the product. Sure, some things are running slower (COM for sure) and waiting for page compilations on _development_ boxes

Re: Japanese plain text email

2002-07-29 Thread Jochem van Dieten
Matthew Walker wrote: I'm coping with creating Japanese language pages using META http-equiv=Content-Type content=text/html; charset=SHIFT_JIS But now I need to send plain text Japanese emails. Anybody know how to do this? Check your mailbox for Korean spam. Replace the Korean charset

RE: CFMX Taking all CPU Resources?

2002-07-29 Thread Stacy Young
Joe. Please track down the portion of your app that causes the CPU spike and post the code. Then I'm sure plenty of folks will have ideas on how to optimize. Stace -Original Message- From: Joe Eugene [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 28, 2002 11:25 PM To: CF-Talk Subject:

RE: CFMX + Linux + Apache Segmentation Fault

2002-07-29 Thread Jesse Noller
Number 1: Slackware is not supported (nessecary caveat) Number 2: I suggest that if you have not, upgrade to the latest version of Apache for security fixes. Number 3: You have to be running a forced EAPI Apache server, correct? Number 4: I have noticed that this segfault happens one in maybe

RE: CFMX Taking all CPU Resources?

2002-07-29 Thread todd
Stace, I think we've been trying to tell him that since the beginning and he's yet to do such. He's one of those guys that would rather sit and complain than actually tracking down the problem. I think everyone on the list that has confronted Joe has been more than helpful (except Joe, of

RE: quotation marks and their rules...

2002-07-29 Thread Tony Weeg
yes, status_code was set to 0 prior to the beginning of the loop ;) ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Sunday, July

RE: quotation marks and their rules...

2002-07-29 Thread Philip Arnold - ASP
cfloop condition=isDefined(status_code) and Len(#status_code#) why doesnt this make sense? it keeps buggin on me ARGHHH! yes, status_code was set to 0 prior to the beginning of the loop ;) If status_code is being set to 0 before the loop, then the isDefined() isn't needed Also,

Re: quotation marks and their rules...

2002-07-29 Thread Patti G. L. Hall
In that case len(status_code) will always return 1, cause status_code=0 has a length of 1. The condition I you may be trying for is: Isdefined(status_code) and status_code This will trigger the false you were looking for since when status_code evaluates to 0, coldfusion will recognize that as

Issue: Update a tracker database with an index.html file.

2002-07-29 Thread James Blaha
Issue: Update a tracker database with an index.html file. I have a user that needs to track hits for there site and he has to use an index.html file. Normally I use basic CF code that get the users information like below and that would insert into my DB. I need to figure out a way to get this

GEOFENCING

2002-07-29 Thread John McCosker
Greetings, not a CF question but the place to ask, I want to set up a GEO-Fence for Northern Ireland, I want the geofence to be comprised of four areas, the North West, the South West, the North East and the South East I have got the four corresponding Lat and Lons for each area, the only

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread S . Isaac Dealey
If they're installed, you could use a server side include (SSI) tag to include the ColdFusion module where you want the counter to appear. This is done with hit counters written in PERL to display plain-text hit counts rather than those god-awful graphical hit counters. The cfm would then be able

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread todd
I've never gotten SSI to kick off a .cfm page successfully, how did you do this Isaac or .. are you just suggesting this without having tried this for yosuelf? ~Todd On Mon, 29 Jul 2002, S. Isaac Dealey wrote: If they're installed, you could use a server side include (SSI) tag to include

CF MX Debugging

2002-07-29 Thread chris.alvarado
This is my one and only gripe thus far with CF MX, and maybe someone knows a way to fix it. I am not liking the floating debugging window, nor do I like it docked to the left of the page. Is there a way to get debugging info to show up at the bottom of the page like it used to with CF 5 and

Re: CF MX Debugging

2002-07-29 Thread todd
Yeah, switch it to 'classic' debugging.. and apply a patch that Sean Corfield suggested in order to make sure that all the variables are on it's own line: I have a .zip file of it on my server: http://blog.web-rat.com/archives/15.html ~Todd On Mon, 29 Jul 2002, chris.alvarado wrote:

RE: problems with SSL and host-headers

2002-07-29 Thread Christopher Olive
pretty much correct. in IIS, you cannot use host headers to differentiate sites AND use an SSL cert on those sites. the request is encrypted (obviously, it's SSL), and IIS can't see the encrypted host header to know which site to send it to (and which SSL cert to use to decrypt it).

RE: CF MX Debugging

2002-07-29 Thread Ben Forta
Sure, it's a setting in CF Admin in the Debug screen, set it to classic instead of dockable. --- Ben -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 9:20 AM To: CF-Talk Subject: CF MX Debugging This is my one and only gripe thus far

Re: problems with SSL and host-headers

2002-07-29 Thread WebMaster
They were correct. Since IIS can't see the header, your request is going to be sent directly to port 443, which is most likely listened to by the default or admin virtual domain.. \ However, this is possible. I have done this in the past using the undefined ports starting at 28000. If you set

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread WebMaster
Use an image tag. The src= can be your CF code which returns a gif. Gif could be transparent. Pass all your user info to the cf page. Ex:cfoutput img src=mycfUserINfoPage.cfm?referrer=#cgi.referer#whateverElse=#wewew# width=0 heifht=0 border=0 /cfoutput - Original Message - From:

Re: Stored Proc wizard

2002-07-29 Thread Phillip B
Man I love this list! Thanks Phillip Broussard Tracker Marine Group 417-873-5957 - Original Message - From: Adam Churvis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, July 27, 2002 7:36 AM Subject: Re: Stored Proc wizard That would be ours, at

Re: CF MX Debugging

2002-07-29 Thread Jeffry Houser
You need to get into the Administrator and change the debugging setting to classic instead of Dockable. At 08:20 AM 7/29/2002 -0500, you wrote: This is my one and only gripe thus far with CF MX, and maybe someone knows a way to fix it. I am not liking the floating debugging window, nor do

RE: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread Ian Lurie
This won't work if the file is an index.html file - your server won't recognize the pound signs. We've gotten around this using Javascript: !--- begin XED clickthru measurement script --- script language=javascript function PageQuery(q) { if(q.length 1) this.q = q.substring(1,

RE: site wide missing template handler not working in MX

2002-07-29 Thread Mike Byers
I took another look at the server this morning. I believe I owe you an apology. I realize now that I made more changes after the ones I told you to make, but had forgotten about those. Here is the way that I have it as I look at it now. This is working for me. I hope it will for you as well.

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread WebMaster
sure it will work. just map .html to cf - Original Message - From: Ian Lurie [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 29, 2002 9:47 AM Subject: RE: Issue: Update a tracker database with an index.html file. This won't work if the file is an index.html file -

Cert Resources for CFMX

2002-07-29 Thread Frank Mamone
I am planning to take the Cert Exam for CFMX at DEVCON. Are there any studying guides at this point or is it to early? Thanks, Frank M. __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

Compliation

2002-07-29 Thread Frank Mamone
When does the compile take place with CFMX? When moving templates from DEV to PROD won't they have to be re-compiled? Thanks __ Your ad could be here. Monies from ads go to support these lists and provide more resources for

Re: cfdev

2002-07-29 Thread Zac Spitzer
Tilbrook, Peter wrote: This is only supported by IE. and mozilla! z __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

RE: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread Ian Lurie
Hrm. I guess you can do that but the reason we went the JavaScript route was for clients who have index.html files on non-CF servers. I may have misunderstood. Sorry about that... -Original Message- From: WebMaster [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 7:00 AM To:

Re: Compliation

2002-07-29 Thread Critter
oi Frank!! yeap. takes place on the first hit of the page -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Monday, July 29, 2002, 10:06:03 AM, you wrote: FM When does the compile take

RE: Compliation

2002-07-29 Thread Alex Hubner
And, of course, every single change you made on it. []'s Alex -Original Message- From: Critter [mailto:[EMAIL PROTECTED]] Sent: 29/07/2002 11:14 AM To: CF-Talk Subject: Re: Compliation oi Frank!! yeap. takes place on the first hit of the page -- Critz Macromedia Certified

RE: CFMX Taking all CPU Resources?

2002-07-29 Thread Mike Byers
I will admit that I think that our organization has codeing issues :) I am trying to show this and get past it, but the code analyzer blows up before it get very far. I run it and it churns for about 2 minutes maybe and then returns an error in one of its templates with a wddx error. I really

RE: Compliation

2002-07-29 Thread todd
So, if you get a chance... make a spider. :) ~Todd On Mon, 29 Jul 2002, Alex Hubner wrote: And, of course, every single change you made on it. []'s Alex -Original Message- From: Critter [mailto:[EMAIL PROTECTED]] Sent: 29/07/2002 11:14 AM To: CF-Talk Subject: Re:

DWMX Webservice Web services types

2002-07-29 Thread Bill Wheatley
I have a question that I'm curious about. I've been playing around with DWMX to put webservices into a page since its pretty snazzy. I goto www.xmethods.com and I notice they have like 4 or 5 different type of services. Cold, .net, soap, glue etc etc I cant always the methods onto the page

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread S . Isaac Dealey
I've never gotten SSI to kick off a .cfm page successfully, how did you do this Isaac or .. are you just suggesting this without having tried this for yosuelf? No, it's an assumption. I know that it works with PERL and ASP files ... It's actually the only way that ASP can process included

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread todd
Assumptions can make an ass out of u and me... :) ~Todd On Mon, 29 Jul 2002, S. Isaac Dealey wrote: I've never gotten SSI to kick off a .cfm page successfully, how did you do this Isaac or .. are you just suggesting this without having tried this for yosuelf? No, it's an assumption. I

Macromedia Pet Market demo

2002-07-29 Thread Chad Gray
I have to say I am blown away by this application. If someone has loaded it, how much of it is CF? Do you have to have MX enterprise to run it, or will MX Pro run the application? http://examples.macromedia.com/petmarket/flashstore.html Great job MM!

RE: Macromedia Pet Market demo

2002-07-29 Thread Ben Forta
Front-end Flash, back-end CF. Lots of details about it (how it was made, design notes, all sorts of stuff) at http://www.macromedia.com/desdev/ --- Ben -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 10:40 AM To: CF-Talk Subject: Macromedia

Studio MX and Homesite - Where is Homesite?

2002-07-29 Thread Matthew R. Small
Hi all, I just bought MX Studio - where is Homesite? I need to do a site-wide find and replace. Can I do it in DWMX? Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847

RE: problems with SSL and host-headers

2002-07-29 Thread Christopher Olive
right. this changes the one of three rule for site identification in IIS. three things identify a virtual site in IIS: 1) IP address. 2) Port number. 3) Host header. change at least one of the three, and you have a different site in IIS. SSL will not work, however, if you're using host headers

Re: Macromedia Pet Market demo

2002-07-29 Thread todd
MX Pro will run it. Download Petmarket (look for a link in the macromedia desdev section) and check it all out for yourself. ~Todd On Mon, 29 Jul 2002, Chad Gray wrote: I have to say I am blown away by this application. If someone has loaded it, how much of it is CF? Do you have to have

Re: Studio MX and Homesite - Where is Homesite?

2002-07-29 Thread todd
You should be able to in DWMX, just hit cntrl-f and take a look at your options there. ~Todd On Mon, 29 Jul 2002, Matthew R. Small wrote: Hi all, I just bought MX Studio - where is Homesite? I need to do a site-wide find and replace. Can I do it in DWMX? Matthew Small IT

Re: Studio MX and Homesite - Where is Homesite?

2002-07-29 Thread Bill Wheatley
look in the homesite+ directory on the studio MX cd ;) i had the same issues. Now you're going to have to download the VTM HELP files from the web becuase homesite+ doesnt come with CF HELP *go figure* if you need those links i can try to dig them up if vern doesnt have them handy :) Bill

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread James Blaha
Ian, My case is also the the index.html file is on a non CF box. How do you do what you do? You capture the same information I'm looking for? James Blaha Ian Lurie wrote: Hrm. I guess you can do that but the reason we went the JavaScript route was for clients who have index.html files on

Re: Studio MX and Homesite - Where is Homesite?

2002-07-29 Thread Sean A Corfield
On Monday, July 29, 2002, at 07:42 , Matthew R. Small wrote: I just bought MX Studio - where is Homesite? I need to do a site-wide find and replace. Can I do it in DWMX? Yes, DWMX will do site-wide find and replace. Note that Dreamweaver MX - part of the Studio MX bundle - contains

Farewemll

2002-07-29 Thread Timothy Heald
Well folks it's been fun, A little too much email for me these days. Been really busy. Thanks for all the help. :) Bye Tim Heald Developer Schoollink, Inc. 910.223.2116 x 122 http://www.schoollink.net Providing technology solutions for educators Fusebox Advisory Committee

RE: FileExists WINNT Mapped Drive Permissions

2002-07-29 Thread Mike Byers
I agree with Brook. Try UNC paths. Also you may have to set up a CF service account with basic network privileges to be able to browse the network, so to speak, and run the CF service as that account. Be sure to add that user to your Administrators group on the local machine so that it

Coldfusion Hiermenus

2002-07-29 Thread Ian Vaughan
Hi Has anybody used or had any experience in working with the hiermenus script from http://www.webreference.com/dhtml/hiermenus/ If so as anybosy had any major problems (with positioning etc) with it while implementing the script into their websites? I would be interested to hear if anybody

Suggestions on importing fixed length file into database

2002-07-29 Thread Phillip B
I am going to have to import a fixed length text file into a database. It will be scheduled to happen everyday in the AM. The file could be around 7 or more megs. I have CF 5 on its own box and a SQL 2000 on another. This is what I thought I should do. I will dump the table of the previous

RE: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread Ian Lurie
Hi James, The script below parses the page query string and builds a list of field:value pairs. It then builds an IMG SRC=http://addressofcftemplateonanotherserverhere; tag that calls the CFM template, which is hosted on ANOTHER server that supports CF. Here's the gist - let's say

Re: Suggestions on importing fixed length file into database

2002-07-29 Thread Alex
Right tool for the job. Doesn't SQL Server have this import capability? On Mon, 29 Jul 2002, Phillip B wrote: I am going to have to import a fixed length text file into a database. It will be scheduled to happen everyday in the AM. The file could be around 7 or more megs. I have CF 5 on its

Re: Suggestions on importing fixed length file into database

2002-07-29 Thread Jerry Johnson
For the love of all that's holy and good, say after me...DTS. SQL2000 has a wonderful set of tools that let you pull and push data around. And you can schedule them. And you can even get CF to trigger the DTS packages. But for simple scheduling, stick with what SQLServer 2000 has avialable.

Re: Suggestions on importing fixed length file into database

2002-07-29 Thread Phillip B
I never noticed the schedule later box. If I set it up to run at 4 AM does it get ran like a scheduled task in windows? Disclaimer: I still a newbie when it comes to sql server Phillip Broussard Tracker Marine Group 417-873-5957 Phillip Broussard Tracker Marine Group 417-873-5957 -

Re: Issue: Update a tracker database with an index.html file.

2002-07-29 Thread WebMaster
Hi Ian, James, Seems we are getting more info now. OK, so you can't map html to cf. So your choices are PERL,PHP or whatever cgi your provider allows. If they don't allow cgi you could still use the image route and do it using JavaScript as suggested by Ian. You can gather all the info you

Checking form info

2002-07-29 Thread Thane Sherrington
I have a form with with 5 text fill ins, and I want to check to see if some aren't entered. For instance, I might have Field 1,2, and 5 filled in and 3 and 4 blank. I was using code like this: CFLOOP index=Answers from=1 to=5 step=1 CFSET Form.AnswerHeading=Form[AnswerHeadingAnswers]

Re: FileExists WINNT Mapped Drive Permissions

2002-07-29 Thread David Fafard
Good suggestion on the CF Service Account.. thanks. Dave - Original Message - From: Mike Byers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 29, 2002 11:11 AM Subject: RE: FileExists WINNT Mapped Drive Permissions I agree with Brook. Try UNC paths. Also you may

RE: Session Woes

2002-07-29 Thread Cornillon, Matthieu
Tony, I've proofread twice your statement against what's in the CF Studio help for CFAPPLICATION, and I can see nothing wrong. The only things I can imagine: 1) Do you have another Application.cfm in some folder that could be fouling things up? 2) Is it possible that what seems to be the

RE: Coldfusion Hiermenus

2002-07-29 Thread Dan Haley
We got them to work and they were great on a fast machine, but testing from an older P150 machine they were incredibly slow to build. Of course we wanted to have multiple levels, etc. We tore them apart and tried removing as much 'optional' code, still leaving them cross-browser, and we

anyone having list troubles ?

2002-07-29 Thread Craig Thomas
Sorry for the OT post, but I seem to be receiving this list sporadically. The last post I received was from [EMAIL PROTECTED] (suject: Re: Issue: Update a tracker database with an index.html file. content: Assumptions can make an ass out of u and me... :)) My ISP insists my mail server is ok.

RE: FileExists WINNT Mapped Drive Permissions

2002-07-29 Thread Mike Byers
I have found Service Accounts very handy. Reduces password administration issues as well as many security concerns. Glad I could help. Mike -Original Message- From: David Fafard [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 10:35 AM To: CF-Talk Subject: Re: FileExists WINNT

RE: anyone having list troubles ?

2002-07-29 Thread Jillian Carroll
Yours :) -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 9:52 AM To: CF-Talk Subject: anyone having list troubles ? Sorry for the OT post, but I seem to be receiving this list sporadically. The last post I received was from [EMAIL PROTECTED]

Email Parser

2002-07-29 Thread Bill Wheatley
Anyone know any good places to get a CF based or PERL based email parser to check for INVALID emails? Thanks Bill Wheatley Senior Database Developer Macromedia Certified Advanced Coldfusion Developer EDIETS.COM 954.360.9022 X159 ICQ 417645

RE: anyone having list troubles ?

2002-07-29 Thread Dan Haley
I see that same problem sometimes ... the other day I received 100 list emails at one time, but the threads had continued while I wasn't getting them, so the list server was working fine ... and of course my admin says there's no problem here! Dan -Original Message- From: Craig Thomas

RE: Coldfusion Hiermenus

2002-07-29 Thread Matt Robertson
As previously mentioned, when Hiermenus starts piling on the levels it slows *way* down. I had a 50-page site that looked to be taking about a full second for the menu to appear. Milonic menus are a lot faster. http://californiahia.org has a 68-page menu, and it loads instantly from what I can

RE: anyone having list troubles ?

2002-07-29 Thread Dan Haley
Sorry, didn't answer your question ... yes, there have been quite a few posts since then ... -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 8:52 AM To: CF-Talk Subject: anyone having list troubles ? Sorry for the OT post, but I seem to be

Re: Email Parser

2002-07-29 Thread Gianluca Pinelli
Look this CustomTag http://www.cfmentor.com/code/index.cfm?action=scriptid=59 Bye Gianluca Pinelli web developer - Speedlab e-business transforming http://www.speedlab.it [EMAIL PROTECTED] - Original Message - From: Bill Wheatley [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: Checking form info

2002-07-29 Thread Adrian Lynch
What is it your trying to do in the cfsets? Structure? Ade -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: 29 July 2002 16:33 To: CF-Talk Subject: Checking form info I have a form with with 5 text fill ins, and I want to check to see if some aren't

Re: Coldfusion Hiermenus

2002-07-29 Thread Dave Carabetta
Hi Has anybody used or had any experience in working with the hiermenus script from http://www.webreference.com/dhtml/hiermenus/ If so as anybosy had any major problems (with positioning etc) with it while implementing the script into their websites? I would be interested to hear if anybody

Re: Checking form info

2002-07-29 Thread S . Isaac Dealey
I have a form with with 5 text fill ins, and I want to check to see if some aren't entered. For instance, I might have Field 1,2, and 5 filled in and 3 and 4 blank. I was using code like this: CFLOOP index=Answers from=1 to=5 step=1 CFSET

RE: Checking form info

2002-07-29 Thread Chris Lofback
To get the IsDefined() to work, try this: CFIF IsDefined(Form.AnswerValue#Answers#) Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Monday, July

Re: Email Parser

2002-07-29 Thread Alex
What's your definition of INVALID? Do you mean a regular expression to check an email or do you mean a nslookup to check a mx record? On Mon, 29 Jul 2002, Bill Wheatley wrote: Anyone know any good places to get a CF based or PERL based email parser to check for INVALID emails? Thanks Bill

RE: Email Parser

2002-07-29 Thread Chris Lofback
This question is a good candidate for the new FAQ! This RegEx was recommended recently on the list and it includes the new top-level domains: ^['_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.(([a-z]{2,3})|(aero |coop|info|museum|name))$ Chris Lofback Sr. Web Developer TRX Integration

Spaces stripped out of query return values?

2002-07-29 Thread Yexley Robert D Contr Det 1 AFRL/WSI
I have a form that has a SELECT list in which I'm trying to trick into displaying multiple columns in the select list. I'm doing this by how I'm returning the values from my query. I'm querying an Oracle database, and my query is: cfQuery name=defaultList dataSource=#dataSource#

Re: Email Parser

2002-07-29 Thread Bill Wheatley
well Just to first regexp check to make sure the emails in the right format then I want to add something to check it against a list of OBVIOUS mistakes like we have about 25 million emails that are not emailing out and alot of hatmail.com or hotmal.com typos for hotmail.com so I want to check

Re: Email Parser

2002-07-29 Thread S . Isaac Dealey
What's your definition of INVALID? Do you mean a regular expression to check an email or do you mean a nslookup to check a mx record? My first guess was to parse returned email from mailerdaemons to determine if the address had transient or permanent fatal errors, retreive the address and do

RE: Spaces stripped out of query return values?

2002-07-29 Thread Adrian Lynch
It's an HTML thing, it will reduce many spaces to one, try replacing the spaces with nbsp; Ade -Original Message- From: Yexley Robert D Contr Det 1 AFRL/WSI [mailto:[EMAIL PROTECTED]] Sent: 29 July 2002 17:06 To: CF-Talk Subject: Spaces stripped out of query return values? I have a

Re[2]: problems with SSL and host-headers

2002-07-29 Thread cf-talk
Hello Christopher, Monday, July 29, 2002, 4:43:40 PM, you wrote: CO right. this changes the one of three rule for site identification in IIS. CO three things identify a virtual site in IIS: CO 1) IP address. CO 2) Port number. CO 3) Host header. CO change at least one of the three, and you

RE: Email Parser

2002-07-29 Thread Ben Forta
And don't forget all the AOL users who forget the .com or the aol.com (just providing their screen name). That one feels like an epidemic sometimes. -Original Message- From: Bill Wheatley [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 12:12 PM To: CF-Talk Subject: Re: Email

RE: Re[2]: problems with SSL and host-headers

2002-07-29 Thread Christopher Olive
yes. yes i did write that. co. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 12:19 PM To: CF-Talk Subject: Re[2]: problems with SSL and host-headers Hello Christopher, Monday, July 29, 2002, 4:43:40 PM, you wrote: CO right. this

Re: CFMX Taking all CPU Resources?

2002-07-29 Thread Joe Eugene
Stacy, I am still in the process of Load Testing different sections of the Content App... I suspect.. Its something to do with (Wddx datastore,Custom tags etc) We didnt write this code...and i dont advice the method the app was written. I will post some Code/Results .. when i find out something.

Re: Email Parser

2002-07-29 Thread Gianluca Pinelli
then I want to add something to check it against a list of OBVIOUS mistakes Why don't you try the CFUSION_VERIFYMAIL?? I think is good for your case. Gianluca Pinelli web developer - Speedlab e-business transforming http://www.speedlab.it [EMAIL PROTECTED]

query string variable idea

2002-07-29 Thread Cornillon, Matthieu
Hi, there. In trying to solve a problem this weekend, it occurred to me that I could easily handle my situation by passing a particular URL variable with every link on my site. Unfortunately, that would mean going through and appending that URL variable to every link on my site, so I ended up

DB Queries and UDFs

2002-07-29 Thread Chris Edwards
It is my understanding that I cannot run DB queries inside of a UDF. If there is a way, I would like that alot. If there isn't, may I pass the Query results into the UDF? If I can, is it just the name of the query? Is it an Array? Thanks!

RE: DB Queries and UDFs

2002-07-29 Thread Ben Forta
If you use CFMX then you can indeed create queries inside of a UDF. And either way, you can pass a query to a UDF. If you are using CFSCRIPT syntax then you'll need to use a loop and access the query members as query.column[row]. --- Ben -Original Message- From: Chris Edwards

RE: DB Queries and UDFs

2002-07-29 Thread Dave Watts
It is my understanding that I cannot run DB queries inside of a UDF. This is true in CF 5, but not CF MX - you can use the CFFUNCTION tags to declare a UDF, and use CFQUERY within that. If there is a way, I would like that alot. If there isn't, may I pass the Query results into the UDF?

RE: DB Queries and UDFs

2002-07-29 Thread todd
Unless of yourse, you're creating UDFs via cffunction, then I would imagine you could still use cfloop query=queryObjectName.. :) ~Todd On Mon, 29 Jul 2002, Ben Forta wrote: If you use CFMX then you can indeed create queries inside of a UDF. And either way, you can pass a query to a UDF.

Re: anyone having list troubles ?

2002-07-29 Thread Michael Dinowitz
The HoF server tries to send a post as soon as it receives it. If it can't send, then the mail gets cached till later. The cache is tried every hour till it can be sent or I clean it out. Some examples of the connection error messages are: I'm not saying that these errors are always on your or

RE: DB Queries and UDFs

2002-07-29 Thread Ben Forta
As I said If you are using CFSCRIPT g -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 1:14 PM To: CF-Talk Subject: RE: DB Queries and UDFs Unless of yourse, you're creating UDFs via cffunction, then I would imagine you could still

RE: Spaces stripped out of query return values?

2002-07-29 Thread Yexley Robert D Contr Det 1 AFRL/WSI
DOH!! I should have known that. I've been trying since I got your original response to figure out a way to trick it and to put in nbsp; in place of spaces, but I haven't been able to get it working. Does anyone happen to know of a way to get around this? Bob ))) -Original Message-

RE: DB Queries and UDFs

2002-07-29 Thread todd
I know, I know... I was suggestion an alternative. ;) On Mon, 29 Jul 2002, Ben Forta wrote: As I said If you are using CFSCRIPT g -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 1:14 PM To: CF-Talk Subject: RE: DB Queries

Re: Spaces stripped out of query return values?

2002-07-29 Thread Douglas Brown
have you tried HtmlEditFormat() Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Yexley Robert D Contr Det 1 AFRL/WSI [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, July 29, 2002 10:10 AM Subject: RE: Spaces stripped out of query return values? DOH!!

Re: anyone having list troubles ?

2002-07-29 Thread Michael Dinowitz
Whoops, forgot the list of potential problems. :) Reason: Unknown Reason: Server failed (MAIL) Reason: Couldn't establish SMTP connection on port 25 Reason: Server failed (all recipients deferred) Reason: Server failed (end of DATA) Reason: Server closed SMTP connection (end of DATA) Reason:

RE: Spaces stripped out of query return values?

2002-07-29 Thread Dan Haley
Change your query to: SELECT replace(rpad(username, 20, chr(7))|| rpad(project_folder, 20, chr(7))|| rpad(project_file, 20, chr(7))|| rpad(to_char(blk_h, 'DD-MON-'), 20, chr(7)), chr(7), 'nbsp;') listItemDisplay You'll want to use a non-printable

RE: Spaces stripped out of query return values?

2002-07-29 Thread Cornillon, Matthieu
Well, once you have done your SQL statement, I am assuming that you have strings padded out to the 20 characters or whatever with spaces. Since the problem is at the HTML level, you can--at the CFML level--just replace with nbsp;. So, CFSET TargetVar=Replace(SourceVar, ,nbsp;,ALL) You might

RE: anyone having list troubles ?

2002-07-29 Thread Tony Weeg
mike. im sorry to chime in again, about your list. but this list is really sporadic, and you flamed me when I asked the question. no one is downing your list, but please, really, just accept the fact that there are issues with this mailing list, and lets all, as a community help fix it. im sure

How to Display a Page incase of Timeout?

2002-07-29 Thread Paul
Hello, I am fairly new to CF and i need to simply set the site I am building up to display a simple page asking the user to re-login in case of a timeout? Seems like an easy enough task but I'm not sure how to go about it. Any help would be appreciated. Thanks -Paul

Re: anyone having list troubles ?

2002-07-29 Thread Michael Dinowitz
I don't think I flamed you but instead suggested that it may have been a new filter. That's besides the point. I am working on the server and trying to move it to a whole new setup. It's slow work because of time and money. Now that all of the list archives are in the new setup I can finalize

Re: Email Parser

2002-07-29 Thread Bill Wheatley
exactly that kinda check ;) lol just seeing if there is something already available so i can build off it to the needs we have. Going through 7 million records you think cf can handle it without going crazy? :) I think i'll have to do it into groups so it doesnt blow up. Bill Wheatley Senior

RE: anyone having list troubles ?

2002-07-29 Thread Thane Sherrington
At 01:25 PM 7/29/02 -0400, Tony Weeg wrote: mike. im sorry to chime in again, about your list. but this list is really sporadic, and you flamed me Actually, the list is very rarely sporadic where I am. (It is less sporadic than any of my other lists.) So I would guess that something is

Re: How to Display a Page incase of Timeout?

2002-07-29 Thread S . Isaac Dealey
Hey Paul, How a timeout-relogin page would be displayed is going to depend greatly on how you manage your sessions. If you're using session variables, the simplest way may be to use something like the following in your application.cfm file: cflock scope=session type=readonly timeout=10

CFGRIDUPDATE: Duplicate Column Name

2002-07-29 Thread Angel Stewart
Hey guys and gals. I got this error when doing a simple CFGRID/CFGRIDUPDATE page: === Oracle Error Code = 957 ORA-00957: duplicate column name Data Source = RELORA SQL = UPDATE VEHICLE_TBL SET COST_CENTER_CD = :1 , COST_CENTER_CD = :2 WHERE

CFX_CyberCash

2002-07-29 Thread Steve Johnson
has anyone successfully used CFX_CyberCash with CFMX Pro on Linux? i just got off the phone with tech support at Verisign and their basic conclusion at this point is that it does not work and it may never work. we were able to get it to the point where it will actually charge a credit card

  1   2   3   >