OT: Basic Authentication: Logging off

2000-08-26 Thread Helge Hetland
We have a large site using Basic Authentication to log on the users to the system. When the user is logged in we use the Remote_User variable to authenticate the user to our DB and give him the content that he is "entitled to". We (of course) need to enable this user to logoff the recource (and

Re: Basic Authentication: Logging off

2000-08-26 Thread Howie Hamlin
Once a browser has been authenticated to a site it will continue to send the same credentials over and over (in the HTTP headers) until the web server responds with a "401 Unauthorized" response. So, bearing that in mind, you need to have the web server stop accepting the credentials and send a

repost: query about consulting partners

2000-08-26 Thread Marc Garrett
Hi, I know there are quite a few Allaire consulting partners on the list. I was hoping that someone could take a moment and answer a question about the skills needed to pass the Allaire approval. I have read the information at Allaire's site. Does anyone know, roughly, the number of sites needed

ColdFusion and Javascript

2000-08-26 Thread sebastian palmigiani
How do you have ColdFusion interact with a Javascript function for opening a new window so that the content of the new window changes based on the URL variable? The following code does not work. The same ID gets passed to the new window for each link created in the second output. Can this be

Re: Basic Authentication: Logging off

2000-08-26 Thread Jim McAtee
Sounds as though you're saying that once a browser receives a 401 response, it will no longer send the previously used credentials. Now, say the user "logs off", but fails to log in as someone else. Would the browser send the original, valid credentials if the user goes back (in the same

Re: Basic Authentication: Logging off

2000-08-26 Thread Howie Hamlin
The browser will continue to send the same credentials until it is restarted or receives an "Unauthorized" response from the server. Regards, Howie - Original Message - From: "Jim McAtee" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 12:34 PM Subject: Re:

Re: ColdFusion and Javascript

2000-08-26 Thread Dick Applebaum
Try something like: SCRIPT cfoutput query="Events" function CreateWindow(myProgramName) { msgWindow=window.open("ShowEvent.cfm?ID="+"myProgramName", "displayWindow","toolbar=no,width=200,height=200,left=80,

Re: Basic Authentication: Logging off

2000-08-26 Thread Jim McAtee
Say a user is logged in as "howieh" at the following URL http://www.somesite.com/securecontent/ Then you present a "log out" button which directs them to http://www.somesite.com/logout/logout.cfm and the CF template returns a 401 header (or do it with Perl if CF is unable to return this type

CFFTP acting weird on 4.5.1 on NT

2000-08-26 Thread John McKown
This is a multi-part message in MIME format. --=_NextPart_000_0001_01C00F5F.4FF5EA40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit CF Experts... I have a problem that I hope you can give me some advice on... I am using CFFTP to upload some images

Specifying Number of Records output per page of results

2000-08-26 Thread AustralianAccommodation.com Pty. Ltd.
I am wanting to be able to set the number of records that are outputted on each page of search results and then have the remaining records outputted on subsequent pages each page displaying 10 records at a time same way the search engines do any advice / assistance would be appreciated Kind

RE: Yet another filesize question

2000-08-26 Thread Andrew Scott
No, No, No and I did answer this last time it was posted. The way it works is that it gets attached to the form being submit as binary data, there might be a way to check this in Javascript (not a JS guru so not sure, would mean to many security issues I believe if this was allowed) Perl is

RE: IsDefined() problems

2000-08-26 Thread Andrew Scott
Yeah you are doing it wrong:-) Try this instead:- cfparam name="var" default="" cfif var neq "" ... do something ... /cfif -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED]] Sent: Friday, 25 August 2000 12:57 AM To: Cf-Talk Subject: IsDefined() problems Just

Re: Specifying Number of Records output per page of results

2000-08-26 Thread WBB
Allaire's Exchange Gallery is full of tags that will do this: http://devex.allaire.com/developer/gallery/ I am wanting to be able to set the number of records that are outputted on each page of search results and then have the remaining records outputted on subsequent pages each page

RE: weird problem

2000-08-26 Thread Andrew Scott
Simple before doing the cfset check the value of quantity, if its null then put a zero in the array intead of throwing the returned value from the query:-) -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Friday, 25 August 2000 2:54 AM To: [EMAIL PROTECTED] Subject: weird

RE: Urgent help required....

2000-08-26 Thread Andrew Scott
Are you using source safe, I have seen this happen before:-) -Original Message- From: kailash [mailto:[EMAIL PROTECTED]] Sent: Friday, 25 August 2000 4:22 AM To: [EMAIL PROTECTED] Subject: Urgent help required Hi! friends... I am getting this error... has anyone faced this

RE: Cookies

2000-08-26 Thread Andrew Scott
Thats correct, a cookie gets stored in one file and is a certain size. Now remember that there are system cookies that get set by CF and Spectra so this limits the cookies to around 15 or something:-) Never read the article, but it should have listed what cookie amount can be used:-)

