Debugging a Runaway CF5 Server?

2002-10-31 Thread Ben Koshy
I've got a dedicated server running a fairly busy application and about once or twice a day, something is causing the Cold Fusion Server (Version 5) to max out at 100% for about 30 minutes and then settle back down again. While its maxxed out (P4 2Ghz Server), the server pages respond only after

RE: Debugging a Runaway CF5 Server?

2002-10-31 Thread Ben Koshy
Never mind the PCODE Errors, I've tracked them to a MM Article because of the CFERROR type=monitor tag I was using...but the rest is all valid... :D -Original Message- From: Ben Koshy [mailto:benlist;w3media.net] Sent: Thursday, October 31, 2002 1:15 AM To: CF-Talk Subject: Debugging a

Re: multi-lingual translations

2002-10-31 Thread Paul Hastings
Does anyone know if anything (Custom tag etc) exists whereby it would be possible to translate text into other languages on the fly. Ie coming from a database and being translated before it appears on the page? Think it might be a long shot but worth a try. If not this, would anyone have any

RE: Need More Input - Windows Mailserver

2002-10-31 Thread Ian Tait
There is always what used to be NTMail www.gordano.com or without some of the stuff you want, but free, JAMES - http://jakarta.apache.org/james/ Ian -Original Message- From: Joshua Miller [mailto:josh;joshuasmiller.com] Sent: 31 October 2002 06:30 To: CF-Talk Subject: OT: Need More

RE: Coldfusion timing

2002-10-31 Thread Ian Tait
If you're using MSSQL, set up a scheduled job and run your page using curl maybe? Ian -Original Message- From: Jason Miller [mailto:millerj;etcnj.com] Sent: 31 October 2002 02:08 To: CF-Talk Subject: Re: Coldfusion timing find a unix box and set a cron tab up. :) jay miller Ben Doom

RE: multi-lingual translations

2002-10-31 Thread Robertson-Ravo, Neil (REC)
In short, it cant really be done; the complexity of language makes it nigh on impossible. -Original Message- From: [EMAIL PROTECTED] [mailto:paul;tei.or.th] Sent: 31 October 2002 09:49 To: CF-Talk Subject: Re: multi-lingual translations Does anyone know if anything (Custom tag etc)

[Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Jochem van Dieten
FYI: IIS 4: reboot required IIS 5: possibly reboot required (I had to, but the message suggested was that was for a problem due to my specific configuration) Jochem Original Message === Security

Re: multi-lingual translations

2002-10-31 Thread Paul Hastings
In short, it cant really be done; the complexity of language makes it nigh on impossible. well if you want to translate stuff like How well do you get along with your wife? yes, you might get punched out or otherwise into some kind of trouble (ala the famous monty python skit). but if you're

Re: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Paul Hastings
IIS 5: possibly reboot required (I had to, but the message suggested was that was for a problem due to my specific configuration) if you stop the admin service 1st i think you can get away w/out one. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system

RE: multi-lingual translations

2002-10-31 Thread Robertson-Ravo, Neil (REC)
Yep, where online translations fall down are with verbs etc. and the fact spoken and business lexicons of different languages are dramatically different. It could translate one sentence into the spoken way perfectly but it may not be exaclty the way it should be written. Many languages suffer

CF MX Query of Query Lower() Function

2002-10-31 Thread DDE
Looks like the usage of Lower() function in a query of query does not work as in standard SQL. Simple example: if you have a table containing names ( first_name middle_name and last_name) the following query of query : cfquery name=”myquery” dbtype=”query” select * from myfirstquery where

RE: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Joshua Miller
Jochem, Where do you signup to be alerted about such vulnerabilities and patches? Joshua Miller [EMAIL PROTECTED] -Original Message- From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl] Sent: Thursday, October 31, 2002 5:23 AM To: CF-Talk Subject: [Fwd: S-02-104: Microsoft:

Re: MM Stock

2002-10-31 Thread Pete Ruckelshaus
Let me tell you about the 25 shares of Allaire that I bought at $140...only to see it go up to $180...and then plummet to the basement. I keep my MACR stock that the Allaire stock was converted into as a testament to my own youthful stupidity. Pete - Original Message - From: Rob Rohan

basic question - testing for no reuslts from query

2002-10-31 Thread Tim Laureska
I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message when a query produces no results.. like: CFIF.blah, blah NO RESULTS cfelse #RESULTS# CFIF I'm looking for what the blah, blah would be?? Tim Laureska

Re: CF MX Query of Query Lower() Function

2002-10-31 Thread Jochem van Dieten
DDE wrote: Looks like the usage of Lower() function in a query of query does not work as in standard SQL. Simple example: if you have a table containing names ( first_name middle_name and last_name) the following query of query : cfquery name=”myquery” dbtype=”query” select * from

Re: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Jochem van Dieten
Joshua Miller wrote: Where do you signup to be alerted about such vulnerabilities and patches? Probably http://www.cert.org/ Most countries have their own, so you could also Google on CERT and your ccTLD. Jochem ~|

RE: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Robertson-Ravo, Neil (REC)
Start Windows Update or Tools Windows Update from IE. You can then download all the necessary updates and the Critical Update notification package which will run in your system tray. It can download and alert you of all the latest patches and fixes for the Windows platform.. enjoy. FYI :

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
cfif query.recordcount gt 0 no records found cfelse display records /cfif HTH -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Thursday, October 31, 2002 7:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Adrian Lynch
cfif queru.RecordCount EQ 0 No results cfelse #results# /cfif -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: 31 October 2002 13:27 To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this

RE: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Craig Thomas
Where do you signup to be alerted about such vulnerabilities and patches? http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/ bulletin/notify.asp for MS prods. -Craig ~| Archives:

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Jochem van Dieten
Tim Laureska wrote: I'm ashamed to say I've been banging my head on this for an hour. what is a simple way to code a statement that displays a message when a query produces no results.. like: Use queryname.recordcount Jochem

RE: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Robertson-Ravo, Neil (REC)
you can also goto www.windows.com/security or http://www.microsoft.com/technet/treeview/?url=/technet/security/current.asp ?frame=true -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:Neil.Robertson-Ravo;csd.reedexpo.com] Sent: 31 October 2002 13:27 To: CF-Talk Subject: RE:

RE: basic question - testing for no results from query

2002-10-31 Thread Timothy Heald
cfif queryname.recordcount showstuff /cfif Now if your using aggregate functions (like max() min() avg()) you need to check for a len in the field your looking for, because the record count will be 1 even if it's just for an empty field, so I will do: cfif len(queryname.columnname)

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
cfif queryname.RecordCount LT 1 Nothing here to show ya cfelse BOO! its halloween, something has been returned! /cfif ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Tim

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
or just : cfif query.recordcount or you could use ListLen(ValueList(query,,)) -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: 31 October 2002 13:30 To: CF-Talk Subject: RE: basic question - testing for no reuslts from query cfif query.recordcount gt

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
clint. this is the opposite of what he wanted, and doesn't make sensecheck your logic :) cfif query.recordcount gt 0 no records found cfelse display records /cfif should be cfif query.recordcount gt 0 display records cfelse none to show /cfif Happy

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Man, I have been up way to long ;) if query.recordcount eq 0 no records found -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: Thursday, October 31, 2002 7:30 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Clint Tredway
Ya, that's what I get for thinking on no sleep.. I corrected it :) -Original Message- From: Tony Weeg [mailto:tony;navtrak.net] Sent: Thursday, October 31, 2002 7:38 AM To: CF-Talk Subject: RE: basic question - testing for no reuslts from query clint. this is the opposite of what he

Re: CF MX Query of Query Lower() Function

2002-10-31 Thread Tim Painter
I believe qoq has a very limited set of functions available. To get around that, I set the original query to also retrieve the name in lower case and in my qoq, search on the lower case set field. e.g cfquery name=qry1 datasource=bar Select firstname, lower(firstname) as lower_first from

