OOT: Getting Charset ??

2002-03-05 Thread Fisichella
Hi, how can I get a charset of a language if in the IE options of Encoding is Cyrillic(Windows) from a foreign website??? If I viewsource, it can't be written to notepad, replace by words For ex the site is : http://wwwinterfaxru Ex charset=ISO-8859-1 ??? TIA, Fisichella

Re: Getting Charset ??

2002-03-05 Thread Paul Hastings
Hi, how can I get a charset of a language if in the IE options of what are you asking? how to find the locale a browser is using? examine/parse cgihttp_accept_language or what charset is used for cyrllic? iso-8859-5 __ Why

Re: Getting Charset ??

2002-03-05 Thread Fisichella
I need that ISO-8859-5. Yup, that's it, how you get this number ??? - Original Message - From: Paul Hastings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 05, 2002 5:11 PM Subject: Re: Getting Charset ?? Hi, how can I get a charset of a language if in the IE

Re: Getting Charset ??

2002-03-05 Thread Fisichella
Sorry, but when I set this ISO-8859-5 into mydatabase, the pages doesn't show like the web, it asking me to install Cyrillic, not Cyrillic-window, as I see on my IE encoding when I browse the http://www.interfax.ru Any idea ??? - Original Message - From: Paul Hastings [EMAIL PROTECTED]

Slight OT: SQl problem

2002-03-05 Thread Stephen Adams
Hi, I am trying to run a query that checks through a list of postcodes, this list comes in a comma separated list (eg N12, N13, N15 (these are english postcodes)) The problem is that I want to use a LIKE in my AND clause that checks the postcode So my query looks like this: select

RE: Slight OT: SQl problem

2002-03-05 Thread Rich Wild
Stephen, instead of using '#replace(attributes.PostCode,,,',','All')#') try using: ListQualify(list, qualifier [, delimiters ] [, elements ]) as AND postcode IN (#listqualify(attributes.postcode, ')#) This will create: AND postcode IN ('BH2','NN1','MK10' etc etc etc)

What happened to the tag gallery????

2002-03-05 Thread Mike Kear
I have spent the last 30 minutes looking around the Macromedia site and they've either pulled the tag gallery down or hidden it because they don't want us to find it any more they'd rather us read wanky articles about things we might possibly need to know if we ever come across the exact same

RE: What happened to the tag gallery????

2002-03-05 Thread Declan Maher
its hard to find but here it is... http://devex.macromedia.com/developer/gallery/index.cfm -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: 05 March 2002 11:18 To: CF-Talk Subject: What happened to the tag gallery I have spent the last 30 minutes looking

Re: What happened to the tag gallery????

2002-03-05 Thread Stephen Moretti
Mike, I have spent the last 30 minutes looking around the Macromedia site and they've either pulled the tag gallery down or hidden it because they don't want us to find it any more they'd rather us read wanky articles about things we might possibly need to know if we ever come across the

Re: What happened to the tag gallery????

2002-03-05 Thread Zac Spitzer
Mike Kear wrote: I have spent the last 30 minutes looking around the Macromedia site and they've either pulled the tag gallery down or hidden it because they don't want us to find it any more they'd rather us read wanky articles about things we might possibly need to know if we ever come

RE: What happened to the tag gallery????

2002-03-05 Thread Mike Kear
Ah there's the problem .. I have got used to ignoring all flash movies and jumping over them if I can, just like I ignore all banner ads. Looks like I'm going to have to start looking at some of them. Thanks Stephen.But of course it's down. Murphy's law strikes again. Cheers, Mike Kear

Re: Getting Charset ??

2002-03-05 Thread Paul Hastings
I need that ISO-8859-5 Yup, that's it, how you get this number ??? i read a lot, for starters: http://wwwunicodeorg/ http://wwwmicrosoftcom/globaldev/ http://wwwi18nguruscom/ ben forta's cf5 advanced book __ Dedicated

Re: Getting Charset ??

2002-03-05 Thread Paul Hastings
Sorry, but when I set this ISO-8859-5 into mydatabase, the pages doesn't show like the web, it asking me to install Cyrillic, not Cyrillic-window, as I see on my IE encoding when I browse the http://wwwinterfaxru ISO-8859-5 should be the same as windows-1251 what db? does the db box have

Re: CF Certification for 5.0 rolling over to next version?

2002-03-05 Thread savan . thongvanh
welcome to the world of professional certification :) :P Dave Carabetta [EMAIL PROTECTED] on 03/04/2002 06:04:07 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: Re: CF Certification for 5.0 rolling over to next version? I remember way back when they

