CFHeader and jpegs

2001-06-05 Thread Tania.Lawrie
Hi, I'm developing an application that needs to protect images from directory snoopers and yet remains relatively easy to maintain. I've decided to use the CFCONTENT tag in conjuction with the CFHEADER tag in order to push out images onto a page. However, the boss has decreed that users should

RE: CFHeader and jpegs

2001-06-05 Thread Thomas Chiverton
> Question: Is there anything that could confuse a header into > thinking that it should be publishing a jpg file as a bitmap? If your using IE - its Just Broken in that regard, though a few posts on here in the last few weeks concerned with donwloading files may help - check the archives. ~~

Re: CFHeader and jpegs

2001-06-05 Thread Peter Janett
Try removing the line altogether. Another idea would be do mark the jpgs as "image/jpeg", instead of "image/pjpeg". Maybe the browser doesn't like the progressive part of the jpg image type header. Just some random ideas, Peter Janett New Media One Web Services ==

RE: Sanity Check

2001-06-05 Thread Thomas Chiverton
> I think I can assign a relatively unique folder for each > upload under the > general Library folder. (Clever solutions for for folder names are > welcome. The first thought that comes to my mind is a folder name > combining date & time.) If you can guranty constraints ike peeps only do o

Re: Sending MP3's Through CF

2001-06-05 Thread Michael Lugassy
Sounds like a cool idea, can you tell me a bit more about it? can I see it? Thanks, Michael Lugassy IT/WEB Specialist Interactive Music Ltd. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bk

security etc

2001-06-05 Thread Will Swain
Hello all, I was just wondering what everyones thoughts were on secure enviroments for online payments solutions? Where would you keep a database that was holding secure credit card information? Is SSL secure enough? Would you have a firewall, or is this even possible? Would you encrypt the infor

Apology: (OT)

2001-06-05 Thread Darren Adams
Hi Guys, I just wanted to appologise for my out of office message. I did go to the website an unsubscribe but apparantly I am still listed. Sorry for giving you all alot of grief !! Hope it didnt p*ss you off too much. Thanks Darren Adams Web Developer Marketing Department Systems Union O

list and looping problems

2001-06-05 Thread Seamus Campbell
Hi - I have a text file in the below format: 999|No Group Assigned | AC |Activity| BF |Brain Food | BT |Books On Tape | etc | I want to insert/update this into a database table wit

RE: DTS from Store Procedure MSQL 7.0

2001-06-05 Thread Cruz, Joseph
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Check out xp_cmdshell and the dtsrun command-line tool. That might get you where you want to be. :) Joe == Joseph Cruz Programmer/Analyst Wharton Computing 3620 Locust Walk, Suite 400 Philadelphia, PA

Re: list and looping problems

2001-06-05 Thread Tim Painter
You can also use the pipe as the delimiter. This code uses that and steps over every other list element to get the group code and does the same to get the description. The cfif just makes sure you don't have a stray | at the end of the list. Group Code is : #ListGetAt(groupText,id

Re: list and looping problems

2001-06-05 Thread Marc Garrett
Seamus, I'm working on the same issue today. Out of curiousity, why don't you create an ODBC datasource and point it at the text file? Then you can read it like any other database. (I'm assuming you're on NT or Win2K). Regards, Marc Garrett - Original Message - From: "Seamus Campbell"

FW: 4.5 certification to 5.0

2001-06-05 Thread Arden Weiss
FYI -- The "word" from our favorite vendor about certification... Glad they finally are taking the proactive initiative to clear up confusion -- but DUH -- why not post it to the list directly... ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Orig

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Raymond Camden
It _shouldn't_ do that. The only time I saw that behaviour is when I started and aborted (by hititng Stop or Back) my test scripts multiple times. Did you do that? Or is this happening each and every time? === Raymond Camden, Pri

RE: 4.5 certification to 5.0

2001-06-05 Thread Andy Ewings
At last!.a definitive answer.cheers for this Arden. Best book this exam before the 14th then :-) -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: 05 June 2001 13:23 To: CF-Talk Subject: FW: 4.5 certification to 5.0 FYI -- The "word" from our favorite vendor

RE: DTS from Store Procedure MSQL 7.0