Re: [Fwd: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Jochem van Dieten
Robertson-Ravo, Neil (REC) wrote: Start Windows Update or Tools Windows Update from IE. You can then download all the necessary updates and the Critical Update notification package which will run in your system tray. It can download and alert you of all the latest patches and fixes for

RE: another error...cfc...datatype...xml

2002-10-31 Thread Tony Weeg
so either way, good morning by the way, should I just have them make an http request to a page, that is waiting for those values...to be posted, and just return xml? is that what im hearing here? well, either way, it was cool to do my first webservice and make it work ..tony Tony Weeg

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tim Laureska
Many thanks for the responses... checking for query.recordcount EQ 0 works fine... just didn't know the syntax -Original Message- From: Clint Tredway [mailto:ctredway;fishermenstudios.com] Sent: Thursday, October 31, 2002 8:44 AM To: CF-Talk Subject: RE: basic question - testing for no

Re: basic question - testing for no reuslts from query

2002-10-31 Thread Stephen Moretti
Neil!!! Slap wristies!!! ;o) or just : cfif query.recordcount record count is numeric not boolean! Yes OK, so CF isn't typed _yet_ and will take anything other than 0 to be true, but it would be better to write it correctly, so your application is more readable and won't fall over if CF

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread D. Delcomminette
Hi Jochem, It is exactly what I meant, the Lower() causes the problem. In my case, it's not easy to add an intermediate QoQ since my QoQ is generated dynamically on a lot of criteria entered in a form by a user. I guess I'll have to use Oracle vues instead of QoQ in the mean time .. by the

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread D. Delcomminette
HI, Thanks for your answer. However for different reason it is not acceptable for me to use the Lower() in the original query. So I think in this case, I will replace the QoQ by an Oracle view, which will do the thing ... Dominique -Original Message- From: Tim Painter

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
sorry :-) I like to use and abuse it typelessness -Original Message- From: Stephen Moretti [mailto:stephen;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil!!! Slap wristies!!! ;o) or just : cfif

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Robertson-Ravo, Neil (REC)
its a pretty bug IF though, is there rumours banting around that it is to become a typed language... -Original Message- From: Stephen Moretti [mailto:stephen;cfmaster.co.uk] Sent: 31 October 2002 14:07 To: CF-Talk Subject: Re: basic question - testing for no reuslts from query Neil!!!

Re: Where do CFC's go?

2002-10-31 Thread Troy Simpson
Sorry, but I'm not sure if I know the answer to that question. But I think I'll take a stab at an answer. Could you have your hosting service create a mapping for your coldfusion/web root? For example, a mapping in CF Admin might be Logical Path: /yourdomainname Directory Path:

Re: CF MX Query of Query Lower() Function

2002-10-31 Thread Jochem van Dieten
D. Delcomminette wrote: by the way what does the mean time exactly means ?? It is a typo, it is supposed to be meantime :) Which in this case is the time between submitting the bug to Macromedia, for which I posted the link, and the time Macromedia fixes it. Jochem

RP: Problems with Creating UPS Web Service

2002-10-31 Thread Bryan F. Hogan
Hello everyone, I'm in the process of creating a webservice for the UPS address validation service. It is being a pain. Sometimes it works, sometimes CF says it is not found and sometimes it throws an unknown exception. Could someone please try this and let me know if it works for you. If it does

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Everett, Al
Errr... cfif queryName.RecordCount EQ 0 .. -Original Message- From: Tim Laureska [mailto:hometeam;goeaston.net] Sent: Thursday, October 31, 2002 8:27 AM To: CF-Talk Subject: basic question - testing for no reuslts from query I'm ashamed to say I've been banging my head on this

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread Raymond Camden
CFMX Query of Query has an lcase function. You could use this to do a non-case sensitive type search. This function did not exist in CF5 QofQ however. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL

OT: disabling SMS

2002-10-31 Thread Kris Pilles
Anyone know how to disable SMS... I want to stop people from taking control of my computer... Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread DDE
Never mind the typo, what scares me is : the time between submitting the bug to Macromedia, for which I posted the link, and the time Macromedia fixes it. ;-) Dominique -Original Message- From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl] Sent: Thursday, October 31, 2002 6:20 PM

RE: basic question - testing for no reuslts from query

2002-10-31 Thread Tony Weeg
its all good, I saw that...just didn't want the already confused soul to get more confused get some sleep man. later. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From:

Re: CF MX Query of Query Lower() Function

2002-10-31 Thread Jochem van Dieten
Raymond Camden wrote: CFMX Query of Query has an lcase function. You could use this to do a non-case sensitive type search. This function did not exist in CF5 QofQ however. LCase() throws an syntax error and is not in the docs [1], whereas Lower() is and only throws a null exception when it

RE: Debugging a Runaway CF5 Server?

2002-10-31 Thread kpeterson
Is the database also running hard? Is there anything special happening on your database at the same time. (backup?) Have you checked the event viewer to see if there are any errors reported at the same time by any other processes or applications? Can you use your web server log to isolate what the