Application Models

2002-03-05 Thread savan . thongvanh
Can someone lend a guiding light here? what are the differences and or similarities between Fusebox, Net, and JSP Struts? Can a parallel comparison be made or are they all too different? Thanks- Savan __ Why Share? Dedicated

Hal Helms to speak at Orlando CFUG @ 7pm

2002-03-05 Thread Robert Everland
Hal Helms, one of the driving forces behind the fusebox methodology (wwwfuseboxorg) is speaking tonight at our user group meeting Meeting is today at 7 at our Lake Mary location Check out our homepage wwwcforlandocom for directions Robert Everland III Dixon Ticonderoga

OT: Server Stats/Analayze Program

2002-03-05 Thread Jason Davis
I'm currently evaluating DeepMetrix's livestats6 vs WebTrends pacakge Can anyone recommend or share his experience? __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation ยท

RE: Server Stats/Analayze Program

2002-03-05 Thread Robert Orlini
Jason, I have Livestats 6.0 installed. Had WebTrend's installed years ago. Livestats 6.0 is very comprehensive. On my machine it took DAYS to read a year's worth of server log files and then I had some questions about the accuracy of the Who's On stats which seemed incorrect. Afterwards it

Large Query return

2002-03-05 Thread David Brown
I have the need to display a query that is returning 43000 plus rows The query itself is in a storedproc and completing within 30ms But the output either through cfgrid or table is very slow Any suggestions on how to speed this up I know its a huge query and wish i could change it

RE: Large Query return

2002-03-05 Thread Pascal Peters
Make a previous/next interface! -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: dinsdag 5 maart 2002 15:16 To: CF-Talk Subject: Large Query return I have the need to display a query that is returning 43000 plus rows. The query itself is in a storedproc and

RE: Large Query return

2002-03-05 Thread David Schmidt
I don't believe you will be able to speed this up without changing the query/storedproc. Other than that, I would make sure that there are no nested html tables (can slow browser interpretation), and I might conside r a hardware solution (ram, cpu, etc...). I can't think of any other way to

The cf process

2002-03-05 Thread Janine Jakim
Ok I've been using cf for awhile and have been asked about the process- how it sends info to/from db, etc I explained it and to illustrate showed diagrams from Forta's and Wrox's books on How ColdFusion Works- (client request--webserver passes to cf--cf processes all cfml tags--cf returns html

RE: The cf process

2002-03-05 Thread David Schmidt
Wow! It sounds like you are in need of some collaboration. Is this for a customer, or is it for some internal managers? Do you have a network adm in and a database administrator that can help you give this presentation? I f you do, I strongly suggest spreading this requirement around the

RE: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread Lon Lentz
CNET radio just stated that 51% are currently on broadband. They did not mention (or I did not hear) the source for that figure. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 6:10 PM To: CF-Talk Subject: OT percentage of Broadband v.s.

RE: The cf process

2002-03-05 Thread Dave Watts
Ok I've been using cf for awhile and have been asked about the process- how it sends info to/from db, etc I explained it and to illustrate showed diagrams from Forta's and Wrox's books on How ColdFusion Works- (client request--webserver passes to cf--cf processes all cfml tags--cf

RE: Application Models

2002-03-05 Thread Dave Watts
Can someone lend a guiding light here? what are the differences and or similarities between Fusebox, Net, and JSP Struts? Can a parallel comparison be made or are they all too different? Well, NET isn't an application model, in the sense that Jakarta Struts is You can write all of your

