RE: breaking a loop... need help

2002-06-30 Thread Paul Ihrig
Thanks To: Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [EMAIL PROTECTED] http://www.twcreations.com/ 954.721.3452 I really do appreciate the great help i have recieved here... The code that did it! -paul cfquery

RE: What is the best variable scope?

2002-06-30 Thread S . Isaac Dealey
Nice wording, but still what does that have to do with the original thread? So now you're complaining because I didn't change the subject line? ... It was about the comment that Application variables don't span multiple websites ... which isn't necessarily true... Remember also that any

Re: What is the best variable scope?

2002-06-30 Thread David Schmidt
No offense guys, but shouldn't this be a private discussion by now? I don't recall debates as being the purpose of the list. - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, June 30, 2002 9:00 AM Subject: RE: What is the best

Re: What is the best variable scope?

2002-06-30 Thread S . Isaac Dealey
No offense guys, but shouldn't this be a private discussion by now? I don't recall debates as being the purpose of the list. Sorry... Guess I didn't realize anyone else was still following the thread... I'll shut up now... Isaac www.turnkey.to 954-776-0046

Why are we here? was RE: What is the best variable scope?

2002-06-30 Thread Mike Brunt
At the risk of being ignited I want to say this, please. Isaac made an exceptional point which is worthy of repetition: - : Because it's important for us to think about the work that : we do from : the : perspective of our users -- as entertaining as our : tech-centric ways of : thinking

REPOST: CF Server Error

2002-06-30 Thread Jim Vosika
Hi everyone, I keep getting an error that is getting really annoying and I was wondering if anyone knew why it was happening. First off, my website is one of many on a virtual server, hosted by Media3.net. Obviously right away this isn't ideal using a virtual server but for now that

RE: REPOST: CF Server Error

2002-06-30 Thread Douglas Williams
Looking at the error, I would say that the server your site runs on is being overwhelmed by requests and/or is quite unstable. I have a work buddy that has a site on media3.net as well and has also had a few downtimes this week. It's quite possible that they are overloading their servers and it

Studio 5 install

2002-06-30 Thread Jeff Beer
Hello all, I've lost my Studio 5 disks in a move, and need to reinstall. I can't find anywhere to download the trial version. I have the serial, etc, but can't find out how to replace it. Of course this happens on a Sunday... grr... anyone know where I can download the eval version?

Re: REPOST: CF Server Error

2002-06-30 Thread S . Isaac Dealey
Hi Jim, I've typically seen this error in my applications when I've done something horribly wrong and ime it's usually accompanied by the cfserver service restarting. It's possible that it could be related to locking, although locking is typically not related to datasource issues ( although I've

RE: REPOST: CF Server Error

2002-06-30 Thread Mike Brunt
Just adding to the thrust, I would say this is pretty certainly a locking issue or a lack of. This error always accompanies memory corruption issues as a result of unlocked shared scope variables. You can only control your own code and in a shared environment other's code could be an issue.

CFLOCK - will it make thread unsafe tags safe?

2002-06-30 Thread Brian Fox
Hi - Will wrapping a thread unsafe cfx tag in a server scope lock make it thread safe? Thanks, Brian __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: CFLOCK - will it make thread unsafe tags safe?

2002-06-30 Thread Matthew R. Small
I would say generally yes, unless there is something in the tag itself which would cause multiple threads to spawn. - Matt Small -Original Message- From: Brian Fox [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 4:10 PM To: CF-Talk Subject: CFLOCK - will it make thread unsafe

JS/CF script problem

2002-06-30 Thread Bill Henderson
Can anybody help me do one of two things: A.) Make a call from a JavaScript function to a function written in CFScript, Or B.) Reference form elements (before a submission) in CFScript, like JavaScript does. Example: myform.mystring.innerText=myform.mystring2.innerText will copy the value of a

dynamic select

2002-06-30 Thread Douglas Brown
I have a query that pulls options to populate a select box, now what I need to do is have a select that makes one of the values of the select box SELECTED if it's value is in my inventory table from a second query. IE: query of inventory returns the value of ford for the make column... I need