RE: ColdFusion Defense (WAS: OT:Yahoo moving to PHP)

2002-10-31 Thread S . Isaac Dealey
My (apparently poor 8^) example was meant to focus more on the Gold Anniversary Edition portion. The point being that a CF prefix (just like a ++ postfix) is more useful than some other common naming conventions like Gold, Platinum, Anniversary Edition, etc. When naming a product, I

CFHTTP error

2002-10-31 Thread stas
I'm setting a simple scenario where I need to grab a file and save it. The code is straight from the example section, minus the actuall CFHTTP call. This is on my development workstation running W2K SP3 and 4.5.1 SP2. I've verified that I can load the file in the browser manually, so that's not an

RE: CFHTTP error

2002-10-31 Thread Dave Watts
I'm setting a simple scenario where I need to grab a file and save it. The code is straight from the example section, minus the actual CFHTTP call. This is on my development workstation running W2K SP3 and 4.5.1 SP2. I've verified that I can load the file in the browser manually, so

RE: CFHTTP error

2002-10-31 Thread Shawn Regan
If that is a copy/paste of the code then, you mistyped http cfhttp url=htpp://127.0.0.1/of/in/testfile.txt method=GET Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m -Original Message- From: [EMAIL

RE: disabling SMS

2002-10-31 Thread Tony Weeg
yes. xp? stop the messenger service. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Kris Pilles [mailto:kpilles;wsboces.org] Sent: Thursday, October 31, 2002 9:49 AM To:

Re: CFHTTP error

2002-10-31 Thread stas
Whoops! Thanks Shawn! And I was about to re-enable all the MSBA and IIS lockdown stuff. - Original Message - From: Shawn Regan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 31, 2002 10:39 AM Subject: RE: CFHTTP error If that is a copy/paste of the code then,

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread Raymond Camden
CFMX Query of Query has an lcase function. You could use this to do a non-case sensitive type search. This function did not exist in CF5 QofQ however. LCase() throws an syntax error and is not in the docs [1], whereas Lower() is and only throws a null exception when it gets to

RE: S-02-104: Microsoft: MS02-062 Cumulative Patch for IIS]

2002-10-31 Thread Matt Robertson
Thx Paul, shutting down IIS Admin service in advance kept me from having to reboot on my updated-until-today SP3 system. --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com ~| Archives:

Re: CF MX Query of Query Lower() Function

2002-10-31 Thread Jochem van Dieten
Raymond Camden wrote: It's what I get for posting before coffee. Yes, Lower() is right, not Lcase. So the issue is that it's not handling a null value in the column? Yes. But I presume Dominique has already filled out the bug form. Jochem

RE: CF-Talk-list V1 #60

2002-10-31 Thread Chris Jenkins
I've been trying to use CFMX and flash remoting with little success. I even downloaded a zip file from macromedia which has all the files needed for things to work, with no luck. I have CFMX enterprise and I downloaded Macromedia Flash Remoting MX Components. When I play the flash movie, no

RE: CF MX Query of Query Lower() Function

2002-10-31 Thread DDE
Yes I did, Dominique -Original Message- From: Jochem van Dieten [mailto:jochemd;oli.tudelft.nl] Sent: Thursday, October 31, 2002 8:12 PM To: CF-Talk Subject: Re: CF MX Query of Query Lower() Function Raymond Camden wrote: It's what I get for posting before coffee. Yes, Lower() is

RE: Relative path for FileExists() inside custom tag

2002-10-31 Thread Paul Kenney
Bob, The argument for the function FileExists() is not a relative path, but it is an absolute path. If you want to use an relative path, then the function ExpandPath() will convert a relative path to its abolute path. The path is resolved as if it is relative to the template in which the

Flash Remoting

2002-10-31 Thread Chris Jenkins
Never mind guys, I got it working.

RE: Relative path for FileExists() inside custom tag

2002-10-31 Thread S . Isaac Dealey
Bob, The argument for the function FileExists() is not a relative path, but it is an absolute path. If you want to use an relative path, then the function ExpandPath() will convert a relative path to its abolute path. The path is resolved as if it is relative to the template in which the

OT js value validation

2002-10-31 Thread Tim Do
document.editExemptions.SCEPTempExemptUnits.value document.editExemptions.totalUnits.value I pass in SCEPTempExemptUnits as 2 and totalUnits as 16... Why would this think that 2 is greater than 16? It works if I pass in SCEPTempExemptUnits as 1 or 10.. Any ideas? Thanks