Re: Server Stats/Analayze Program

2002-03-05 Thread Jim McAtee
As far as I'm concerned DeepMetrix needs to go back to the drawing board with LiveStats. I've got LiveStats 6 installed using MySQL on a dual processor 1.26 MHz PIII with 2 MB ram. I've done what I can to tune MySQL, throwing almost a GB of ram at it and it still constantly pegs both processors

RE: CFLOCK throwontimeout=no

2002-03-05 Thread Dave Watts
If you've got a cflock with throwontimeout=no, does it skip over the block of code within the cflock, or does it enter it if the timeout expires? It won't execute the code within the block if the timeout expires, no matter what you've set THROWONTIMEOUT to Note that the TIMEOUT attribute

Re[2]: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread Jim Priest
After you posted this I was kind of interested myself I think it really depends on who you ask but this one seemed non-biased: http://cyberatlasinternetcom/markets/broadband/article/0,,10099_982021,00html There is a nice chart at the bottom showing growth rates Dialup was still the leader at

Re: The cf process

2002-03-05 Thread Jochem van Dieten
Dave Watts wrote: To the best of my knowledge, CF doesn't create any temporary files except when accepting uploaded files Access ODBC driver sometimes creates them Either in the \winnt\ or the \winnt\system32\ dir Jochem

CF Threads

2002-03-05 Thread Deborah Curley
Question, the limit simultaneous request setting, does that set it so cf allocates one thread for every process? So it does not create child threads from the parent thread for another process - like in unix,java? Just trying to get a grasp on exactly how CF handles threads Any advice is

RE: How do you prevent web pages/images from being SAVED

2002-03-05 Thread Dave Watts
Does anyone know how to prevent: 1 Preventing a web page from being saved when being viewed in a browser and 2 Preventing the images on the page from being saved Is there some technique or maybe a program that enables this? The short answer is that, if you allow people to download your

RE: CF Threads

2002-03-05 Thread Dave Watts
Question, the limit simultaneous request setting, does that set it so cf allocates one thread for every process? So it does not create child threads from the parent thread for another process - like in unix,java? Just trying to get a grasp on exactly how CF handles threads Any advice is

Convert Dynamic web to static

2002-03-05 Thread Bruce, Rodney (SIGNAL)
Hello all Is there a program out that can take a dynamice web site (ie coldfusion w/querys) and convert it to a static web pages (just HTML/java) so that it can then be ported and run some were with out coldfusion for a demo type prentation THanks for any info

RE: Convert Dynamic web to static

2002-03-05 Thread Rick Eidson
Do a CFDIRECTORY and list all the files. Then loop through each using CFHTTP and write the results for each to a file. Just a thought... Rick Eidson -Original Message- From: Bruce, Rodney (SIGNAL) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 9:51 AM To: CF-Talk Subject:

RE: Convert Dynamic web to static

2002-03-05 Thread Shawn Regan
There are some web spider programs you can us to spider a site and save it to your hard drive. Shawn Regan Applications Developer pacifictechnologysolutions -Original Message- From: Rick Eidson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 7:44 AM To: CF-Talk Subject: RE:

RE: Convert Dynamic web to static

2002-03-05 Thread Dave Watts
Is there a program out that can take a dynamice web site (ie coldfusion w/querys) and convert it to a static web pages (just HTML/java) so that it can then be ported and run some were with out coldfusion for a demo type prentation Two of my favorites for this (both free) are wget and

RE: The cf process

2002-03-05 Thread Dave Watts
To the best of my knowledge, CF doesn't create any temporary files except when accepting uploaded files Access ODBC driver sometimes creates them Either in the \winnt\ or the \winnt\system32\ dir That figures Just another reason to dislike Access Sheesh Dave Watts, CTO, Fig Leaf

Re: Convert Dynamic web to static

