how to establish remote connection to server

2000-07-13 Thread Pavan
Hai, I had loaded the studio in remote machine and trying to access the cf server from remote machine it just works fine when i retrieve database but when i use any query , it doesnot resolve query it just shows the select statement as it is . i think the problem is that the files are just

Re: Cold Fusion Studio Vs Dreamweaver Ultradev

2000-07-13 Thread Sean Renet
I like the "live" records sets returned for Stored Procedures in Ultra Dev. This is something CFSTudio severly lacks. I used to use Query Analyzer for this. - Original Message - From: "Paul Ihrig" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 12, 2000 9:22 AM Subject: RE:

RE: Thumbnail tags

2000-07-13 Thread Rich Wild
BTW, what was wrong with CF_AutoResize? I'm using it without any problems whatsoever... What errors where you getting? -- Rich Wild Senior Web Designer --- e-mango.com ltd Tel: 01202 587 400 Lansdowne Place

[cfug.managers] Re: CFUN-2k 95% full; Beer blast; poster

2000-07-13 Thread Michael Smith
--09CDDBB46B7898E7EEFEE156 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit CFUN-2k now has 727 registrations and is 95% full! Thanks for everyone's support - that is what makes CFUN-2k a great event every year! We have a tentative sponsor for the

CFIF and a Memo field in access

2000-07-13 Thread Francis NART
I want to test if a memo field is empty in access. I tried this : CFIF reponse_critique IS ""... or this CFIF len("reponse_critique") LT 1 ... but with no success. Could you help me on this ? -- Archives:

Problems with mail

2000-07-13 Thread Stewart McGowan
The following code gives an error of - Error Diagnostic Information unknown exception condition TagCFMail::sendMessage The error occurred while processing an element with a general identifier of (CFMAIL), occupying document position (13:1) to (15:25). Date/Time:

RE: problem with primary key

2000-07-13 Thread Anthony Geoghegan
Hi Greg, Do you have an index set besides your primary key? |SQL operation updated no rows. |The SQL operation affected no rows.Either the Key value has |changed or the |row has been deleted. | |The primary key is id, and I can't figure out why it suddenly |would stop Regards, Anthony

No Subject

2000-07-13 Thread Nagesh Kumar Deva
Hai This is my cflocation url path But when i want to show the user, i don't want to show them my userid and password. cflocation url="../report/hrall.rpt?init=actxuser0=ianmedrptpassword0=ianmedrptuser1 =ianmedrptpassword1=ianmedrptuser2=ianmedrptpassword2=ianmedrptuser3=ian

url problem

2000-07-13 Thread Nagesh Kumar Deva
Hai This is my cflocation url path But when i want to show the user, i don't want to show them my userid and password. cflocation url="../report/hrall.rpt?init=actxuser0=ianmedrptpassword0=ianmedrptuser1 =ianmedrptpassword1=ianmedrptuser2=ianmedrptpassword2=ianmedrptuser3=ian

Re: CFIF and a Memo field in access

2000-07-13 Thread Dick Applebaum
Try CFIF Not(Len(Trim(reponse_critique))) At 10:26 AM +0200 7/13/2000, Francis NART wrote: I want to test if a memo field is empty in access. I tried this : CFIF reponse_critique IS ""... or this CFIF len("reponse_critique") LT 1 ... but with no success. Could you help me on this ?

RE: Please help! CFFTP and empty file.

2000-07-13 Thread Anthony Geoghegan
|Anthony, |Thanks for the reply. I am simply using CFFTP to put .jpg |files on another |server. If I manually send the files from the server, they |are fine. But |with CF and CFFTP, they are sent, but they contain no data. |Jeff Why not try CFFILE I use it for exactly the same purpose.

RE: CF Crash on Shutdown

2000-07-13 Thread Steve Martin
Under heavy load CF has been known to crash when trying to shut down the service. Try shutting down your web server first and wait a few moments for all CF threads to end then try stopping CF. HTH Steve -Original Message- From: vince [mailto:[EMAIL PROTECTED]] Sent: Thursday, July