RE: CFLOCK - will it make thread unsafe tags safe?

2002-06-30 Thread Dave Watts
Will wrapping a thread unsafe cfx tag in a server scope lock make it thread safe? Yes, assuming that the lack of thread safety is within the actual tag you're calling, rather than within some resource used by the tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202)

RE: JS/CF script problem

2002-06-30 Thread Dave Watts
Can anybody help me do one of two things: A.) Make a call from a JavaScript function to a function written in CFScript, Or B.) Reference form elements (before a submission) in CFScript, like JavaScript does. Example: myform.mystring.innerText=myform.mystring2.innerText will copy the

Re: dynamic select

2002-06-30 Thread Marius Milosav
You can use cfselect cfquery name=getCar... select car_man from... /cfquery cfselect name=car size=0 query=getCar value=car_man display=car_man selected=#car_man# multiple=no /cfselect you can do the same thing with a normal

Re: JS/CF script problem

2002-06-30 Thread Critz
oi Bill!! cfscript is serverside...javascript is clientside so they cannot really interact. -- Best regards, Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOp Network=EFNet Channel=ColdFusion Sunday, June 30, 2002, 4:20:47

RE: JS/CF script problem

2002-06-30 Thread Matthew R. Small
You can do choice B: Document.formname.textboxname.value = document.formname.textbox2name.value; - Matt Small -Original Message- From: Bill Henderson [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 4:21 PM To: CF-Talk Subject: JS/CF script problem Can anybody help me do one

RE: dynamic select

2002-06-30 Thread Tony Gruen
easy, I presume that your list of all available makes is in another table. If it is not and your select is hard coded just use the cfif statement and name the query appropriately. Example below where queryname for all available makes = qMake, and query for option to be selected = qMakeUser: (off

RE: REPOST: CF Server Error

2002-06-30 Thread Jim Vosika
Thank you everyone for you help, I would have responded earlier but I was taking a nap. :) After reading all of the responses I don't think it is my code that is the issue on the server because on that account it is mostly cfif's cfquery's and cfoutput's so not that I couldn't have made a mistake

RE: dynamic select

2002-06-30 Thread Tom Nunamaker
Remember, the proper HTML should be: option value=myvalue selected=selected Tom -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 3:42 PM To: CF-Talk Subject: RE: dynamic select easy, I presume that your list of all available makes is in

RE: dynamic select

2002-06-30 Thread Dave Watts
Remember, the proper HTML should be: option value=myvalue selected=selected No, the SELECTED attribute is what you might call a Boolean attribute - one for which the presence or absence of the attribute specifies its value (true or false). So, this is the correct syntax for a selected

RE: REPOST: CF Server Error

2002-06-30 Thread Mike Brunt
Jim, a couple of things, first a question do you have any Application. - Server. - Session. variables in your app, if so I would still check the locking issue prior to your moving to dedicated. Second a suggestion, when cost is an issue we use the dedicated hosting packages at www.cihost.com,

Re: REPOST: CF Server Error

2002-06-30 Thread Alex
What's the OS? How are you connecting to the database? What's the database? Is it the same page that causes this error? Can you check the logs? From what you wrote it looks as if the server is busy. On Sun, 30 Jun 2002, Jim Vosika wrote: Hi everyone, I keep getting an error that

RE: REPOST: CF Server Error

2002-06-30 Thread Jim Vosika
No I don't have any session. application. Or server. variables, just a few url. variables so locking shouldn't be the issue. I have never used locking and I was under the impression that you used cflock to lock the database when you were writing to it but I have since started auuiming that that

RE: REPOST: CF Server Error

2002-06-30 Thread Jim Vosika
I don't even know the os because it is a shared server. Connecting to access using standard cfquery and sql and I have no access to logs. It is when I use any page that the error could happen. I will be looking into new hosts this week because these errors are unacceptable. Thanks! Jim Vosika

RE: dynamic select

2002-06-30 Thread Tom Nunamaker
My mistake. That's not correct XHTML, which is what you should be coding for if you don't want to have to redo all of your HTML in the future. Here's a good reference for converting your HTML documents to XTHML: http://www.w3schools.com/xhtml/xhtml_syntax.asp Tom -Original Message-

RE: REPOST: CF Server Error

2002-06-30 Thread S . Isaac Dealey
Just as an FYI, locking is an issue with databases, however, most database engines handle it internally so there's usually no significant need to go out of your way to handle it in a server-side scripting language like ColdFusion ... MS Access has been known to have a few issues, which is why it

RE: REPOST: CF Server Error

2002-06-30 Thread Neil Clark - =TMM=
Locking in CF is for shared scope variables. Neil Clark Team Macromedia http://www.macromedia.com/go/team Announcing Macromedia MX!! http://www.macromedia.com/software/trial/ -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: 30 June 2002 22:58 To: CF-Talk

Species names

2002-06-30 Thread NZERN National Office
In a table is stored species names eg Oleria furfuracea Parsonsia capularis I want to be able to convert this to a string like Oleria_furfuracea Parsonsia_capularis so that links can be made like http://www.members.bush.org.nz/plant/fact.cfm?species=Aristotelia_serrata How do I do this?

Re: Species names

2002-06-30 Thread Howie Hamlin
replace(species, ,_,all) HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server Find out how iMS Stacks up to the competition:

RE: Species names

2002-06-30 Thread Matthew Walker
Replace(SpeciesName, , _, ALL) But URLEncodedFormat(SpeciesName) would be better! -Original Message- From: NZERN National Office [mailto:[EMAIL PROTECTED]] Sent: lundi 1 juillet 2002 12:29 To: CF-Talk Subject: Species names In a table is stored species names eg Oleria

RE: Species names

2002-06-30 Thread Dave Watts
Oleria furfuracea Parsonsia capularis I want to be able to convert this to a string like Oleria_furfuracea Parsonsia_capularis so that links can be made like http://www.members.bush.org.nz/plant/fact.cfm?species=Aristote lia_serrata How do I do this? Well, you could do this by

Re: Species names

2002-06-30 Thread Gyrus
- Original Message - From: NZERN National Office [EMAIL PROTECTED] In a table is stored species names eg Oleria furfuracea Parsonsia capularis I want to be able to convert this to a string like Oleria_furfuracea Parsonsia_capularis - If I understand this

Re Species names

2002-06-30 Thread NZERN National Office
Thanks Will this solution also work with cases where the species names is like Geranium australe Var. maculatum Coprosma sp T there are other naming combinations in the world of botany as well Mike NZERN National Office Mail: PO Box 9000,

RE: Re Species names

2002-06-30 Thread Dave Watts
Will this solution also work with cases where the species names is like Geranium australe Var. maculatum Coprosma sp T there are other naming combinations in the world of botany as well Perhaps not, but URLEncodedFormat will. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: Species names

2002-06-30 Thread Dave Watts
If it's to make links, there's always URLEncodedFormat(string). This will do stuff like replacing spaces with %20 so that the string's URL-friendly. When you read the query string variables created like this, decode them with URLDecode(string). You don't even need to use the URLDecode

grabbin some images......(via sumhow) - (Alex - skip)

2002-06-30 Thread Critz
oi peeps. anyone know if it's possible to cfhttp an image and save it locally.and if not..any other suggestions as to how to nick an image off a site using cf? -- Best regards, Critter, MMCP Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOp Network=EFNet Channel=ColdFusion

CFMX / Client Variables as cookies

2002-06-30 Thread SoW
Hi folks, I cannot get client variables to save under CFMX as cookies. Is this a known compatibility issue? The following code works great (client.test is set the first time template is run) under CF5 but not CFMX. cfif isdefined(client.test) client.test is defined. cfelse

RE: REPOST: CF Server Error

2002-06-30 Thread Jim Vosika
Thanks again for your help! Jim Vosika http://www.tinyclick.com FREE URL Shortening -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 5:47 PM To: CF-Talk Subject: RE: REPOST: CF Server Error Just as an FYI, locking is an issue with

Re: CFMX / Client Variables as cookies

2002-06-30 Thread mark brinkworth
Your code worked fine for me both setting as Cookie in the administrator and in the ClientStorage attribvute in cfapplication. From: SoW [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: CFMX / Client Variables as cookies Date: Sun, 30 Jun 2002 19:42:33

whats wrong with cfform tag?

2002-06-30 Thread Tony Weeg
why is it that sometimes i get weird header info crap at the top of a page that parses a cfform tag? the graphic i have attached will show you what kinds of stuff i see. thanks :[ frustrated in salisburytony __ Your ad

RE: whats wrong with cfform tag?

2002-06-30 Thread Tony Weeg
i guess i cant send an attachment, well here is the graphic url. http://www.revolutionwebdesign.com/clients/coupons/what_is_this.gif thanks tony -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 11:34 PM To: CF-Talk Subject: whats wrong with

RE: whats wrong with cfform tag?

2002-06-30 Thread Matthew Walker
Are you using a cflocation? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: lundi 1 juillet 2002 15:41 To: CF-Talk Subject: RE: whats wrong with cfform tag? i guess i cant send an attachment, well here is the graphic url.

Global database of cities/towns/villages.

2002-06-30 Thread James Sleeman
Hi all, a client wants people to be able to select a country, region and city/town/village from select lists, problem is that it needs to be global. I found this one http://www.meridianworlddata.com/Product-Overview.asp?itemid=731 but apart from the hefty price tag a quick search revealed

Aggregating server side form validation messages

2002-06-30 Thread Mark Leder
I'm doing both client side (JS) and server-side form validation. Typically in JS Client side, if there are a number of required fields not filled in by the user, upon submit, a single popup alert occurs listing all the fields that need to be filled in. I want to do this same process with server

RE: Aggregating server side form validation messages

2002-06-30 Thread Matthew Walker
Why use cflocation at all? Why not simply cfinclude the form template? -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED]] Sent: lundi 1 juillet 2002 16:57 To: CF-Talk Subject: Aggregating server side form validation messages I'm doing both client side (JS) and

Re: Aggregating server side form validation messages

2002-06-30 Thread James Sleeman
i usually do something like this CFSET entryErrors = CFIF thing that is incorrect CFSET entryErrors = ListAppend(entryErrors, Please fix the thing that is incorrect., ;) /CFIF in my server side action, then in the form display CFIF Len(entryErrors) CFOUTPUT Please correct the

Does cgi.http_referer ALWAYS work?

2002-06-30 Thread Mike Kear
I have an application that has to grant or deny access based on whether the user has paid membership fees. They can't get to the application unless the page that sends them there has also granted access through the online shop (.asp, written by someone else), so I figured if they have access to

Trouble with cfcontent - hanging the browser (IE6)

2002-06-30 Thread Nando
I've been trying to debug a cfcontent problem for many hours now. After searching the archive here and other sources, i've been I knocked up a test template with just the file push code to make sure i isolated the problem - and it still hangs the browser. so it has nothing to do with any other

RE: Aggregating server side form validation messages

2002-06-30 Thread Mark Leder
I guess I don't understand your response. My validation page is a separate CFInclude, so when someone click submit on the form page, they are sent to the form summary page. At the top of the summary page is an include to update the Session structure, then an include to do the validation. If

RE: Aggregating server side form validation messages

2002-06-30 Thread Matthew Walker
When you send the user back to the form you could simply cfinclude the form template. That is: if you haven't already output some visuals. IMO it's the elegant way. I see you are placing all the data in session variables. If you used cfinclude instead of cflocation you wouldn't need to do this.

RE: Does cgi.http_referer ALWAYS work?

2002-06-30 Thread Tony Gruen
I use cgi.http_referer on one of our sites. The issue that has arisen with us is if someone has Firewall software installed on their computer or is behind a really restricted firewall on their network. As far as I have been able to determine, under such circumstances there is a chance that