2002-03-05 Thread Dave Hannum
Use CFHTTP to read the page output then use CFFILE to save it as an HTML file. Dave - Original Message - From: Bruce, Rodney (SIGNAL) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 05, 2002 10:51 AM Subject: Convert Dynamic web to static Hello all Is there a

Re: RE: Large Query return

2002-03-05 Thread ksuh
Don't use tables. Use span and div to create something l ike a table. The problem with tables is that the browser's gotta wait unti l the whole table is delivered before the page is rendered. With span and divss, the browser will immediately display the contents. In conjunction with

OT: WebTV Test Browser

2002-03-05 Thread Eric J Hoffman
I used to know where to get the WebTV simulator which we now need due to an increasing (!) number of users on a site of oursbut I don't anymore Anyone?? Regards, Eric J Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design)

RE: Convert Dynamic web to static

2002-03-05 Thread Jason Larson
Black Widow sorta does it: http://www.zdnet.com/downloads/stories/info/0,10615,27616,00.html Thanks, Jason -Original Message- From: Bruce, Rodney (SIGNAL) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 8:51 AM To: CF-Talk Subject: Convert Dynamic web to static Hello all

RE: Convert Dynamic web to static

2002-03-05 Thread Bruce, Rodney (SIGNAL)
Thanks for the replies, will check into the ones dave mentioned and play around with the other options as well. -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 9:10 AM To: CF-Talk Subject: Re: Convert Dynamic web to static Use CFHTTP to

whats wrong with DateFormat()

2002-03-05 Thread Phillip Broussard
Ok I put DateFormat(day(now()), 'dd') on a page and instead of returning 05 it gave me 04 If I put day(now()) on a page I get 5 If I put day(5) on a page I get 4 If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard Tracker Marine Group 417-873-5957

RE: How do you prevent web pages/images from being SAVED

2002-03-05 Thread Paul Sizemore
If this is a controlled environment (like an Intranet), you might be able to create an Active X control (or VB app) to view the code and graphics with. This would allow you to do things like disable everything but the left mouse button (including keyboard). I'm sure it would be fairly easy to

Re: site performance questions