crysal report migration(7 to 8) problem

2000-07-13 Thread Deva Ramesh
Hai We are facing the problem when we migrate crystal reports version7.0 to 8.0 by displaying the dialogbox saying "cannot open report in sqlserver" So after displying this dialog box when we press refresh buttton then report is coming. user doesn't face this kind of problem. Actually we didn't

Re: url problem

2000-07-13 Thread Sean Renet
set the userid and password as client or seesion varaibles and then just call them on the page you are cflocating to. - Original Message - From: "Nagesh Kumar Deva" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 13, 2000 1:42 AM Subject: url problem Hai This is my

Domain specific cookies with CFCOOKIE

2000-07-13 Thread Bud
Hi all. I'm having trouble with this one. I could use a pointer, or at least someone tell me it doesn't work so I can stop. :) I need to set a cookie on a secure server then read it on a non-secure server. In some instances I'd like to be able to read it from a different domain entirely. When

Using CFLDAP to filter on Assoc-NT-Account

2000-07-13 Thread Page , James
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFECB0.7DAD2844 Content-Type: text/plain; charset="iso-8859-1" I'm grabbing a user's Windows NT Domain username, and I want to

RE: Cold Fusion Studio Vs Dreamweaver Ultradev

2000-07-13 Thread Reynolds, Adam
I can't see live data being such a major plus point. If you use the Fusebox (www.fusebox.org http://www.fusebox.org ) development style, then you end up with 100s of files, each one specifically doing one task and a page is built up of multiple files but all application logic control is through

Re: Force database connections to close....

2000-07-13 Thread Greg Saunders
Or, as pointed out to me on this list, you can also try: cfscriptCFUSION_DBCONNECTIONS_FLUSH();/cfscript Gregory M. Saunders, Ph.D. Senior Design Architect Cognitive Arts Corporation (http://www.cognitivearts.com) 1840 Oak Avenue, 4th Floor Evanston, IL 60201-5914 At 11:58 AM

CF is 'template based' and ASP is 'object based'?

2000-07-13 Thread Earl, George
An instructor was speaking to a group of our managers and he explained the difference between CF and ASP as CF is 'template based' and ASP is 'object based', therefore he prefers ASP because it is more sophisticated (and because he has used it more). What exactly could he have meant by this?

RE: Find a date from a given date

2000-07-13 Thread Philip Arnold - ASP
cfset date1 = createdate(2000,5,16) cfset date2 = dateadd("d",180,date1) cfoutput #dateformat(date1)#br #dateformat(date2)# /cfoutput Or, if you're a moron... cfset date1 = createdate(2000,5,16) cfset date2=date1 cfloop index="i" from=1 to=180 cfset date2=dateAdd("d",1,date1)

RE: CFLOCK and server variables

2000-07-13 Thread mherbene
Using the literal, like this: cflock name="myapplication" etc... makes sense to me given my understanding of cflock; does anyone understand why Allaire Tech support explicitly recommends cflock name="#application.applicationname#" etc.. instead? The also recommend

RE: CFLOCK and server variables

2000-07-13 Thread mherbene
Yes, but do you recommend (4.0x) cflock name="#application.applicationname#" ... as Allaire tech support says, or cflock name="myapplicationname" ... as Dave Watts says? Not to put you on the spot or anything... :-) -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent:

RE: CFIF and a Memo field in access

2000-07-13 Thread Philip Arnold - ASP
I want to test if a memo field is empty in access. I tried this : CFIF reponse_critique IS ""... or this CFIF len("reponse_critique") LT 1 ... but with no success. Take the quotes from the Len, so it should be len(reponse_critique) Or, why do check it in SQL - if you're only looking

RE: Domain specific cookies with CFCOOKIE