Re: Thank you, Macromedia!

2002-10-31 Thread Bryan Stevenson
There's banning going on about OT posts. One specific topic that is even getting it's own list is Macromedia related talk. Now theMistress of the House posts to Thank Macromedia!!! I'm not usually too challenging on this list, but is the pot calling the kettle black or what!!! Practice what

RE: CF-Talk-list V1 #60

2002-10-31 Thread Anthony Wong
The {webroot}/flashservices/gateway does not translate to a physical path in the application server. It's refering to a java path(no much was given out on this, so i'm still guessing) which gives you the flash remoting capability. You might want to check your CFMX path and the CFCs path. If these

Re: OT:Yahoo moving to PHP

2002-10-31 Thread Cutter - \(CFTalk List\)
And now my two cents: I've been a member of this list for a few days. I'm a beginner/intermediate ColdFusion Developer looking to expand my skills and learn new things. I'm really excited by the changes that MX brings about and can't wait for my sysad team to get the new server up. For the

Thanks (was Relative path for FileExists() inside custom tag)

2002-10-31 Thread Bob Haroche
The argument for the function FileExists() is not a relative path, but it is an absolute path. Oh, yes. I meant ExpandPath(), which I'll be using to first do the conversion to an absolute path. The path is resolved as if it is relative to the template in which the function call resides.

RE: OT js value validation

2002-10-31 Thread Dave Watts
document.editExemptions.SCEPTempExemptUnits.value document.editExemptions.totalUnits.value I pass in SCEPTempExemptUnits as 2 and totalUnits as 16... Why would this think that 2 is greater than 16? It works if I pass in SCEPTempExemptUnits as 1 or 10.. Any ideas? By default, the values

RE: Thank you, Macromedia!

2002-10-31 Thread Mark Smyth
Ill leave it. Judith and Micheal do a great job -Original Message- From: Bryan Stevenson [mailto:bryan;electricedgesystems.com] Sent: 31 October 2002 17:02 To: CF-Talk Subject: Re: Thank you, Macromedia! There's banning going on about OT posts. One specific topic that is even getting

RE: multi-lingual translations

2002-10-31 Thread Chad
Agreed... we have use www.techtranslation.com in the past for web site translation. They understand web sites and databases etc. Great people to work with also. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:Neil.Robertson- [EMAIL PROTECTED]] Sent: Thursday, October

RE: Thank you, Macromedia!

2002-10-31 Thread Robertson-Ravo, Neil (REC)
blah blah blah. it was a Thank You note and a respectful one, it did not require an answer I fear you were the victim of an OT rage, and you are just a little miffed a, there there :-) -Original Message- From: Bryan Stevenson

RE: OT js value validation

2002-10-31 Thread Ben Doom
It's seeing them as strings. It's giving you an alphabetical greater than -- 2 is greater than 1, so 2 is greater than 16. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Tim Do [mailto:TDo;lahd.lacity.org] : Sent: Thursday, October 31,

RE: multi-lingual translations

2002-10-31 Thread Andy Ousterhout
Plan on paying $50-$75 per page. Then you should have a multi-lingual user review the translations to be sure that each page says what you want in the tone your want. Pictures may also have to be localized to match local customs. -Original Message- From: Chad [mailto:cgray;careyweb.com]

RE: OT js value validation

2002-10-31 Thread Rob Rohan
I believe they are considered strings unless you specify otherwise. Try parseInt(document.editExemptions.SCEPTempExemptUnits.value) parseInt(document.editExemptions.totalUnits.value) -Original Message- From: Tim Do [mailto:TDo;lahd.lacity.org] Sent: Thursday, October 31, 2002 8:57 AM

Re: OT js value validation

2002-10-31 Thread Cary Gordon
It sounds like you are evaluating these as text. If you aren't using any quotes in the actual code, take a look at the input process. Cary At 08:56 AM 10/31/2002 -0800, you wrote: document.editExemptions.SCEPTempExemptUnits.value document.editExemptions.totalUnits.value I pass in

Re: Thank you, Macromedia!

2002-10-31 Thread Bryan Stevenson
Yes it was a thank you note...and an off topic one. It was respectful...and off topic I think it's great what they pulled off and that so many folks helped out...but if you're going to chastise people for OT posts...don't post them yourself. Nobody's saying Michael and Judith don't do a great