Re: weird problem

2000-08-26 Thread AustralianAccommodation.com Pty. Ltd.
ummm can I have that in English please - Original Message - From: "Andrew Scott" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 27, 2000 4:31 AM Subject: RE: weird problem | Simple before doing the cfset check the value of quantity, if its null then | put a zero in the

Re: Urgent help required....

2000-08-26 Thread AustralianAccommodation.com Pty. Ltd.
what is source safe - Original Message - From: "Andrew Scott" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 27, 2000 4:32 AM Subject: RE: Urgent help required | Are you using source safe, I have seen this happen before:-) | | | -Original Message- | From:

Re: Urgent help required....

2000-08-26 Thread AustralianAccommodation.com Pty. Ltd.
you never did tell me if you have had a look at my site or not lol - Original Message - From: "Andrew Scott" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 27, 2000 4:32 AM Subject: RE: Urgent help required | Are you using source safe, I have seen this happen before:-)

RE: Password Protecting a DB/DSN

2000-08-26 Thread Andrew Scott
You don't say what DB you are using but every DB can be password protect, now in a shared hotsing environment the directory you have your files should be that you are the only one who has access to these files to read anyway:-) So setting variables in application.cfm or somewhere else, then using

RE: Urgent help required....

2000-08-26 Thread Andrew Scott
Its a Microsoft application that allows for developers to put code away and retrieve back revisions very good for 1-100 developers working on the same project. -Original Message- From: AustralianAccommodation.com Pty. Ltd. [mailto:[EMAIL PROTECTED]] Sent: Sunday, 27 August 2000 4:26 AM

RE: weird problem

2000-08-26 Thread Andrew Scott
cfset QuantityTotal = ArrayNew(1) cfoutput query="GetNumbers" cfif IsNumeric(Quantity) cfset QuantityTotal[GetNumbers.CurrentRow] = #Quantity# cfelse cfset QuantityTotal[GetNumbers.CurrentRow] = 0 /cfoutput -Original Message- From: AustralianAccommodation.com Pty. Ltd.

RE: Urgent help required....