2000-07-13 Thread Philip Arnold - ASP
Hi all. I'm having trouble with this one. I could use a pointer, or at least someone tell me it doesn't work so I can stop. :) I need to set a cookie on a secure server then read it on a non-secure server. In some instances I'd like to be able to read it from a different domain entirely.

RE: CF is 'template based' and ASP is 'object based'?

2000-07-13 Thread mherbene
Maybe what he means is that many operations that are done in CF with built-in tags are done in ASP by accessing COM/ActiveX objects; I'm not very familiar with the specifics of ASP, but I think the sort of functions that CFMAIL, CFHTTP, and CFFTP fulfill in CF are done by instantiating a COM

Re: Find a date from a given date

2000-07-13 Thread Justin v0.9 MacCarthy
Oh My God... You would think he could have doubled the speed of the loop with step=2. LOL :-) Oh Dear, ~Justin cfset date1 = createdate(2000,5,16) cfset date2=date1 cfloop index="i" from=1 to=180 cfset date2=dateAdd("d",1,date1) /cfloop cfoutput #dateformat(date1)#br

OT: 100% frame in Netscape

2000-07-13 Thread Dave Hannum
Hello, We have frameset on a Unix box without CF that we want to bring up our CF pages in on another box. (don't ask - it's just the way it has to be). Anyway, can somebody tell me the secret of doing a Netscape compatable 100% frame? What I do works fine in IE, but chokes Netscape . . .

RE: cfmail

2000-07-13 Thread Tim Bahlke
I have switched to doing this, and I am receiving nothing. Tim Bahlke, CIFO thinkcreate.com p. 336.230.0575 f. 336.230.0083 -Original Message- From: David Shadovitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000 12:28 AM To: [EMAIL PROTECTED] Subject: Re:

RE: cfmail

2000-07-13 Thread Tim Bahlke
I have looked in the Undeliverable Directory, nothing The connection to the server in CF Administrator has been verified I'm using a different server other then mine to send the emails. Could that be the problem ... do I need to send the message form the same server that the from address is

CFLDAP - problems using tag.

2000-07-13 Thread Alan Willis
Hi there. I'm having a problem with the CFLDAP tag and am unsure whether it's the server of my code that the problem. I just started using the CFLDAP tag (we only *just* got an LDAP server installed and running), but each time I try to run the code that contains the CFLDAP tag I get the

Re: cfmail

2000-07-13 Thread Todd Ashworth
If you are trying to end E-mail from one machine to another machine using a 3rd machine as a go-between, your messages won't make it if the machine is set not to relay mail. If you have access to the mail server, you might want to see if setting up a trusted domain for the domain you are trying

CF Server halts

2000-07-13 Thread Neil Robinson
I'm getting the following errors in the server.log file, they're ocurring on no particular template or time interval, and the same error happens on two seperate servers. Both are running NT4/IIS4/sp6a and CFserver 4.5.1. and primarily use an Oracle 7.3 ODBC connection.

Re: cfmail

2000-07-13 Thread Justin v0.9 MacCarthy
Did you check the logs? Maybe the mail server you are using is not allowing you to relay mail? The logs are located in c:\cfusion\logs\ If you need an alternative: Have a look at the www.coolfusion.com They have a email server for posting mail at $70 ( I think ) which is far better than the

RE: cfmail

2000-07-13 Thread Tim Bahlke
The mail script is on the machine that I am referencing with Server="server". I am just using my email as the sender. And now I have changed it to go to me and come from someone else (address local to the server housing the script) for testing purposes. Tim Bahlke, CIFO

RE: cfmail

2000-07-13 Thread Conrad, Christopher
put the your mail server "server1.clicktex.com" into your CF admin mail settings and try to verify. Chris Christopher Conrad Victoria's Secret Catalogue http://www.VictoriasSecret.com Senior.Programmer.Analyst 614.337.5653 [EMAIL PROTECTED] -Original Message- From: Tim Bahlke

Re: searches failing...help