2002-03-05 Thread Frank Mamone
I agree with Matt. We have an intensive room booking applicaton which bui lds a grid with time slots open and reserved. It need to loop thru every X,Y co-ordinate to check the status. We shaved 9 secs by using the Compare functions. - Original Message - From: Matt Robertson [EMAIL

RE: whats wrong with DateFormat()

2002-03-05 Thread David Schmidt
04. If I put day(now()) on a page I get 5. If I put day(5) on a page I get 4. If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard Tracker Marine Group 417-873-5957 __ Dedicated Windows

Re: CF linux hosting?

2002-03-05 Thread Nick Richards
Matt, If it is just a development site - I would be more than happy to give you access to one of our development servers for code testing and debugging. Feel free to get back to me via email offlist if this helps you out! ./Nick Nick Richards Customer Service and Support Group Flare Network

RE: whats wrong with DateFormat()

2002-03-05 Thread Paul Melanophy
: whats wrong with DateFormat() Ok I put DateFormat(day(now()), 'dd') on a page and instead of returning 05 it gave me 04. If I put day(now()) on a page I get 5. If I put day(5) on a page I get 4. If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard

RE: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread jon
51% of users listing to CNET radio, maybe... .. but the real figues are closer to 15%. http://www.netaction.org/broadband/dsl/section1.html (These stats are from July 2001, but I doubt adoption rates have climbed at too massive a pace since then) -- jon - jon roig online

Re: OT: WebTV Test Browser

2002-03-05 Thread Jerry Johnson
http://developer.msntv.com/Tools/WebTVVwr.asp This is the whole site for developers http://developer.msntv.com/ adnd maybe a code validation site: Web Page 'Purifier' - Free on-the-web HTML checker allows viewing a page 'purified' to HTML 2.0, HTML 3.2, HTML 4.0, or WebTV 1.1. standards.

Re: whats wrong with DateFormat()

2002-03-05 Thread ksuh
. If I put day(now()) on a page I get 5. If I put day(5) on a page I get 4. If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard Tracker Marine Group 417-873-5957

Re:OT: WebTV Test Browser

2002-03-05 Thread C . Hatton Humphrey
I've always downloaded one from http://developer.msntv.com/ HTH Hatton Eric J Hoffman [EMAIL PROTECTED] wrote on 3/5/2002 11:08:20 AM: I used to know where to get the WebTV simulator which we now need due to an increasing (!) number of users on a site of ours...but I don't anymore.

RE: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread Lon Lentz
I miss heard the original statement. According to Nielson's net ratings, 20% are broadband and account for 51% of the net's activity. -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 11:23 AM To: CF-Talk Subject: RE: OT percentage of Broadband

RE: whats wrong with DateFormat()

2002-03-05 Thread Phillip Broussard
') on a page and instead of returning05 it gave me 04. If I put day(now()) on a page I get 5. If I put day(5) on a page I get 4. If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard Tracker Marine Group 417-873-5957

RE: whats wrong with DateFormat()

2002-03-05 Thread Garza, Jeff
. If I put DateFormat(now(), 'mmdd') on a page I get 20020305 Why? TAI Phillip Broussard Tracker Marine Group 417-873-5957 ___ _ __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB

Queries Are Running Too Long

2002-03-05 Thread Dave Babbitt
Hi Guys! Can anybody tell why this query is taking SEVENTEEN SECONDS to run? I'm looping through a bunch of form variables, and this query is taking 12 to 14 seconds every time (but this first time) to run I'm running SQL Server and CF Server off my laptop, but it didn't started running this

CFX_XMLParser

2002-03-05 Thread Joel Blanchette
Hello All, I am trying to get the CFX_XMLParser from cfdevcom working but I am having problems with the cfloop Here is what I have cfset xml=?xml version='10' encoding='windows-1252' ? result status='OK' records='113' first='1' last='25' searchRequest='isthisworking'

How to Initialize Array within a Structure

2002-03-05 Thread trey
I am trying to establish an array within a structure When I expire the structure programmatically (calling logoutcfm) and return to the form, however, the array is not initialized and new choices are printed out with the old (for example: if I choose blue the first time through and red the

RE: The cf process

2002-03-05 Thread Mark A. Kruger - CFG
Dave, CFCACHE creates temp files in a specified directory - and caching a query does as well I believe. The other thing that comes to mind is the cfusion/mail/* directories (if they are using cfmail) all use file creation to process outgoing mail. Mark -Original Message- From: Dave

ListContains NOT functioning properly - Help!

2002-03-05 Thread Mark M. Kecko
Help! When I'm looping over a list Campaign.Vehicles that's coming from a SQL table varchar field I'm getting strange results from ListContains. Looping over Vehicles.code= siteMinute,siteNews,site,siteSpin,mi,os,ol,mn,siteHome - several rows from a database call.

RE: ListContains NOT functioning properly - Help!

2002-03-05 Thread Raymond Camden
ListCOntains returns the index, not the # of matches. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. -

RE: The cf process

2002-03-05 Thread Dave Watts
CFCACHE creates temp files in a specified directory - and caching a query does as well I believe Yes, CFCACHE creates temp files Caching a query, however, doesn't, although creating a persistent query through RDS does Dave Watts, CTO, Fig Leaf Software http://wwwfigleafcom/ voice: (202)

ListContains NOT functioning properly - MORE!

2002-03-05 Thread Mark M. Kecko
Sorry if my original message is hard to get, just try running this code in a test page. Are the results as expected? What's wrong here? cfset codes=siteMinute,siteNews,site,siteSpin,mi,os,ol,mn,siteHome cfset Vehicles=siteMinute,siteNews,siteSpin cfloop list=#codes# index=i

Re: submitting forms with mozilla

2002-03-05 Thread Douglas Jordon
Thanks, but I wonder if there's a larger issue. The site I'm working on uses Verisign's Paylink. Mozilla always fails their validation tho IE doesn't. Since Mozilla is supposed to be HTML compliant, I wondered if there was a form attribute that needed to be set. If an email address is

RE: Queries Are Running Too Long

2002-03-05 Thread Dave Watts
Can anybody tell why this query is taking SEVENTEEN SECONDS to run? I'm looping through a bunch of form variables, and this query is taking 12 to 14 seconds every time (but this first time) to run I'm running SQL Server and CF Server off my laptop, but it didn't started running this slow

can someone see a problem with this!!!

2002-03-05 Thread Jeff Fongemie
Hello everyone, I must be missing something. I keep getting an error data mismatch in criteria. But it looks right to me? What am I missing? I may be looking too hard. cfquery name=UpdateRecord datasource=os dbtype=ODBC UPDATE stores SET

RE: can someone see a problem with this!!!

2002-03-05 Thread James Maltby
Are: mensapparel=#Form.mensapparel#, womensapparel=#Form.womensapparel#, maternity=#Form.maternity#, AccessoriesJewelry=#Form.AccessoriesJewelry#, ChildrenApparel=#Form.ChildrenApparel#, FoodDrink=#Form.FoodDrink#, toysgames=#Form.toysgames#, HomeFurnishings=#Form.HomeFurnishings#,

RE: can someone see a problem with this!!!

2002-03-05 Thread Will Swain
I assume all of the fields from mensapparel down, and also saleinfo, are number fields? will -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: 05 March 2002 17:47 To: CF-Talk Subject: can someone see a problem with this!!! Hello everyone, I must be missing

Re: can someone see a problem with this!!!

2002-03-05 Thread Jeff Fongemie
Hello cf-talk, On Tue, 5 Mar 2002, at 17:51:16 you carefully wrote: WS I assume all of the fields from mensapparel down, and also saleinfo, are WS number fields? WS will Well, the fields are yes/no in an Access. So, it looks like that is really a number field. 1 or 0? So single quotes?

Re: can someone see a problem with this!!!

2002-03-05 Thread Jeff Fongemie
Hello cf-talk, On Tue, 5 Mar 2002, at 17:51:16 you carefully wrote: WS I assume all of the fields from mensapparel down, and also saleinfo, are WS number fields? all of the fields from mensapparel down are yes/no boolean fields in Access. saletitle is text, salestart/end

RE: ListContains NOT functioning properly - MORE!

2002-03-05 Thread Kevin Cundick
Looks to me like you ListContains function needs a delimiter. ListContains(#Vehicles#, #i#, ,) Hope that helps. Kevin -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 10:43 AM To: CF-Talk Subject: ListContains NOT functioning

RE: can someone see a problem with this!!!

2002-03-05 Thread Jim Curran
What are the values contained in those form fields? (I'm Assuming they are check boxes) - j -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 1:09 PM To: CF-Talk Subject: Re: can someone see a problem with this!!! Hello cf-talk, On

RE: can someone see a problem with this!!!

2002-03-05 Thread kbutterly
well the error points to the criteria field, so have you checked what #Variables.RecordID# is? put cfoutput#Variables.RecordID#/cfoutputcfabort right before your query to check. is StoreID defined to be the datatype of #Variables.RecordID#? Kathryn Butterly Web Developer Washington Mutual

CFApplication

2002-03-05 Thread Graham Pearson
From what I have understood, CFAPPLICATION by default will not expire client variables on browser close. I have clientmanagement turned on session management turned off, client storage to an odbc datasource and set client cookies turned off. What I am trying to do is pass CFID and CFTOKEN on

Rotating banners

2002-03-05 Thread Elizabeth Walter
Hello- I am developing a banner rotating tool and need some ideas on how to best handle a requirement I have gotten the tool to a point where it displays banners randomly- no problem Now what I need to do is give certain banners more weight than others: some banners need to be displayed more

Re: Help...

2002-03-05 Thread phumes1
Hi all, I 'm stuck The below code reads and displays the contents of my database cfquery name=GetFontFamily datasource=fontstyles SELECT sti, ID FROMfontsti ORDER BY sti /cfquery cfoutput query=GetFontFamily input type=hidden name=ID

Re: Rotating banners

2002-03-05 Thread savan . thongvanh
i've done this by using time. it's kind of 2 fold. Weight 6 ad1,ad2,ad3,ad4 weight 3 ad5, ad6, ad7, ad8 -I'd assign the weight of each banner before hand. -Grab the last digit in the seconds of the current time. -Display an ad from the weight group that corresponds w/ the time integ er i.e.

Re: can someone see a problem with this!!!

2002-03-05 Thread Jeff Fongemie
Hello cf-talk, On Tue, 5 Mar 2002, at 13:12:20 you carefully wrote: JC What are the values contained in those form fields? (I'm Assuming they are JC check boxes) JC - j The values are 1 or 0, they are radio buttons. JC -Original Message- JC From: Jeff Fongemie [mailto:[EMAIL

RE: Rotating banners

2002-03-05 Thread Elizabeth Walter
Gotcha. Interesting solution- I wouldn't have thought to do it that way. I'll give it a shot! Thanks a lot, Elizabeth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 1:29 PM To: CF-Talk Subject: Re: Rotating banners i've done this

Re: can someone see a problem with this!!!

2002-03-05 Thread Jeff Fongemie
Hello Kathryn, On Tue, 5 Mar 2002, at 13:15:02 you carefully wrote: kwc well the error points to the criteria field, so have you checked what kwc #Variables.RecordID# is? kwc put kwc cfoutput#Variables.RecordID#/cfoutputcfabort right before your kwc query kwc to check. kwc is StoreID

Multi Processor Server Config

2002-03-05 Thread Ray Bujarski
I have just recieved my new CF Server 5 upgrade and have a brand new system with multi processors. Does anyone know how to configure the server so that it takes full advantage of both these processors? I am running win2000 with IIS. Thanks, Ray Bujarski 858-845-7669 858-636-9900 pgr [EMAIL

Re: Rotating banners

2002-03-05 Thread BEN MORRIS
I would think that you would loop through your query, and build a list. For each query record, loop from 1 to the weight value, and add the bannerID to the a list called bannerIDList for each nested loop. This way if you have one banner with bannerID=301 and weight=2, and a second banner

RE: Multi Processor Server Config

2002-03-05 Thread Dave Watts
I have just recieved my new CF Server 5 upgrade and have a brand new system with multi processors Does anyone know how to configure the server so that it takes full advantage of both these processors? I am running win2000 with IIS You shouldn't have to do anything, really, as Win2K should

RE: simple cfloop

2002-03-05 Thread Bill Killillay
try this for your query select, this, that, theotherthing from tblName where id IN (#form.ids#) -Original Message- From: Sorgatz, Rex [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 03, 2002 8:33 PM To: CF-Talk Subject: simple cfloop Beginner CFer with an easy question. The situation:

CFConf news - ColdFusion MX and Flash MX

2002-03-05 Thread Michael Smith
You are invited to ColoradoTechCon, CFNorth and CFUN-02. Learn ColdFusion, Flash and Java to help you program great websites! - Michael Smith, TeraTech, Inc http://www.teratech.com/ * Colorado Tech Con 3/14 - 3/15 Denver CO http://www.coloradotechcon.com/ * CFNORTH 5/4 - 5/5 Toronto, Canada

RE: Multi Processor Server Config

2002-03-05 Thread savan . thongvanh
In win2k, i dont remember exactly where it is, you can assign certain processes to a processor manually. Dave Watts [EMAIL PROTECTED] on 03/05/2002 12:48:25 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: RE: Multi Processor Server Config I have just

Sorry to flood the List BUT.... ListContains NOT functioning properly!

2002-03-05 Thread Mark M. Kecko
Sorry, but... Why does the below code check 4 boxes when there's only 3 items in the List??? Please help!!! This is costing my company a good deal of cash! - Just copy and paste the code into a test page and run it, you'll see, I hope. cfset

Macromedia's XML Resource Feed

2002-03-05 Thread Andrew Peterson
Hi, Has anyone used Macromedia's resource feed with CF located at http://wwwmacromediacom/desdev/articles/xml_resource_feedhtml How is it done? I've done XML parsing with Moreover's XML feeds using WDDX, but this is different Here's my feeble code: CFSET REQUESTLINK =

RE: Sorry to flood the List BUT.... ListContains NOT functioning properly!

2002-03-05 Thread kbutterly
Isn't it because spin IS contained in the list? in siteSpin? Kathryn Butterly Web Developer Washington Mutual Finance 813 632-4490 [EMAIL PROTECTED] -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 1:59 PM To: CF-Talk Subject: Sorry to

cgi.path_info

2002-03-05 Thread Joel Firestone
Everyone: Is there a setting in apache that would turn on/off the ability to read the cgipath_info variable in Cold Fusion? The server is Linux Red Hat running CF 45 When I try to read the path info, I just get an empty string Another server with the same setup returns the variable fine

RE: Sorry to flood the List BUT.... ListContains NOT functioning properly!

2002-03-05 Thread Semrau, Steven L Mr RDAISA/SRA
The function (ListContains) is doing exactly what it's suppose to and I can see why it's returning 4. ListContains: Returns the index of the first item that contains a specified substring. The search is case-sensitive. If the substring is not found in the list items, it returns zero (0).

RE: Sorry to flood the List BUT.... ListContains NOT functioning properly!

2002-03-05 Thread Dan G. Switzer, II
Mark, You want to use ListFind(), not ListContains() in your example below. ListContains() is going to return a position for site since site is contained in siteMinute, siteNews, site and siteSpin. ListFind() will only find matching values. ListContains() will return a match if the string being

Re: Macromedia's XML Resource Feed

2002-03-05 Thread Nick McClure
You will need to use true XML parsing There are tags in the Tag library that will do this Most of them will create a structure, or an array of structures that you can look through and display At 12:54 PM 3/5/2002 -0600, you wrote: Hi, Has anyone used Macromedia's resource feed with CF

RE: Sorry to flood the List BUT.... ListContains NOT functioning properly!

2002-03-05 Thread Chip Griffin
I think you may want to use ListFind instead. That will generate the intended result, I believe. ListFind checks the entire list element whereas ListContains looks at any part of a list element. -Original Message- From: Mark M. Kecko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05,

RE: Rotating banners

2002-03-05 Thread Shawn Grover
I don't think this will work well Yes, you have listed the banner ID's in the proper percentage, but there is no guarantee that the random number will match that weighting. For instance, a random number generator could (in theory) produce 1,1,1,1,1,1,4,5,1,1. Now, if the ID at position 1

RE: CFApplication

2002-03-05 Thread Teel, C. Doug
I would use the Brian Kotek's customtag called cf_clienttimeout and you wouldn't have to pass the CFID/CFTOKEN around. clienttimeout timeout=10 Then cfif timedout cflocation url=index.cfm /cfif -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March

RE: Macromedia's XML Resource Feed

2002-03-05 Thread Mike Chambers
Andrew, First, i am glad you noticed the feed. It just went live yesterday. second, it is not a WDDX XML document (just XML). you can view the DTD here: http://www.macromedia.com/desdev/resources/macromedia_resources.xml/ basically, you will need to use a COM or Java XML parser with CF 5 and

Re: Macromedia's XML Resource Feed

2002-03-05 Thread Neil H.
So the question is why not WDDX? Neil - Original Message - From: Mike Chambers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 05, 2002 2:08 PM Subject: RE: Macromedia's XML Resource Feed Andrew, First, i am glad you noticed the feed. It just went live

RE: Multi Processor Server Config

2002-03-05 Thread Dave Watts
In win2k, i dont remember exactly where it is, you can assign certain processes to a processor manually Yes, you can, but usually you don't want to To do this, you need to download a separate tool from MS, if I recall correctly Or maybe it's in a resource kit In my experience, however, this

  1   2   >