Dreamweaver MX and RDS

2002-10-31 Thread Harold Brauer
I am having problems connecting to through RDS in DreamweaverMX to one of my servers. I can see the list of files, but when I try to open up a page it takes forever and then times out. Could a problem be that I am running CF5 on the server? Also is it worth it to define sites in DreamweaverMX

Cutter's post about OT posts [was Re: OT:Yahoo moving to PHP]

2002-10-31 Thread Bud
On 10/31/02, Cutter - \(CFTalk List\) penned: I've been a member of this list for a few days. I'm a beginner/intermediate ColdFusion Developer looking to expand my skills and learn new things. I'm really excited by the changes that MX brings about and can't wait for my sysad team to get the new

Re: Thank you, Macromedia!

2002-10-31 Thread Jeffry Houser
At 09:27 AM 10/31/2002 -0800, you wrote: Yes it was a thank you note...and an off topic one. It was respectful...and off topic I think it's great what they pulled off and that so many folks helped out...but if you're going to chastise people for OT posts...don't post them yourself. I do not

Re: OT js value validation

2002-10-31 Thread S . Isaac Dealey
document.editExemptions.SCEPTempExemptUnits.value document.editExemptions.totalUnits.value I pass in SCEPTempExemptUnits as 2 and totalUnits as 16... Why would this think that 2 is greater than 16? It works if I pass in SCEPTempExemptUnits as 1 or 10.. Any ideas? Probably because it's

RE: Thank you, Macromedia!

2002-10-31 Thread Mark A. Kruger - CFG
Bryan, ---you wrote-- I vote for axing ALL OT posts that aren't directly related to a technical issue. --- A) - your current rant is not of a technical nature. B) - learn to use the delete key based on the topic. I know it may come as a surprise to you, but

Re: Thank you, Macromedia!

2002-10-31 Thread Bryan Stevenson
perhaps chastise was the wrong word...they banned Matt...is banned a better word ;-) I'm sure you get my point. If you kill a thread about Macromedia...don't post thanking Macromedia. The sentiment is nice, but the forum is wrong. I'm not going to spend the rest of my day defending myself as

Re: Thank you, Macromedia!

2002-10-31 Thread Michael Ross
1 - Get over it or don't read it 2 - Unsubscribe [EMAIL PROTECTED] 10/31/02 12:44PM perhaps chastise was the wrong word...they banned Matt...is banned a better word ;-) I'm sure you get my point. If you kill a thread about Macromedia...don't post thanking Macromedia. The sentiment is nice,

Re: Thank you, Macromedia!

2002-10-31 Thread Bryan Stevenson
OK sorry have to respond to Mark...couldn't get his offlist address Mark...read my posts man...I said I don't care about OT posts and do delete them (ya try reading the posts yourself) ;-) My complaint is that posts about MM have been killed before. Judith actually posted saying this very

OT: MySQL CF

2002-10-31 Thread FlashGuy
Hi, Something weird is happening. Before I switched my databases from Access to MySQL my app was working OK. Now when I insert data into my SQL database one of the fields is getting mucked up and I don't know why? Here is an example of a entry how is *should* appear in the database: Should

OT Rage was RE: Thank you, Macromedia!

2002-10-31 Thread S . Isaac Dealey
blah blah blah. it was a Thank You note and a respectful one, it did not require an answer I fear you were the victim of an OT rage, and you are just a little miffed a, there there :-) Is that like road rage? :) *^% OT! *^% OT! Ah'm 'onna ha'da pool ma 9 an' buss'a

Re: Thank you, Macromedia!

2002-10-31 Thread Jeffry Houser
At 09:44 AM 10/31/2002 -0800, you wrote: perhaps chastise was the wrong word...they banned Matt...is banned a better word ;-) : hmm: I didn't know. -- Jeffry Houser | mailto:jeff;farcryfly.com DotComIt, Putting you on the web AIM: Reboog711 | Phone: 1-203-379-0773 -- My CFMX Book:

Thank you list! (was: Thank you, Macromedia!)

2002-10-31 Thread Alex Hubner
Come on Guys!! Lets finish all this, please Is an off-topic? JUST IGNORE IT (mean: DO NOT REPLY!) Simple like that. Is an off-topic from the list administrators? Ignore it too, they are users just like me and you before been administrators. The list can be a better pleace if you just ignore