2000-07-13 Thread Chris Ivey
Miles, A couple of ideas here. First, are you wanting to perform an exact search or a wildcard search? If you want a wildcard search, you should say something like: CFQUERY Name="knowledge" DataSource="ccmast" select id, entered_date, synopsis, knowledge from nxsknow where knowledge

CFLOCK and Client Variables

2000-07-13 Thread Ruben Chadien
Should Client variables be locked, arent they the nearly same as session varibles ? If they should what scope should be used in the CFLOCK tag ? if you use the session scope you will have to enable sessionmanagment... /Ruben Chadien

RE: What are you using instead of IDENTITY...Part II

2000-07-13 Thread paul smith
And we learn new cultural idioms, too! best, paul At 12:41 AM 7/13/00 -0400, you wrote: can't beat it with a stick.. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

OT: USMINT web site

2000-07-13 Thread cfm
Hey, Someone a long time ago said they had done some work on the USMINT site. If you were the one could you email me at [EMAIL PROTECTED]? Thanks, Bill Kaigler -- Archives:

RE: Domain specific cookies with CFCOOKIE

2000-07-13 Thread Bud
On 7/13/00, Philip Arnold - ASP penned: Because you're adding the "." in the domain, a domain name without that is not within the same range - try it without the dot - I know it's not how it's meant to be built, but it might work My DNS doesn't point to non-www. domains for my sites, so I can't

RE: 100% frame in Netscape

2000-07-13 Thread Hoffman, Joe (CIT)
I'm sure I'm not the only one who has run into this before. Show us the code where you define the frames. Just can remember at the moment which attribute from the CFS wizard makes NS choke. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology

Spectra Questions

2000-07-13 Thread Frank Mamone
I know the download page says that Spectra should run on CF Enterprise. The thing is I'm only evaluating the product to get a general feel of what it can do. It seemsed to install properly on my NT 4 workstation with CF Eval. The problem occurs when I try to run the webtop. It doesn't recognize

Re: 100% frame in Netscape

2000-07-13 Thread Dave Hannum
OK, here it is. Like I said, works fine in IE but NS won't load the FRAME SRC. HTML HEAD TITLETitle Goes Here/TITLE /HEAD !-- frames -- FRAMESET ROWS="*" FRAME NAME="cfug" SRC="http://www.myserver.com/directory/index.cfm" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="auto" FRAMEBORDER="no"

RE: CF Server halts

2000-07-13 Thread Hoffman, Joe (CIT)
C:\net helpmsg 232 The pipe is being closed. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: Neil Robinson [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000 9:14

Form Loading

2000-07-13 Thread Russell, Bonnie
How do you force a form to completely load before letting the user press the submit button? I haven't found much in my documentation yet and the Allaire search isn't working :\ Thanks Bonnie [EMAIL PROTECTED] --

RE: CFLOCK and Client Variables

2000-07-13 Thread Cameron Childress
No. Although client vars do appear to have very similar functionalities to session vars: Session, Application, and Server variables are all stored in RAM. Client vars are typically best stored in a database. Because of this, client vars do not need to be locked. -Cameron

RE: Spectra Questions

2000-07-13 Thread Cameron Childress
That error would seem to indicate that you are not running version 4.5. Last time I checked, it actually requires 4.5 Ent (eval should work), not version 4.x. Either way, it ain't gonna work without the Enterprise version. Those requirements aren't there for nuttin. -Cameron

Re: 100% frame in Netscape

2000-07-13 Thread Birgit Pauli-Haack
Hello Dave, Netscape would need 100 % :-)) write this frameset rows="100%,*" That'll work Birgit Thursday, July 13, 2000, 10:10:10 AM, you wrote: OK, here it is. Like I said, works fine in IE but NS won't load the FRAME SRC. HTML HEAD TITLETitle Goes Here/TITLE /HEAD !-- frames

RE: cfmail

2000-07-13 Thread Tim Bahlke
I did verify the connection to server1.clicktex.com through the administrator. Yesterday, when I was sending (or trying to send) the test message I was getting no error and nothing was showing up in the logs, even hours after. However, this morning I do have log entries. How come the delay?

