Re: CFMAIL goes straight to UNDELIVERABLE

2002-03-02 Thread one
Anyone have any idea on why a lot of emails are going within Cold Fusion straight from the SPOOL folder to the UNDELIVR folder I don't know if its a problem in Cold Fusion or the email server Thanks __ Get Your Own Dedicated

Re: CFMAIL goes straight to UNDELIVERABLE

2002-03-02 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: Anyone have any idea on why a lot of emails are going within Cold Fusion straight from the SPOOL folder to the UNDELIVR folder. I don't know if its a problem in Cold Fusion or the email server. What is in your mail.log? Jochem

RE: What are these, headers?

2002-03-02 Thread Dave Babbitt
Hi Guys! I have this strange problem: after running an Excel Web Query to a Cold Fusion template on a server, some browsers refuse to not cache certain pages on that server First I mucked up my laptop, then I mucked up the Development Server, now the Production Server is mucked up Thanks to my

Running Excel Web Queries Cause Browser Caching Problems?

2002-03-02 Thread Dave Babbitt
Hi Guys! I have this strange problem: after running an Excel Web Query to a Cold Fusion template on a server, some browsers refuse to not cache certain pages on that server First I mucked up my laptop, then I mucked up the Development Server, now the Production Server is mucked up Thanks to my

RE: Attaching CSS style sheet

2002-03-02 Thread James Sleeman
the LINK tag should always appear in the HEAD/HEAD section of the generated HTML document, unless your applicationcfm also includes this section, putting the LINK in there would cause it to appear outside the HEAD/HEAD section ie it's makes for bad HTML On Sat, 2002-03-02 at 10:06,

Re: Regular Expression Help

2002-03-02 Thread James Sleeman
On Sat, 2002-03-02 at 10:10, Jared Stark wrote: Hello all I am trying to write a simple search engine, and would like to replace certain commonly used prepositions from the search string such as 'a','the','for', etc I have an array of the prepositions that I would like to remove, however

Re: Displaying Please wait message during a process

2002-03-02 Thread James Sleeman
On Sat, 2002-03-02 at 04:11, Mark Leder wrote: I have a template that I want to display Please wait text, then go through a CFIndex Process, with a complete message when done This is displayed in a pop-up window I find that when the CF process starts, the window goes blank until

Re: CFMAIL goes straight to UNDELIVERABLE

2002-03-02 Thread Al Musella, DPM
Check that the TO and FROM address are valid email addresses your mail serve might be rejecting ones that don't have it To check, go into the undeliv folder and open up a few of the messages If you see most of them have bad email addresses, just check before you create the message - and

Re: cfhttp pressure

2002-03-02 Thread Jason Davis
Dave, Honestly, though, I'd recommend doing this whole process in something other than CF, in this case I'd rewrite the generatecfm page in another language, since this is the only script you're running to build your generated HTML CF isn't really designed to do this sort of thing well -

Re: cfhttp pressure

2002-03-02 Thread jasondavis19
Jochem, cfset URLgenerate = 1 cfloop query=Generate_ct_pages cfset URLID = Product_id cfsavecontent cfmodule template=/generatecfm /cfmodule /cfsavecontent cffile action=write /cfloop What if i'm using 45, is there an alternative for

Re: cfhttp pressure

2002-03-02 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: cfset URL.generate = 1 cfloop query=Generate_ct_pages cfset URL.ID = Product_id cfsavecontent ... cfmodule template=/generate.cfm /cfmodule /cfsavecontent cffile action=write ... /cfloop What if i'm using 4.5, is there an

Re: Regular Expression Help

2002-03-02 Thread Douglas Brown
just do a udf and create your array and then check that the value of the words you are replacing (length). If they are less than 4 char then they should be removed. Hope that makes sense. Success is a journey, not a destination!! Doug Brown - Original Message - From: James

Refreshing parent window on close

2002-03-02 Thread W Luke
Hi, On one page I'm doing at the moment, there's a bunch of cfifs - in a certain instance it will produce a button which, when pressed, will pop up a window After the user has done what they need to do in the popped-up-window, I need it to close and for the original parent window to be

RE: Refreshing parent window on close