Re: MySQL CF

2002-10-31 Thread Paul Giesenhagen
\ is an escape character .. .Matt Robertson gave me a good tip .. use cfqueryparam for your insert and let CF escape all the correct characters. Hope this helps. Paul Giesenhagen QuillDesign - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Re: MySQL CF

2002-10-31 Thread FlashGuy
I see...OK...trying the cfqueryparam now. Getting ? inserted into my database. Must be wrong syntax. I'll keep trying. On Thu, 31 Oct 2002 11:53:38 -0600, Paul Giesenhagen wrote: \ is an escape character .. .Matt Robertson gave me a good tip .. use cfqueryparam for your insert and let CF

RE: Thank you, Macromedia!

2002-10-31 Thread Mark A. Kruger - CFG
ok ok... I didnt' read all your post (being addicted to my delete key as I am). sorry :-~ g. -mk -Original Message- From: Bryan Stevenson [mailto:bryan;electricedgesystems.com] Sent: Thursday, October 31, 2002 11:49 AM To: CF-Talk Subject: Re: Thank you, Macromedia! OK sorry have to

RE: MySQL CF

2002-10-31 Thread Rob Rohan
well \ is a C type escape character. So like a new line is \n or backspace is \b if you double the \ that is the escape character for \ so D:\\data\\book1 should do it. -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: Thursday, October 31, 2002 9:47 AM To: CF-Talk

Re: OT js value validation

2002-10-31 Thread ksuh
When using parseInt, make sure to specify the radix component (usually, you want base 10). - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] Date: Thursday, October 31, 2002 10:30 am Subject: Re: OT js value validation document.editExemptions.SCEPTempExemptUnits.value

RE: MySQL CF

2002-10-31 Thread Matt Robertson
This will do it for you. Watch out for any unintended line breaks that might make it into this msg. Notice that its not necessary to use tickmarks on a text field. Use cfsqltype=CF_SQL_LONGVARCHAR for memo fields. These sql types can be used on Access, mySQL, Oracle and MS SQL without

Re: CFFILE WRITE TO EXCEL SHEET

2002-10-31 Thread Steven Durette
Jamie, If this is to be text, make sure that the field has a ' in front of the field. That's how excel deals with numbers that need to be text. Steve Durette - Original Message - From: JAIME HOI [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 31, 2002 2:54 AM

RE: more webservice woes

2002-10-31 Thread Pete Freitag
Does viewing the CFC in the CFC explorer work (visit the url of the CFC)? Did you visit the WSDL url in your web browser?, it usually gives a more meaningful error message. Try deleting everything in the wwwroot/WEB-INF/cfc-skeletons directory, and run it again.

Email client in Oreilly book By Rob Brooks-Bilson

2002-10-31 Thread Kodjo Ackah
I am trying to get this email client to work on my site but really struggling. The problem code seems to be here. CFSET PARAMETERS = EmailAddress=#URLEncodedFormat(EmailAddress)#PopServer= #URLEncodedFormat(PopServer)#SMTPServer=#URLEncodedFormat(SMTPServer)# Username=

RE: MySQL CF

2002-10-31 Thread FlashGuy
That did the trick. Thanks On Thu, 31 Oct 2002 10:11:32 -0800, Matt Robertson wrote: This will do it for you. Watch out for any unintended line breaks that might make it into this msg. Notice that its not necessary to use tickmarks on a text field. Use cfsqltype=CF_SQL_LONGVARCHAR for

index server wildcard query problems?

2002-10-31 Thread Carl x
Hi, I can't seem to get the following query of an index server collection to search wildcards? It will only return exact results. I am using the code available at http://www.cfcomet.com/index_server/ on win 2k cf server 5. Collection size 170mb and contains 60,000 docs. I have tried using,

RE: Thank you, Macromedia!

2002-10-31 Thread Craig Thomas
perhaps chastise was the wrong word...they banned Matt... Is this true? -Craig ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Dreamweaver Keyboard mapping (cf studio user forced to convert!)

2002-10-31 Thread Steven Durette
Can any one tell me if there is a way to get the ctrl-m functionality from Studio to work in Dreamweaver. Many times I have to work through other peoples cfcode and the ability to jump to the end tag for the current tag is extremely helpful. Thanks Steve Durette

  1   2   3   >