Re: CFLOCK and Client Variables

2000-07-13 Thread Dave Hannum
Where is the best reading on CFLOCK and Session/Applicaiton/Server variables? Dave = "What we need is a list of specific unknown problems we will encounter" David Hannum Web Analyst/Programmer Ohio University [EMAIL PROTECTED] (740) 597-2524 - Original

cfmail

2000-07-13 Thread Tim Bahlke
Can I have the 'TO' and 'From' point to the same address? With what I am trying to accomplish, is doesn't mean a hill of beans who the message comes from ... it's just really a notification that something has happened. Thanks in advance Tim Bahlke, CIFO thinkcreate.com p.

RE: CF COM

2000-07-13 Thread Zachary Bedell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To the best of my knowledge (and COM is my friend, so I think this is accurate), you can't possibly have a .exe component run inproc. Under Windoze, ALL EXEs run as their own process and ALL DLLs run in somebody else's process. As far as I

Re: Find a date from a given date

2000-07-13 Thread Jacob
Got it. If i was to turn back one more page I would have seen DateAdd... Jacob At 11:52 AM 7/12/00 -0700, you wrote: How can I find the date 180 days from a give date? For example, if I am given the date 05/16/00, I want to return the date of 11/16/00. I have tried using DateDiff for a

cfpop error

2000-07-13 Thread Jason Egan
I keep getting this error when retrieving mail with cfpop - sometimes email is retrieved, (5, 2, 10, sometimes 30) then I get the error: unknown exception condition CFMLInterpreterImp::executePCode Anyone know why? thank you, je

RE: Domain specific cookies with CFCOOKIE

2000-07-13 Thread Chris Evans
Bud, Cookies cannot be read from a different domain than where they are set. This is a security precaution built into the cookie specification. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000

email probs

2000-07-13 Thread Duane Boudreau
Hi All, I have a client that is having email issues. On our dev servers everything works a-okay. On their servers everything goes to pot. I'm pretty sure that this is an email server configuration issue but I am definitely not an email server guru (even by the wildest stretch of the

Re: searches failing...help

2000-07-13 Thread miles
Hi, I wanted to thank everyone for chipping in on this one... you gave me some good ideas and eventually solved my problem, first I what I needed was a form precursor to the '#search_string#' because it was a form...secondly swapping out the = for a LIKE and a coupla % signs did the trick in

Moreover News tag?

2000-07-13 Thread Adrian Cooper
Is there a tag out there to get Moreover news? Thanks. Adrian Cooper. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: 100% frame in Netscape

2000-07-13 Thread Dave Hannum
Thanks Birgit, that works except for a small blank frame at the bottom now. How do I get rid of that? (or can I?) Dave - Original Message - From: Birgit Pauli-Haack [EMAIL PROTECTED] To: Dave Hannum [EMAIL PROTECTED] Sent: Thursday, July 13, 2000 10:18 AM Subject: Re: 100% frame in

RE: Form.Fieldnames Missing

2000-07-13 Thread Dave Watts
1) If you don't put METHOD="post" (I suppose METHOD="get" works too) in your opening FORM tag, the form variables get passed in the URL instead of the form. Goofy, huh? If you use METHOD="GET", your variables will be passed via the URL. Variables within the Form scope have been received from

Re: cfmail

2000-07-13 Thread Ken Wilson
How come the delay? Does CF server hold the messages to send out until a certain number are spooled or until a specific amount of time You can control the frequency that it sends mail via a setting in CF Admin...spool interval setting I think. Seems like the default is set for every 60

RE: Spectra Questions