2001-06-05 Thread Michael Bruce
Check out www.cfcoment.com there is a great article about this exact thing. Mike -Original Message- From: Cruz, Joseph [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 7:56 AM To: CF-Talk Subject: RE: DTS from Store Procedure MSQL 7.0 -BEGIN PGP SIGNED MESSAGE- Hash: SH

CF5.0 Tag CFFlush

2001-06-05 Thread Jason Lees (National Express)
Hi All, I'm just evaluating Coldfusion 5.0, at the moment I'm experimenting with the new tag, But every time I get an error at the end of the page, Error attempting to store global client values. The amount of data you have stored in global client variables is too long. The Cookie header has

Re: list and looping problems

2001-06-05 Thread Marc Garrett
Tim, Thanks for posting that code. If you need to extract information from a text file, is it better to use CFFILE or to set up a DSN and query the file? Regards, Marc Garrett - Original Message - From: "Tim Painter" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday,

AW: CF5.0 Tag CFFlush

2001-06-05 Thread Ulf Unger
Hi Jason, I've read in the documentation that you can't use any ColdFusion-Tag that modifies the HTTP-Header (e.g. Cookies..) after you have used the . Hope that helps. Ulf -Ursprüngliche Nachricht- Von: Jason Lees (National Express) [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 5. Jun

OT: Creating file that can import into Outlook Task List

2001-06-05 Thread C. Hatton Humphrey
Hi folks, need to see if anyone has worked with or around this issue before. I have an internal task management application utility that the company that I work for has been working on and using for the last couple of years. It handles a large number of things, but is a stand-alone application (

RE: CF5.0 Tag CFFlush

2001-06-05 Thread Jason Lees (National Express)
Thanks, I've checked the code for that and there is nothing except standard CFML & HTML tags, ie no CFCookie, cflocation, or any other such tags. Just to check I used this on a page that is a 90% block. and still the same. Jason Lees National Express Email : [EMAIL PROTECTED] -Origina

Re: list and looping problems

2001-06-05 Thread Tim Painter
Come to think of it, I have never set up a DSN for a text file. I guess it all depends on how much interaction you are doing with the file -- if it is small enough, then I believe that cffile would be sufficient. If you are reading and writing back to it, the file is fairly large,have a number

Re: CF5.0 Tag CFFlush

2001-06-05 Thread David E. Crawford
If you are using client variables, and have specified cookies as storage, then you have an implied call to CFCOOKIE or a similar construct being included for you by CF. If you change your client variable storage to something other than cookie, it will probably work. DC - Original Message ---

RE: CF5.0 Tag CFFlush

2001-06-05 Thread Jason Lees (National Express)
Thanks, Just tried that, changed from a cookie to the Registry and it appears to be working a bit better. Whats the best way to store client vars, Registry or DB Table? Thanks. Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: David E. Crawford [mailto

RE: CF5.0 Tag CFFlush

2001-06-05 Thread Thomas Chiverton
> Whats the best way to store client vars, Registry or DB Table? Database, even more so if your on a Windows platform which will blue screen your server when the registery hits its maximum size. ~~ Structure your ColdFusion code with Fusebox. Get t

Re: list and looping problems

2001-06-05 Thread Marc Garrett
Tim, thanks again for your assistance. I'd be interested to see whether you think the code below is a good way to handle this issue. Seamus, here's some code I wrote this morning that deals with the same issue. It had not occurred to me to use CFFILE until I saw your code, so my approach was to c

RE: Multiple Application Variables

2001-06-05 Thread Daniel Lancelot
Are these sites on the same domain? - If they are on different domains, than the server will see each client as a different client - and so the session.dealerid will be held concurrently over the different sites. If they are on the same domains, you'll have to use some non persistent record of th

Re: Difference between CFStudio and CF/UltraDev 4

2001-06-05 Thread tom muck
If you purchase the Macromedia Cold Fusion 4.5 UltraDev 4 Studio you are essentially getting two separate programs for the price of one. There are many advantages to using UltraDev that are too numerous to mention here. In short, if you want to increase your productivity, you should use both pro

Shopping cart problem - no cookies, no deal

2001-06-05 Thread Michel Gagnon
Hi! I have created a web site that uses a shopping cart. I used the example in Ben Forta's book (2nd ed.), chapter 24. It states that the application.cfm checks to see if the client browser accepts cookies. If not, the CFID and CFTOKEN will be appended to all links in the application... It work

Custom error pages

2001-06-05 Thread Steve Vosloo
I need to create 2 custom error pages for an application. One is for 404 errors (page not found), and the other is for any other server errors. Armed with CFERROR and CFTRY/CFCATCH, does anyone have suggestions on how to achieve this? Thanks Steve Development Manager Vardus Internet Solutions (S

OT: Simple JS FrameSet question and how to escape

2001-06-05 Thread CF-Talk \(SD Solutions\)
Hi, I have a frameset A and B. B is the contentframe. In this contentframe I have rotating banners (pictures) which I call with the following JS-Hyperlink call (within B, function-defining is in B): target="_top" obviously isn't working correct. The function banner is like: function banner(b

RE: Custom error pages

2001-06-05 Thread Dylan Bromby
you can specifiy your own custom error pages using IIS if you're running it. -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 7:51 AM To: CF-Talk Subject: Custom error pages I need to create 2 custom error pages for an application. One is for

Re: Shopping cart problem - no cookies, no deal

2001-06-05 Thread Paul Smith
I think there are typos in the printed version, check the CD. Did you add cfid/cftoken to each URL? best, paul At 11:52 AM 6/5/01 -0300, you wrote: >Hi! > >I have created a web site that uses a shopping cart. >I used the example in Ben Forta's book (2nd ed.), >chapter 24. It states that the

Re: Shopping cart problem - no cookies, no deal

2001-06-05 Thread Bud
On 6/5/01, Michel Gagnon penned: >Hi! > >I have created a web site that uses a shopping cart. >I used the example in Ben Forta's book (2nd ed.), >chapter 24. It states that the application.cfm >checks to see if the client browser accepts cookies. >If not, the CFID and CFTOKEN will be appended to

OT: javascript thumbnails

2001-06-05 Thread Michael Lugassy
Kinda OT, but I need help. I just finish designing a search page for images. the images are stored on a diffrent server and it's take time for them to appear (i.e - user see empty rectangles for a long period of time). can anyone suggest a way to display a "loading, please wait.." IMAGE I have in

RE: Custom error pages

2001-06-05 Thread Kelly Matthews
There are a number of ways. The FIRST thing you want to do if you have access is go CF administrator and then go to Settings. Then scroll down and fill in the Exact Path to your Missing Template Handler (for 404) and your site-wide error handler (for errors). Then you create the 2 pages you just

RE: Custom error pages

2001-06-05 Thread Thomas Chiverton
> I need to create 2 custom error pages for an application. One > is for 404 > errors (page not found), and the other is for any other > server errors. You can use the 'error template' part of the CF administrator to catch all CF errors. You will need to use your Web servers capabilities to c

RE: Sending MP3's Through CF

2001-06-05 Thread Richard Kuryk
Here is a little program that I wrote that you can add unc paths of shared mp3 and get a complete list of files! But I don't use cfcontent to stream them, I just point to the path and file name.

RE: Custom error pages

2001-06-05 Thread Steve Vosloo
Can I do that per website hosted on the box? > -Original Message- > From: Dylan Bromby [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 5:05 PM > To: CF-Talk > Subject: RE: Custom error pages > > > you can specifiy your own custom error pages using IIS if you're > running it

CFLOCK viability?

2001-06-05 Thread Steve Vosloo
I create a bunch of application scope variables within application.cfm - these will only be created once, and hardly ever change. In a custom tag I read those variables - and of course I need to lock that READ. Is it viable to put a CFLOCK of type READONLY around a big block of code (i.e. 170 lin

Re: javascript thumbnails

2001-06-05 Thread Ricq Pattay
Try the low resolution attribute of the IMG tag. Your low rez image can be a "Please wait" image and the regular image will be the actual image. I've not used this personally but NS and IE are said to support it even though it's not standard HTML. If you don't specify the height and width then

KILL THE COOK!

2001-06-05 Thread Michael Lugassy
Please try to look into this again. this thread has been reviewd and partially answered by many (actually 13 people) but still - no answer. can anyone try to help out? > I'm getting really frustrated from this CFCOOKIE thing. > Apparently, after I assign the cookie with Timeout="Never" the cookie

RE: Shopping cart problem - no cookies, no deal

2001-06-05 Thread Alii Design
You need to add the CFID and CFTOKEN to every URL link and form link. Rich -Original Message- From: Michel Gagnon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 10:53 AM To: CF-Talk Subject: Shopping cart problem - no cookies, no deal Hi! I have created a web site that uses a

Re: Custom error pages

2001-06-05 Thread Dylan Bromby
Yes. Using IIS 5 as the example, right-click on the web site from the list in the IIS console. Choose properties. Click the "Custom Errors" tab. You can do it for each site. On 6/5/01 8:17 AM, "Steve Vosloo" <[EMAIL PROTECTED]> wrote: > Can I do that per website hosted on the box? > > > >> -

RE: javascript thumbnails

2001-06-05 Thread Ron Hornbaker
> I just finish designing a search page for images. > the images are stored on a diffrent server and it's take time for them > to appear (i.e - user see empty rectangles for a long period of time). > > can anyone suggest a way to display a "loading, please wait.." > IMAGE I have > instead of those

RE: CFLOCK viability?

2001-06-05 Thread alistair . davidson
YOu might be better to do something like this - That way you lock the minimum amount of code for the minimum amount of time, and you're free to read from that local struct without having to worry about locking. HTH Cheers, Alistair Davidson Senior Web Developer Ro

Re: KILL THE COOK!

2001-06-05 Thread Dylan Bromby
Why don't you post ALL the code in question rather than snippets. I think it's safe to say a lot of us have used CFCOOKIE without problem(s) for some time, so the problem you're having isn't very obvious. If you want to email me your files off-list, I'd be happy to review them. You can send them

Re: KILL THE COOK!

2001-06-05 Thread Wjreichard
In IE you there are two settings dealing with Cookies. Allow session based cookies and one to allow cookies written to disk. Are both settings enabled? Bill In a message dated Tue, 5 Jun 2001 11:53:15 AM Eastern Daylight Time, "Michael Lugassy" <[EMAIL PROTECTED]> writes: << Please try to lo

Re: Shopping cart problem - no cookies, no deal

2001-06-05 Thread Michel Gagnon
I did that. Could it be something else? Thanks! - Original Message - From: "Alii Design" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 12:46 PM Subject: RE: Shopping cart problem - no cookies, no deal > You need to add the CFID and CFTOKEN to ever

Re: KILL THE COOK!

2001-06-05 Thread savan . thongvanh
this is a snippet you could write to the page (javascript) to set your cookie but I agree with a previous post that setting "expires" to never keeps the cookie. expDate=new Date(); expDate=expDate.getTime()+(1000*60*60*24*365); expDate=new Date(expDate); currentSettings+="myCookie=name1:value1&n

Re: KILL THE COOK!

2001-06-05 Thread Paul Johnston
I have to agree that you need to post some code. Are you sure that the cookies are not getting deleted by a logout thing (if that's what it's about) or that they aren't getting re-written every request by something called int he application.cfm or equivalent... You have to check the entire page

Re: Shopping cart problem - no cookies, no deal - resolved

2001-06-05 Thread Michel Gagnon
Thanks everyone! I found my problem, and it was a stupid mistake!! :-( I had CFOUTPUT tags within CFFORMS. I had done an extended replace. How stupid can you be. Regards, Michael Gagnon - Original Message - From: "Bud" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PRO

Nested Sets... Help

2001-06-05 Thread Cody
Has anyone using Celko's Nested Set model figured out a way to arrange the categories either alphabetically or some other way besides just the order they are added to the tree? I was going to use that Nested Set model on one of my upcomming projects, but I'm going to need the ability to sort t

Updates and loops and lists-Need help immediately.

2001-06-05 Thread Janine Jakim
I need to figure this out fast! Have a meeting in a few hoursI am trying to run an update query in a loop but it is not working. I have defined and hard coded my one variable called 'skilloffset'. I need for my query to update where DisplayNum=X + #SkillOffset# I'm not sure how to make th

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Lee Fuller
It happens virtually every time. We just load the template and BOOM.. it hits 100% (cfserver) and sits there until we restart the service. Lee > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 5:29 AM > To: CF-Talk > Subject: R

headers question

2001-06-05 Thread Christopher Porter
ok here's a perl script.. i have a 20$ bet with a friend that it can be done in CF and of course theres only one hard part to it... #!/usr/bin/perl print "Content-type: image/gif\n"; open IMAGEFILE, "<../html/image1.gif"; my $length = (stat(IMAGEFILE))[7]; print "Content-length: $length\n\n";

RE: Use interactive CF debugger!!! : was VeRy tricky evaluate()

2001-06-05 Thread Daniel Lancelot
One ""Problem"" I've come across, is if you have multiple CFservers set up with mappings, that it doesnt tend to automatically use the correct one based on your mapping (I think it selects the first one alphabetically) HTH Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PR

RE: headers question

2001-06-05 Thread Matthew Fusfield
Matt -Original Message- From: Christopher Porter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 12:53 PM To: CF-Talk Subject: headers question ok here's a perl script.. i have a 20$ bet with a friend that it can be done in CF and of course theres only one hard part to it...

RE: Updates and loops and lists-Need help immediately.

2001-06-05 Thread C. Hatton Humphrey
Two things jump out at me... your last two CFELSEIF's have CLIENT.CourseID OR CLIENT.CourseID IS (whatever) This will evaluate to true if Client.CourseID <> 0, so you need to remove the first client.courseid in those two. Secondly, your where clause for your query: where permnum = '#client.per

RE: 4.5 certification to 5.0

2001-06-05 Thread Moneymaker, Jon S (WPNSTA Yorktown)
Great for those grandfathered... Regarding the retirement of the 4.5 exam...is that such a good ideaso soon? Geez, at least microsoft gave a year or so before they retire(d) the NT4.0 exams oh well...who really listens to the small fries. (taking my pity pot and sauntering slowly into th

Re: headers question

2001-06-05 Thread Jason Lotz
You can certainly do this with CF using . Jason - Original Message - From: "Christopher Porter" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 9:52 AM Subject: headers question ok here's a perl script.. i have a 20$ bet with a friend that it can be d

RE: Updates and loops and lists-Need help immediately.

2001-06-05 Thread Kevin Gilchrist
Something else that's invaluable is if you can turn on the query information in the debugging section of the CF Administrator although you should restrict it to only showdebug info to your own IP. This will show exactly what the SQL statement was and makes it easier to debug dynamic SQL statement

Can CF modify NT User Authentication?

2001-06-05 Thread Newsome, Scott
Hi All, My company is looking for a way to have remote users change their NT Password through a web application. One of the developers here thinks Cold Fusion can do this but I am not sure. I think CF can update a LDAP directory but we are not using LDAP. Has anyone done this or know if it is pos

Can CF modify NT User Authentication?

2001-06-05 Thread Newsome, Scott
Hi All, My company is looking for a way to have remote users change their NT Password through a web application. One of the developers here thinks Cold Fusion can do this but I am not sure. I think CF can update a LDAP directory but we are not using LDAP. Has anyone done this or know if it is

RE: Can CF modify NT User Authentication?

2001-06-05 Thread Dave Watts
> My company is looking for a way to have remote users change > their NT Password through a web application. One of the developers > here thinks Cold Fusion can do this but I am not sure. I think > CF can update a LDAP directory but we are not using LDAP. Has > anyone done this or know if it i

RE: Updates and loops and lists-Need help immediately.

2001-06-05 Thread Janine Jakim
Thanks- it finally works. I didn't notice the last two cfifelse (hadn't tried them yet) but the where statement worked wonders. The permnum is actually a text field hence the ''. I appreciate all your help. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tues

Re: Can CF modify NT User Authentication?

2001-06-05 Thread Howie Hamlin
Try this: http://www.intrafoundation.com/intranethostingtoolkit.html HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server - Original Message - From: "Newsome, Scott" <[EM

Forms: Save and Continue

2001-06-05 Thread Rigoli, Brian (NE)
Hi all, I was wondering if you could give me an idea on how to save and continue in the process of completing a form. For example, say you have 5 forms. A submit button takes you to the next form. However, if they are lengthy forms you might want to save after completing the 2nd form (and recei

RE: Can CF modify NT User Authentication?

2001-06-05 Thread Mark Warrick
Try these: http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=nt+use r ---mark Mark Warrick - Fusioneers.com Email: [EMAIL PROTECTED] Phone: 714-547-5386 http://www.fusioneers.com http://www.warrick.net

RE: Can CF modify NT User Authentication?

2001-06-05 Thread Duane Boudreau
It can through a tag written by Lewis Sellers at http://www.intrafoundation.com. I've used a variation of it before and it works great. Duane -Original Message- From: Newsome, Scott [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 1:44 PM To: CF-Talk Subject: Can CF modify NT User

RE: Updates and loops and lists-Need help immediately.

2001-06-05 Thread Janine Jakim
Ooops It doesn't work..it does in Studio but when I run it off another machine/browser I get the error msg again. Why would it work ok in studio but not in the actual browser? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 1:25 PM To: C

RE: Can CF modify NT User Authentication?

2001-06-05 Thread Steven P. Johnson
Scott, There are a number of custom tags available on the developers exchange that will do this for you. Also Allaire released one that is free that has the ability to do this (CF_NT_USERDB http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34728B-2830-11D4-AA 9700508B94F380&method

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Raymond Camden
Which script? Do you have an example on line? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email : [EMAIL PROTECTED] ICQ UIN : 3679482 "My ally is the Force, and a powerful ally it is." - Yoda >

RE: Updates and loops and lists-Need help immediately.

2001-06-05 Thread Kevin Gilchrist
Studio is probably working from the temporary cf~filename version of a file. Try hitting CTRL + S to save it and try again -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 2:03 PM To: CF-Talk Subject: RE: Updates and loops and lists-Need he

RE: Forms: Save and Continue

2001-06-05 Thread Joshua Miller
Generate a confirmation number and shove all the completed form items into a database ... when they come back lookup their "account" via the confirmation number and allow them to resume where they left off. You could also set a cookie with a variable containing the last form they completed, etc.

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Lee Fuller
Yeah.. the ones at the URL in my original question... http://www.allaire.com/handlers/index.cfm?ID=21216&Method=Full Lee > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 11:17 AM > To: CF-Talk > Subject: RE: Progress Meter Exa

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Raymond Camden
Ok, so your saying all of the examples there give this error? Even the ones that _just_ show off CFFLUSH, and have nothing to do with progress meters? Sorry if I'm being anal, but can you be a bit more explicit. === Raymond Camde

RE: KILL THE COOK!

2001-06-05 Thread Patricia Lee
Forgive me if this sounds silly Are you using the correct attribute? There is no Timeout attribute to CFCOOKIE. it should be Expires: Without an expires attribute, cfcookie creates a session cookie... meaning the browser never writes the info to the cookie file and the cookie never persi

Re: Apology: (OT)

2001-06-05 Thread Pooh Bear
oh, heh, you're lucky. I got bashed around like a really ugly rat -PHOEUN!! >From: Darren Adams <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Apology: (OT) >Date: Tue, 05 Jun 2001 12:29:07 +0100 > > >Hi Guys, > >I just wanted to appologise for my o

Help sought with CFX_DIRECTORYLIST

2001-06-05 Thread Larry W. Virden
I was wondering if someone would be able to assist me. Platform: SPARC Solaris 2.6 Compiler: g++ 2.95.2 ColdFusion 4.5ish (I'm uncertain which specific version this is - if that is relevant I can track it down). I'm trying to figure out how to get the example CFX working under Solaris. When I cr

Re: Difference between CFStudio and CF/UltraDev 4

2001-06-05 Thread Massimo Foti
"Waldo Smeets - UDzone.com" <[EMAIL PROTECTED]> wrote in message news:3b1d2bb8 > > The other author would be Massimo Foti. > > Massimo was Tech Editor, the other author was Ray West. Great book by the > way, check out www.basic-ultradev.com. It's the only Ultradev book available > that handles Col

RE: Forms: Save and Continue

2001-06-05 Thread Tony Gruen
We frequently build online registration systems using this scenario but since some of our clients request no cookies we do it all in the database. To enter registration we ask for first name, last name, and email address. We then create a profile using their email address for their account id. Aft

List Question

2001-06-05 Thread Duane Boudreau
Hi All, I am writing an import routine that has to take into account quoted strings, some of which may contain commas. How do you force the following string to be 3 items? 1,1,"abc,def" TIA, Duane ~~ Structure your ColdFusion code with Fusebox.

RE: Help sought with CFX_DIRECTORYLIST

2001-06-05 Thread Mike Brunt
Larry, it is almost always a good idea to lock CFX tags using CFLOCK. The threading info could relate to memory threading issues. I have a good article on using cflock, if you would like a copy please let me know. Kind Regards - Mike Brunt Macromedia Consulting -Original Message- From:

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Lee Fuller
Oh no.. just the ones that have to do with the bar, it appears. The first two are fine, from what I can tell. No problem about clarification.I'll get ya whatever you need! Lee > -Original Message- > From: Raymond Camden [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05,

RE: List Question

2001-06-05 Thread C. Hatton Humphrey
use a different delimiter than a comma... for example a semicolon or some other character that's not going to be used. HTH Hatton > -Original Message- > From: Duane Boudreau [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 3:32 PM > To: CF-Talk > Subject: List Question > > > Hi

SQL 7 Full Text Search

2001-06-05 Thread Paul Smith
Other than converting to "Lauren* Closet" and searching for "Lauren* Closet", how do I automagically search and find: "Lauren's Closet" using SQL7 full text search? best, paul ~~ Structure your ColdFusion code with Fusebox. Get the official boo

RE: Progress Meter Example... maxing out CPU?

2001-06-05 Thread Raymond Camden
That's odd. For the heck of it, strip out all the code but the cfloop and run it. if it still errors out, cut the TO value by 10, and try again. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email :

RE: List Question

2001-06-05 Thread Duane Boudreau
I don't have that option. No matter what character I were to select there is no guarantee that users will not use it in their data (which I have no control over). Duane -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 3:50 PM To: CF-Tal

RE: CFHeader and jpegs

2001-06-05 Thread Tony Schreiber
Does it have anything to do with the fact that jpg's get decompressed to bitmaps and that's what IE thinks they are? > > Question: Is there anything that could confuse a header into > > thinking that it should be publishing a jpg file as a bitmap? > > If your using IE - its Just Broken in that

Re: Show Duplicates

2001-06-05 Thread Erik Carroll
This accomplishes the same thing but is a little easier on the eyes: SELECT Field1, COUNT(*) AS Total FROM has_duplicates GROUP BY Field1 ORDER BY Field1 Sample table data and output below, I think this is what you were looking for. ID Field1 Field2 1 Test1 1 2 Test1 6

Re: List Question

2001-06-05 Thread Joseph Thompson
It is a real chore for a user to enter a "bell" sound... try the chr(07) delimiter? (blatantly stolen from Dave Watts lol) - Original Message - From: "Duane Boudreau" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 1:04 PM Subject: RE: List Question >

RE: 4.5 certification to 5.0

2001-06-05 Thread Owens, Howard
Good point and while I always hate to rain on somebody's pity parade, it seems to me that the 5.0 exam shouldn't be any harder than the 4.5 exam (other than general improvements based on what they've learned in the exam process). I mean, what I've seen of 5.0, there isn't that much more to learn

RE: List Question

2001-06-05 Thread Dave Watts
> It is a real chore for a user to enter a "bell" sound... try > the chr(07) delimiter? > > (blatantly stolen from Dave Watts lol) Don't worry - I'm pretty sure I wasn't the first person to think it up. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202)

RE: SQL 7 Full Text Search

2001-06-05 Thread Ron Hornbaker
> Other than converting to "Lauren* Closet" and searching for "Lauren* > Closet", how do I automagically search and find: "Lauren's > Closet" using > SQL7 full text search? Escape single quotes by replacing them with two single quotes prior to submitting the search query. You would then be search

Selection of file

2001-06-05 Thread Shally
Hi Everyone, I have a form in which I have one browse button and one drop down list. The user can either choose a text file through uploading a file through the browse button or can select a file from the dropdown list. Can anyone help me the user is not allowed to do the both. Thanks in advance

RE: SQL 7 Full Text Search

2001-06-05 Thread Paul Smith
Thanks! That's what I tried first. Didn't work. Now it does. Go figure. best, paul At 03:39 PM 6/5/01 -0500, you wrote: > > Other than converting to "Lauren* Closet" and searching for "Lauren* > > Closet", how do I automagically search and find: "Lauren's > > Closet" using > > SQL7 full tex

RE: List Question

2001-06-05 Thread Paul Smith
Some guy named Alexander Graham something or other thot it up (running & ducking...;-) At 04:45 PM 6/5/01 -0400, you wrote: > > It is a real chore for a user to enter a "bell" sound... try > > the chr(07) delimiter? > > > > (blatantly stolen from Dave Watts lol) > >Don't worry - I'm pretty sure

Re: list and looping problems

2001-06-05 Thread Marc Garrett
I wrote: > > #CityCode# / #City# > I just noticed I left that loop in from an earlier version of the page that worked a different way. Obviously you don't want to use cfloop when a regular cfoutput will do. Sorry. Marc ~~ Structure your Cold

RE: List Question

2001-06-05 Thread Bryan Love
I have found that the tab character (char 9) works well and is difficult for a user to enter since the tab key moves a user across form fields. Bryan Love ACP Internet Application Developer [EMAIL PROTECTED]

RE: Selection of file

2001-06-05 Thread Bryan Love
the action page that handles uploading the file will need to check both field values error occurred use whichever one was filled out Bryan Love ACP Internet Application Developer [EMAIL PROTECTED]

  1   2   >