2002-03-02 Thread Shawn Grover
In the popup window's onClose event (or onUnload... I can never remember which), enter this line: self.opener.refresh(); Or, alternately, self.opener.location='originalPageURL.cfm'; Hope that helps. Shawn Grover -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent:

Re: Refreshing parent window on close

2002-03-02 Thread W Luke
Thanks Shawn. I found the following works well, but only when I manually close the pop-up window. How can I get it to refresh the parent, and close the popup, right after a cfquery? (in case I didn't make myself clear, it'll be after a form-submit - so perhaps there's a JScript function I could

RE: Refreshing parent window on close

2002-03-02 Thread Scott Van Vliet
You could do: cfquery name=myQuery datasource=#dsn# ... /cfquery html head script language=JavaScript type=text/css !-- function unLoad(){ var thankYouPage = thankyou.cfm; window.opener.location = thankYouPage; window.close(); } //-- /script /head body onload=unLoad();

problems with storedproc

2002-03-02 Thread Jason Davis
I'm using something simple like this tored procedure: cfstoredproc procedure=Catalog datasource=Products cfprocresult name=Query_Results cfprocparam type=In cfsqltype=CF_SQL_VARCHAR dbvarname=sql value='#Run_Query#' null=No /CFSTOREDPROC And getting a weird error: [Microsoft][ODBC SQL Server

cfif in cfset

2002-03-02 Thread Jason Davis
I'm using CF 45, how can I perform something like this? cfset variable=cfif foo eq 11cfelse2/cfif without needing to do: cfif foo eq 1 cfset variable=1 cfelse cfset variable=2 /cfif __ Get Your Own Dedicated

Re: cfif in cfset

2002-03-02 Thread Nick McClure
You want to use IIF syntax: cfset var = IIF(foo eq 1, 1, 2) At 11:16 PM 3/2/2002 +0200, you wrote: I'm using CF 45, how can I perform something like this? cfset variable=cfif foo eq 11cfelse2/cfif without needing to do: cfif foo eq 1 cfset variable=1 cfelse cfset variable=2 /cfif

Re: cfif in cfset

2002-03-02 Thread Jason Davis
Nick, You want to use IIF I've heard it's resource intensive, true? - Original Message - From: Nick McClure [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] syntax: cfset var = IIF(foo eq 1, 1, 2) At 11:16 PM 3/2/2002 +0200, you wrote: I'm using CF 4.5, how can I perform

Re: cfif in cfset

2002-03-02 Thread Nick McClure
You know, I don't know the answer to that question I use it often enough, and I don't notice a problem It is the only thing that you can use accomplish the problem You could write a function and use cfscript to take care of it for you At 11:40 PM 3/2/2002 +0200, you wrote: Nick, You want

Re: problems with storedproc

2002-03-02 Thread Douglas Brown
It looks to me like you have ' ' in your value='#Run_Query#' is that needed? Success is a journey, not a destination!! Doug Brown - Original Message - From: Jason Davis [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 02, 2002 12:53 PM Subject: problems with

Re: cfif in cfset

2002-03-02 Thread Aaron Rouse
I know the DE() function which is commonly used with IIF is resource intensive. I once stripped out a sizeable amount of IIF() functions from a page and put in CFIF tags in place and picked up a noticeable amount in the load times. In a lot of cases the IIF() is used, people could have used

Re: problems with storedproc

2002-03-02 Thread Jason Davis
Yes it is, anyhow I tried without it and it gave same error. It looks to me like you have ' ' in your value='#Run_Query#' is that needed? Success is a journey, not a destination!! Doug Brown - Original Message - From: Jason Davis [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: problems with storedproc

2002-03-02 Thread Jason Davis
I tried also running inside a cfquery cfquery ... ... mystoredprodure 'param1',param2,param3 /cfquery still, same error. the weirdset thing is that exactly the same code (mystoredprodure 'param1',param2,param3) work perfectly in query analazyer (sql enterprise manager) help? -

Re: problems with storedproc

2002-03-02 Thread Douglas Brown
Well since you are using an IN have you tested if #run_query# is defined? That is the only thing I can think of that would give a value in your code. Success is a journey, not a destination!! Doug Brown - Original Message - From: Jason Davis [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: problems with storedproc

2002-03-02 Thread Jason Davis
Douglas, I also tried replacing the #run_query# with a varchar directly. also look at my other post, where I tried to put the entire sp (including parameters) run from a cfquery, didn't work. and it works great in query analayzer! weird. - Original Message - From: Douglas Brown [EMAIL

Re: problems with storedproc

2002-03-02 Thread Douglas Brown
Doesnt make much sense does it? What about using query_result I know each version of CF has had different reserved words, not sure if query is one of them. Thats about the end of my thoughts. Success is a journey, not a destination!! Doug Brown - Original Message - From: Jason

Re: problems with storedproc

2002-03-02 Thread Jason Davis
Nopee :( tried to change sp name, nothing. really really weird. and it's an awesome sp I can't live without. .. - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, March 03, 2002 12:51 AM Subject: Re: problems with storedproc

Re: problems with storedproc

2002-03-02 Thread Jochem van Dieten
Jason Davis wrote: I tried also running inside a cfquery cfquery mystoredprodure 'param1',param2,param3 /cfquery still, same error the weirdset thing is that exactly the same code (mystoredprodure 'param1',param2,param3) work perfectly in query analazyer (sql enterprise manager)

Re: cfif in cfset

2002-03-02 Thread Jim McAtee
You could roll your own, which lets you eliminate the need for DE(). It's about 45% faster in my tests using CF5. Without the DE() functions used in the IIf(), the difference is a lot less. The way this function operates is less flexible that CF's built-in IIf(), since you couldn't do

Re: problems with storedproc [great sp attached]

2002-03-02 Thread Jason Davis
Dear Jochem, how are you? :) Are you running query analyser through ODBC? I really don't know.. :( BTW, you should change the name of the variable you are passing. SQL is a reserved word. I tried to change all variables, didn't work. I'm attaching the complete stored procedure- it is a

OT: Mailing lists for Visual Basic

2002-03-02 Thread Gregory Harris
I know this one has come up before, but anyone know a list for visual basic with roughly the same traffic as this one? Thanks! Gregory Harris [EMAIL PROTECTED] __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB

Developers Exchange... How *could* they!?

2002-03-02 Thread Matt Robertson
For two days now I've been doing searches on the Developers Exchange and getting regular one- to two-second responses I just searched for ''ColdFusion'' and got back 374 results in just under 3 seconds I'm shocked and outraged I no longer have the time to go to the water cooler, doze off or

Re: Developers Exchange... How *could* they!?

2002-03-02 Thread Jason Davis
I think they're still using jsp :) - Original Message - From: Matt Robertson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, March 03, 2002 2:24 AM Subject: Developers Exchange... How *could* they!? For two days now I've been doing searches on the Developers Exchange and

RE: Developers Exchange... How *could* they!?

2002-03-02 Thread Kwang Suh
Sons a bitches!! That's it, I'm going to throttle my bandwidth down to 56k JUST to feel nolstagic! :) -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 02, 2002 5:25 PM To: CF-Talk Subject: Developers Exchange... How *could* they!? For two days

Re: Developers Exchange... How *could* they!?

2002-03-02 Thread Jon Hall
At least they haven't made the site compatible with Netscape 6 yet, so you could load the site in NS6 and then go on a magnifying glass hunting expedition :) jon Matt Robertson wrote: For two days now I've been doing searches on the Developers Exchange and getting regular one- to two-second

ColdFusion, IIS and Virtual Directories

2002-03-02 Thread John Kivus
I recently started administering a ColdFusion Server with Windows 2000 Advanced Server using IIS to deliver webpages, after being primarily a developer for the past couple of years I am having a real problem working with virtual directories due to IIS and Windows 2000 security features working so

Re: ColdFusion, IIS and Virtual Directories

2002-03-02 Thread Jim McAtee
Make sure IUSR_machine_name has the necessary privileges within the physical directory that the IIS virtual directory points to. If it contains only static content such as html or graphics, I believe Read permission is all you need. Jim - Original Message - From: John Kivus [EMAIL