2000-07-13 Thread Raymond K. Camden
Spectra works on CF 4.01, but not CF 4.0. And yes, Enterprise is needed. === Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified Instructor and Member of Team Allaire Email : [EMAIL

Re: cfmail

2000-07-13 Thread Todd Ashworth
Yes. Todd Ashworth - Original Message - From: "Tim Bahlke" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Sent: Thursday, July 13, 2000 10:24 AM Subject: cfmail | Can I have the 'TO' and 'From' point to the same address? With what I am | trying to accomplish, is doesn't mean a

Re: cfmail

2000-07-13 Thread Sean Renet
yes you can. I do it to test mail servers. - Original Message - From: "Tim Bahlke" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Sent: Thursday, July 13, 2000 7:24 AM Subject: cfmail Can I have the 'TO' and 'From' point to the same address? With what I am trying to accomplish, is

Re: cfmail

2000-07-13 Thread Billy Cravens
Yes. I do it all the time. -- Billy Cravens [EMAIL PROTECTED] Tim Bahlke wrote: Can I have the 'TO' and 'From' point to the same address? With what I am trying to accomplish, is doesn't mean a hill of beans who the message comes from ... it's just really a notification that something

Re: Form Loading

2000-07-13 Thread Billy Cravens
You could write a JavaScript function that runs through a long loop, say, 1 ms, and put on onSubmit action on the form. Not elegant, but it could work. You could even put some sort of a nifty message at the top: "Form initializing ." -- Billy Cravens [EMAIL PROTECTED] "Russell,

Re: good simple web board been done?

2000-07-13 Thread James Smith
Both examples of well written boards with good functionality. All well and good but 1) where can I get a copy? 2) How much does it cost? - Original Message - From: "Duane Boudreau" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, July 11, 2000 1:21 PM

RE: CFLOCK and Client Variables

2000-07-13 Thread Cameron Childress
Where is the best reading on CFLOCK and Session/Applicaiton/Server variables? A lot of people don't look there, but the Allaire Knowledge Base has a wealth of information and data on configuration and usage. The following article would probably help you out a great deal:

RE: CFLOCK and server variables

2000-07-13 Thread Dave Watts
Using the literal, like this: cflock name="myapplication" etc... makes sense to me given my understanding of cflock; does anyone understand why Allaire Tech support explicitly recommends cflock name="#application.applicationname#" etc.. instead? Well, I think that when they introduced

Re: Moreover News tag?