2000-08-26 Thread Andrew Scott
No I haven't as yet, been very busy with my own work Don't browse too many sites these days unless I am looking at allaire or resource sites. -Original Message- From: AustralianAccommodation.com Pty. Ltd. [mailto:[EMAIL PROTECTED]] Sent: Sunday, 27 August 2000 4:27 AM To: [EMAIL

Big Search Query problem!

2000-08-26 Thread morris johnston
Hi people, I attempting to build a search facility on my site to search a database. At the moment I have a 'search' form consisting of 8 fields (6 select drop down menu choice + 2 text input). The user is allowed to select / input any number of fields for the search criteria. The values are

UK Moblie Intranet

2000-08-26 Thread Rif Kiamil
Dear All, Can any body help. On are Intranet we want to be able to send text message to UK moblie phones. Can somone help ? Rif Kiamil Head of Network Admin / Project Coordinator of Intranet Web Based Applications JJ Fast Food Distribution LTD Tele 020 8885 9218 / Fax 020 8885 9214

RE: Big Search Query problem!

2000-08-26 Thread Rif Kiamil
If u try running the Drill Down Wizard, From CF Studio and look @ the code it make. Hope this helps -Original Message- From: morris johnston [mailto:[EMAIL PROTECTED]] Sent: 26 August 2000 16:51 To: Cf-Talk Subject: Big Search Query problem! Hi people, I attempting to build a search

pictures on studio

2000-08-26 Thread Jim Taylor
This is a multi-part message in MIME format. --=_NextPart_000_0007_01C00F5A.09717E40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Can you preview gifs or jpgs in studio if so where do you set it up EARN $1,000 EVERY TIME SOMEONE

Re: pictures on studio

2000-08-26 Thread Jim Taylor
No it is a signiture file do you know what that is Btw do you know if you can view jpgs with studio - Original Message - From: "Rif Kiamil" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 12:32 PM Subject: RE: pictures on studio What is the message @

Re: pictures on studio

2000-08-26 Thread Jim Taylor
btw change your mime type to text please - Original Message - From: "Rif Kiamil" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 12:32 PM Subject: RE: pictures on studio What is the message @ the bottem of your e-mail.. Is this SPAM ? -Original

Re: UK Moblie Intranet

2000-08-26 Thread Jim Taylor
do you know about WAP - Original Message - From: "Rif Kiamil" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 11:56 AM Subject: UK Moblie Intranet Dear All, Can any body help. On are Intranet we want to be able to send text message to UK moblie phones. Can

RE: Big Search Query problem!

2000-08-26 Thread Al Musella, DPM
There is a much simpler way: Something like: cfquery name="search" datasource ="db" Select ID, Descr from table 1 where 1=1 cfif colum1 is not '''AND f1 ='#colum1#' /cfif cfif colum2 is not '''AND f2 ='#colum2#' /cfif cfif colum3 is not '''AND f3 ='#colum3#'

RE: Was Problem with CFFTP - Reposted as Text Mime Type :)

2000-08-26 Thread John McKown
CF Experts... I have a problem that I hope you can give me some advice on... I am using CFFTP to upload some images into a web site directory. It worked great for a couple of days and now it is not. The code did not change. I saw a post in the Allaire Support Forums explaining that there is a

Re: pictures on studio

2000-08-26 Thread Todd Ashworth
Yes. I can't get my CF Studio open to refresh my memory on the details right now, because the #%^@ thing keeps crashing on me, but there is an option to view thumbnails somewhere in one of the menu options. This will show you a small version of all of your image files, for the folder you are

Re: Big Search Query problem!

2000-08-26 Thread David Hannum
You're doing too much coding. Let ColdFusion do the work for you. Try this: CFQUERY NAME="Search" DATABASE="myDataBase" SELECT * FROM myTable WHERE 0 = 0 CFLOOP INDEX=ThisField LIST="#FORM.FIELDNAMES#" CFIF #Evaluate(ThisField)# IS NOT "" AND #ThisField# = #Evaluate(ThisField)#

Accuweather 3 Tag fails...

2000-08-26 Thread Chris
Anyone else have the accuweather 3 tag just generate blank output currently? Anything in the tag need changed, or is a new version available? CW -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Re: Accuweather 3 Tag fails...

2000-08-26 Thread Fred T. Sanders
Yes email me off list and I'll send it to you. Allaire managed to loose my login name and password to update the tag entry. fred - Original Message - From: "Chris" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 8:41 PM Subject: Accuweather 3 Tag fails...

RE: Accuweather 3 Tag fails...

2000-08-26 Thread Chuck Hergenroeder
Works fine for me. -Original Message- From: Chris [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 26, 2000 8:42 PM To: [EMAIL PROTECTED] Subject: Accuweather 3 Tag fails... Anyone else have the accuweather 3 tag just generate blank output currently? Anything in the tag need changed,

multiple update

2000-08-26 Thread Mark Davies
Can someone point me in the direction of the right tag/manual entry. I'm trying to do a multiple, I guess looping, update, and dont' know where to start looking. For example, I call a list of 15 employees with each employee displayed on one row on the page. Each row has a form_text_field that

Re: multiple update

2000-08-26 Thread Erika Foster
Nate Weis has a custom tag called "cf_queryrepeater" that I've used for that reason many times. The link I have to Nate's custom tags doesn't seem to be working for me tonight (http://i2.icesinc.com/nate/taggallery/). I can't seem to find it listed in Allaire's tag gallery - but if you can't

RE: Standard Source Documentation System: A new thread

2000-08-26 Thread Ken Wilson
Great thread and very valuable. However, could we stop the cross-posting perhaps to multiple lists? I subscribe to both recipient lists and, with filters in place for each, I end up with four copies of every message in the thread. Very annoying. Ken -Original Message- From: Lee

Re: Standard Source Documentation System: A new thread

2000-08-26 Thread Fred T. Sanders
Well, I think the first thing is quit cross posting, and sending duplicates. Secondly, the word standard just doesn't sit well with me. If I'm going be accused of proposing something by golly I'm going to do it, and you can't stop me and you probably will groan when I'm done, hopefully anyway.

Re: Standard Source Documentation System: A new thread

2000-08-26 Thread Fred T. Sanders
I'd personally like to apologize for the cross post when I hit reply I didn't pay attention (its late) to the TO: field. This was not supposed to come to this particular list. Sorry guys Fred -- Archives:

Re: Standard Source Documentation System: A new thread

2000-08-26 Thread Lee Borkman
Okay, I have been posting to FuseBox and CF-talk lists, because I think the topic is about ColdFusion development, not just FuseBox. Unfortunately, only the FuseBox lists members seem interested in the topic. SO... I am making this brave move and posting ONLY to CF-Talk. I suggest that we

Re: Standard Source Documentation System: A new thread

2000-08-26 Thread paul smith
I worked in Regulatory Space a bit, and one way we used to get around issues like this is to call it a "Guide" not a "Standard" best, paul At 01:59 PM 8/27/00 -0500, you wrote: Once a general standard (I have no fear of this word) for ColdFusion

RE: Documentation System for Cold Fusion

2000-08-26 Thread Lee Borkman
Hey Guys!! I was born, raised, and now currently live and work in one of those 3rd World countries you are making light of. Kindly recall that this is an international mailing list. Lee Borkman Sydney, Australia ps, there was a discussion going on about CF documentation standards, but I seem

Standard Source Documentation System: A new thread

2000-08-26 Thread Lee Borkman
Hi all, Our old thread, "Documentation System for Cold Fusion", seems to have wandered, as old threads are wont;-) Perhaps we might start afresh. There seems to be some confusion about proposed standards, etc, especially since Fred denies having any proposed anything (I think). Let me lay out