2000-07-13 Thread Dave Hannum
Below is somehting I use (someone on the list here - sorry, I can't remember who - helped me with it). It grabbs Moreovers headlines, dumps them into a database to load locally. I use a scheduled script to update the headlines hourly. You set your "endrow" attribute in the CFLOOP to however

RE: CF COM

2000-07-13 Thread Steve Bernard
I'm not sure exactly what you mean by registering the component with NT's Scheduler but, if you mean that you have the component started by the Scheduler Service be aware that the component will be running under the System Account. This will give the component, and thereby and script calling it,

OT: A join table question

2000-07-13 Thread Sean Daniels
Here is the situation, I'm looking for advice on how to proceed. I currently have two tables: tableA and tableB. I have a thrid table that defines relationships between records in tableA and tableB. So the third table, call it linkAB has the fields: id (PK) tableA_id (fk) tableB_id (fk) status

Re: cfpop error

2000-07-13 Thread Sean Renet
I only get that when its time to restart the CF Server service because I am out of RAM - Original Message - From: "Jason Egan" [EMAIL PROTECTED] To: "Cf-Talk" [EMAIL PROTECTED] Sent: Thursday, July 13, 2000 7:28 AM Subject: cfpop error I keep getting this error when retrieving mail

Re: Moreover News tag?

2000-07-13 Thread Rey Bango
Yep. Its called NewsFuse. You can get it at FusionTrio.com Rey Certified Allaire Instructor Member of Team Allaire "A browser's beauty, at its heart, is its usefulness as a *TOOL*." - Original Message - From: "Adrian Cooper" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July

CFIF and CFELSE

2000-07-13 Thread Willy Ray
This is a MIME message. If you are reading this text, you may want to consider changing to a mail reader or gateway that understands how to properly handle MIME multipart messages. --=_2C7475F2.A6C7A9E6 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable

RE: good simple web board been done?

2000-07-13 Thread Jeff Fongemie
Thanks everyone. I actually found a free open source web board that is very well commented and easy to modify! Check it out at http://www.activefeedback.com/af/order/order1.cfm Thanks, Jeff -Original Message- From: James Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000

RE: ? short circuits my # !

2000-07-13 Thread Anthony Israel-Davis
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFECE0.47B4E972 Content-Type: text/plain; charset="ISO-8859-1" Thank you everybody! That worked great. A bit of a head slap on

RE: Domain specific cookies with CFCOOKIE

2000-07-13 Thread Bud
On 7/13/00, Chris Evans penned: Bud, Cookies cannot be read from a different domain than where they are set. This is a security precaution built into the cookie specification. Then what exactly in the Domain attribute for in cfcookie? I'm not quite sure where the security hazard comes in

RE: good simple web board been done?

2000-07-13 Thread Duane Boudreau
James (and everyone else who inquired but I haven't gotten back to yet), Both examples of well written boards with good functionality. All well and good but 1) where can I get a copy? I can zip it up and send it out tonight 2) How much does it cost? $49 with source code Duane

Re: cfmail

2000-07-13 Thread Ken Wilson
Billy Cravens [EMAIL PROTECTED] Hey Billy, Does Sabre actively use CF now? Or just offer it in their web hosting packages? I tend to deal primarily with Travel Agencies and most are Sabre agencies. Do you guys offer any way to tie into the rez system beyond the generic Web Reservations/ogo

RE: CFLOCK and Client Variables

2000-07-13 Thread Gary McNeel, Jr.
You may also want to get the book "Mastering Cold Fusion 4" by Danesh and Motlagh. I has a pretty good section on using this and several other tags that are not as well covered in Mr. Forta's books (which I have all of too ;)). Each of the authors cover things with different styles, and as a CF

RE: CFLOCK and Client Variables

2000-07-13 Thread mherbene
Only problem is, Dave Watts, at least, disagrees with this article where 4.0x is concerned. -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 13, 2000 10:57 AM To: [EMAIL PROTECTED] Subject: RE: CFLOCK and Client Variables Where is the best

Re: CFIF and a Memo field in access

2000-07-13 Thread Francis NART
same problem unfortunately ! At 01:51 13/07/00 -0700, vous avez écrit: Try CFIF Not(Len(Trim(reponse_critique))) At 10:26 AM +0200 7/13/2000, Francis NART wrote: I want to test if a memo field is empty in access. I tried this : CFIF reponse_critique IS ""... or this CFIF

Re: Moreover News tag?

2000-07-13 Thread Avi Flax
Adrian, I may be writing one in the next week or two. If you'd like, I may be able to make it available to you. Avi At 03:35 PM 7/13/00 +0100, you wrote: Is there a tag out there to get Moreover news? Thanks. Adrian Cooper.

Re: problem with primary key

2000-07-13 Thread Heather Haindel
Double check that your record actually exists. select id from table where id=x (where x is the id you are trying to update) --- gregg Kachel [EMAIL PROTECTED] wrote: Hi, haveing a crisis here. Everything was working fine earlier, now all of a sudden when I try to do an update on my

Re: Form.Fieldnames Missing

2000-07-13 Thread Karl Simanonok
Thanks for the insight, Dave. I've just always used POST, and I know there are some cases when you want to use GET, but I'm not clear on why. What's the difference? (In practical terms, that is). Regards, Karl Simanonok Dave Watts wrote: 1) If you don't put METHOD="post" (I suppose

RE: Spectra Questions

2000-07-13 Thread Cameron Childress
It says Enterprise 4.01 to be exact. oops -Cameron Cameron Childress McRae Communications p. 770-460-7277 x.232 f. 770-460-0963 -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

Re: 100% frame in Netscape

2000-07-13 Thread Birgit Pauli-Haack
Hello Dave, the whole thing now:-)): FRAMESET ROWS="100%,*" scrolling="no" frameborder="no" framespacing = "0" border="0" FRAME NAME="cfug" SRC="http://www.myserver.com/directory/index.cfm" SCROLLING="no" marginwidth="0" marginheight="0" /FRAMESET hope that works now... Kind of gets me

For those of us Desperately in Need of CFMail Help

2000-07-13 Thread Jonathan McGuire
This is a multi-part message in MIME format. --=_NextPart_000_00F0_01BFECC7.FB370FC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I know that this has been bounced around some, but after much searching, = I have been unable to find any

groupcasesensitive attribute question

2000-07-13 Thread jonathan hamner
If I use the following code, I get an error. cfmail to="[EMAIL PROTECTED]" from="[EMAIL PROTECTED]" subject="Test Submitted" groupcasesensitive="yes" #message# /cfmail But, if I remove groupcasesensitive="yes" , then I don't get an error. So when I use the following

RE: A join table question

2000-07-13 Thread mherbene
I've used the approach you illustrate (sub-querying for Max()) before, and it works ok for us, but I agree that it seems likely to be less than ideal from a performance standpoint. One amendment of your iscurrent strategy that might make it more maintainable would be to use a trigger that

Variable IN a list? How to check?

2000-07-13 Thread Angél Stewart
How would i write this correctly in CFML? Cfif #Deptid# IN #session.privileges# Of course I want to check if the list of values in DeptID are all included in the list of values in the session.privileges list of values. Sooo.. deptid may be "11001, 12000,13000" and session.privileges may be :

Need Mail Help Too!!!

2000-07-13 Thread Julie McKellar
Can anyone tell me what this means from the mail log file: "Error","TID=259","07/13/00","11:59:51","Failed to send the spooled mail file, C:\CFUSION\MAIL\spool\2CF.cfmail. SMTP server replied "Internal error: Pending mail operations must be completed." I haven't been able to send any mail

RE: Form.Fieldnames Missing

2000-07-13 Thread Dave Watts
Thanks for the insight, Dave. I've just always used POST, and I know there are some cases when you want to use GET, but I'm not clear on why. What's the difference? (In practical terms, that is). If you're passing small amounts of data back to the server, a GET request is simpler for that

RE: Domain specific cookies with CFCOOKIE

2000-07-13 Thread Philip Arnold - ASP
Cookies cannot be read from a different domain than where they are set. This is a security precaution built into the cookie specification. They can for sub-domains, so if you have www.mydomain.com and search.mydomain.com, you can set the cookies for the domain range of ".mydomain.com" and

RE: Form Loading

2000-07-13 Thread Philip Arnold - ASP
You could write a JavaScript function that runs through a long loop, say, 1 ms, and put on onSubmit action on the form. Not elegant, but it could work. You could even put some sort of a nifty message at the top: "Form initializing ." One word - YUK! Why not just set a timeout to be

RE: Form Loading

2000-07-13 Thread Dave Watts
How do you force a form to completely load before letting the user press the submit button? I haven't found much in my documentation yet and the Allaire search isn't working :\ If the submit button is the last element in the form, you shouldn't really have a problem. In any case, you can use

RE: good simple web board been done?

2000-07-13 Thread Eric Dawson
yeah. it's my fave so far. Eric From: "Jeff Fongemie" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: good simple web board been done? Date: Thu, 13 Jul 2000 11:54:05 -0400 Thanks everyone. I actually found a free open source web board that is very well

RE: CFIF and CFELSE

2000-07-13 Thread Dave Watts
There Must be something I don't know about CFIF. I want to check if a URL variable exists. If it does, I want to add the same variable to the URL of the action of a CFForm, basically so I can check for it on the action page, and use it to re-route a cflocation. Here's the problem. I have a

Export to Access

2000-07-13 Thread Miriam Hirschman
A client of mine wants to know if there is a way that I can export a CF page to access or excel?? I would appreciate any info Thanks,   ---miriam -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

  1   2   >