RE: HELP NEEDED

2002-03-15 Thread Allan Pichler
Well ... the thing is ... I'm not executing any perl scripts from my cf machine (Win2k with IIS) That's exactly what I need . a way for the cf machine to execute a perl script on another server (FreeBSD) Anyone ? @llan -Original Message- From: Matthew R. Small [mailto:[EMAIL

RE: CFQUERYPARAM and dates

2002-03-15 Thread Conrad Classen
Check the cfsqltype value you are using (CF_SQL_TIMESTAMP rather than CF_SQL_DATE) cfqueryparam cfsqltype=CF_SQL_TIMESTAMP value=#CreateODBCDate(Now())#/ Is is not better to just use the SQL getdate() function instead? (You are wanting the current Date/Time) i.e. UPDATE dbo.tblXYZ SET

BLOB

2002-03-15 Thread Shahzad.Butt
Hi My Image is stored in SQL Server 2000, with image datatype. How can I get Image back in coldfusion from that BLOB and display image on browser (IE)? Shahzad Butt (Development Engineer) JJ FastFood Distribution Ltd. Office: +44 (0) 1992 701 722 Mobile: +44 (0) 7803 584 873 Fax: +44

RE: BLOB

2002-03-15 Thread Rich Wild
use CFX_GETIMAGE http://www.funjunkie.co.uk/link.cfm?CMBA4CQ8 display.cfm === img src=myImage.cfm myImage.cfm === CFX_GetImage DataSource=#DataSource# User=#SQLUser# Password=#SQLPassword# SQL=SELECT GeoImage FROM Images WHERE Image_ID = #url.ImageID#

RE: SQL CF Question

2002-03-15 Thread John Wilker
Oh oops. You need another CFOUTPUT group = LnkCategoryID inside the first CFOUTPUT that should do it. I don't have any code in front of me but that should work. J. John Wilker Web Applications Consultant, and Author Macromedia Certified ColdFusion Developer President/Founder, Inland Empire

RE: SQL case insensitive search ???

2002-03-15 Thread John Wilker
My query returns either when searching (on my SQL box) for '%elp%' found Help Desk and HELP DESK and '%ELP%' did likewise. But yeah Lcase() or Ucase() ing the string I would think would do it if you aren't getting the same results. J. John Wilker Web Applications Consultant, and Author

RE: SQL Query Analyzer

2002-03-15 Thread Bill Grover
As Lon said check your Tools|Options setting. I believe the default for the maximum is ~250 characters and you can increase it. __ Bill Grover Supervisor MIS Phone: 301.424.3300 x3324 EU Services, Inc.

Re: SQL case insensitive search ???

2002-03-15 Thread Tomo Smith
the MSsql install is by default case insensitive. - Original Message - From: John Wilker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 12:16 PM Subject: RE: SQL case insensitive search ??? My query returns either when searching (on my SQL box) for '%elp%'

RE: SQL help please

2002-03-15 Thread Bill Grover
If you do that select you will end up with EXACTLY the same data as you started with + a count column that will always be 1. The issue is that you kind of want to group the paycatid field within changes of the paycatid field. Therefore you have to process each record one at a time looking for a

Debug output won't display!

2002-03-15 Thread Pete Ruckelshaus
I'm trying to get page timings on some problems I'm trying to debug, but I can't get them to display. I've set my IP address in CF Administrator's debugging IP's screen, I've got debugging options turned on, etc. I checked the archive and couldn't find anything. The page is using cfcache but

RE: Debug output won't display!

2002-03-15 Thread Mike Connolly
Are you going through a proxy server? You'll need to register your proxy server IP address for debugging. -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: 15 March 2002 13:27 To: CF-Talk Subject: Debug output won't display! I'm trying to get page timings on

Re: ICQ Hottie Spam Bot Turing Test

2002-03-15 Thread Sharon DiOrio
Looks like the progam Eliza from way back when in my Mac days. If I'm not mistaken, there used to be a dirty-word version of Eliza that would talk dirty to you. Sharon - Original Message - From: David Schmidt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 14, 2002

Re: Debug output won't display!

2002-03-15 Thread Jochem van Dieten
Pete Ruckelshaus wrote: I'm trying to get page timings on some problems I'm trying to debug, but I can't get them to display. I've set my IP address in CF Administrator's debugging IP's screen, I've got debugging options turned on, etc. I checked the archive and couldn't find anything. The

RE: Debug output won't display!

2002-03-15 Thread Albrechtas, Adam
Try adding mode=debug to the query string of the page you are calling. -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 8:27 AM To: CF-Talk Subject: Debug output won't display! I'm trying to get page timings on some problems I'm trying

Little OT: AOL 8 beta using Mozilla Gecko engine

2002-03-15 Thread Robert Everland
No one has really mentioned this to the groups yet, I just wanted everyone to be aware of this. This will affect everyone if it goes through. This is not based on crappy Netscape that doesn't even display images correct, it's based on the much more stable Mozilla client. This has come up

Re: CFLDAP question

2002-03-15 Thread Michael Ross
In Novell there is an attribute called GroupMembership that will get all the groups a user is in. Try that. Here is my query CFLDAP NAME=GetGroups ACTION=Query SERVER=xxx.xxx.xxx.xxx ATTRIBUTES=groupMembership SCOPE=SUBTREE START=ou=campus,o=osu_mc

Restart CF from command line?

2002-03-15 Thread Jamie Jackson
I'd like to be able to restart the CF service from a template. Does anyone have a .bat file that I could use with cfexecute, or some such solution? Thanks, Jamie __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM

RE: Restart CF from command line?

2002-03-15 Thread Albrechtas, Adam
You can start and stop services by using the net stop and net start commands. To get a list of names of services currently running type in net start at a command line. Find your ColdFusion services in the list. You can start or stop the services by using net stop Name of

Re: Prevent mode=debug working

2002-03-15 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: Hi all, I'm being a little slow today how can I disable the mode=debug function when entered by users in the url to display the list of params at the end of the page? Try cfsetting showdebugoutput=no as the last line in your OnRequestEnd.cfm Jochem

Re: Little OT: AOL 8 beta using Mozilla Gecko engine

2002-03-15 Thread Dave Carabetta
No one has really mentioned this to the groups yet, I just wanted everyone to be aware of this. This will affect everyone if it goes through. This is not based on crappy Netscape that doesn't even display images correct, it's based on the much more stable Mozilla client. This has come up

Re: SQL case insensitive search ???

2002-03-15 Thread Samuel Farmer
What database are you using? Other responses seem to have covered SQLServer. If you are using ORACLE then all searches are case sensitive and you would need to make both the column and the search criteria the same case in order to be case-insensitive. ORACLE has two functions UPPER and LOWER

Re: Little OT: AOL 8 beta using Mozilla Gecko engine

2002-03-15 Thread Nick McClure
But you can go to any store and pick up a free cd or 3, Or order an upgrade cd for free from AOL. The reason people are still using those older browsers is because they haven't upgraded their IE. When AOL moves to v8.0 that won't be an option. While not discounting the need to develop for it,

RE: ICQ Hottie Spam Bot Turing Test

2002-03-15 Thread David Schmidt
I still have the Freud text/graphic animation game for the Apple ][e. Brings back some memories... We were talking about you, not me. and Why do you believe you are stupid? grins Dave -Original Message- From: Sharon DiOrio [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 5:47 AM

RE: Restart CF from command line?

2002-03-15 Thread Steve Green
Take a look at the file 'cycle.bat' in your cfusion/bin directory. Modify a copy of this to do what you need. SteG. -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent: 15 March 2002 14:08 To: CF-Talk Subject: Restart CF from command line? I'd like to be able to

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
-Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just changed our website from one being on one server to being on 3 redundant web servers. The problem is, the web farm

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
Have you guys given thought to real time load management? Which would keep users on the machine they log into? -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just

Problem with formatting output

2002-03-15 Thread Larry Lyons
I'm working on a timesheet app. This is the record set that's returned from the stored procedure: Direct_Charge Job CostCode startDaterow_Number Col_Number Hours 1 Whatever 001-002 GA 2002-02-01 1 1 8 1 Whomever 001-002 GA

OT: Is Webring totally useless now?

2002-03-15 Thread Mike Kear
I am about to remove all my sites from webring, because I don't believe it is a ring any longer. Is it just me or have others found this too? I think they have ruined the benefit of a ring to site owners. No longer can my users move from site to site around a ring. Instead they click on a

Problem with CF Server Reports

2002-03-15 Thread Brockman, Chuck
I'm running into a situation where coldfusion is taking up most of my system resources on my server. If I look at the monitor for page/sec(memory), I get some extremely high spikes. The task manager shows cfserver running around 98% of cpu. I'm trying to use the server reports in the cf

RE: Problem with formatting output

2002-03-15 Thread David Schmidt
Looks like it could be a good use of query of query or grouping the cfoutput. -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 6:59 AM To: CF-Talk Subject: Problem with formatting output I'm working on a timesheet app. This is the record set

RE: Problem with formatting output

2002-03-15 Thread kbutterly
Just a few questions: Do you group on Job? I ask because the two letter code is different for the two instances of Whatever. Do you have a table that can be used to differentiate the direct costs from indirect costs? Is the date used in any way, or does the column number determine the date?

Upgrading from CF 4.5 to 5

2002-03-15 Thread Bryant Tyson
Has anyone here upgraded a server from CF 4.5 to 5 before? The situation is that we would like to upgrade a client but they have a custom built ecrypted app from a previous developer installed. The previous developer is no longer in business so I can not ask them anything and I would like to

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Cameron Childress
I've upgraded several servers from 4.5 to 5 without any issues at all. You best plan of action will be to install the app locally and do a test run of the upgrade. Hammer it in the places that might break, and cross your fingers! -Cameron Cameron Childress email: [EMAIL

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Tim Claremont
Do a little research into things like CFGRID. The move from 4.5 to 5 breaks it quite nicely. -Original Message- From: Bryant Tyson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 10:44 AM To: CF-Talk Subject: Upgrading from CF 4.5 to 5 Has anyone here upgraded a server from

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread David Schmidt
First, you say you would 'like' to perform the upgrade. Is this really a like instead of a need? Is there a feature that you need in 5 that is not offered in 4.5? If not, perhaps it is not worth the risk? -Original Message- From: Bryant Tyson [mailto:[EMAIL PROTECTED]] Sent: Friday,

RE: Problem with CF Server Reports

2002-03-15 Thread Brockman, Chuck
Never mind, just found the hotfix. Thanks -Original Message- From: Brockman, Chuck [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 10:09 AM To: CF-Talk Subject: Problem with CF Server Reports I'm running into a situation where coldfusion is taking up most of my system

Re: CFGRID problem driving me nuts

2002-03-15 Thread David Green
Sorry for the late response I switch to just a test action page and still have the problem here is all thats in the page. !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head titleUntitled/title /head body Test.cfm page br cfoutput #form.test# br !--- Test to see in normal

Re: Upgrading from CF 4.5 to 5

2002-03-15 Thread laszlo
...and cross your fingers! If you use CFTREE , you may want to pray too... laszlo Cameron Childress wrote: I've upgraded several servers from 4.5 to 5 without any issues at all. You best plan of action will be to install the app locally and do a test run of the upgrade. Hammer it in the

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Bryant Tyson
Indeed, David, we would like so that we can install a new set of graphing elements to their site. I've seen a couple of third party solutions for 4.5 but noted that the built-in graphing functions of CF 5 seem to be more reliable and flexible. - Bryant On Fri, 15 Mar 2002, David Schmidt wrote:

RE: DB.....Access to SQL

2002-03-15 Thread CF_JONNY
Thanks... Any Ideas how to generate a date into SQL with a hidden control? Also I get an error for the auto ID field when I insert records. Newby Jon -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 1:17 PM To: CF-Talk Subject: Re: DB.Access

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Matthew R. Small
Anybody - As somebody who's not used CF5.0 before, and somebody whose intranet makes extensive use of CFGRID, is it possible to modify the tag to use the 4.5 version? - Matt Small -Original Message- From: Bryant Tyson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 11:06 AM

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread David Schmidt
Had to ask :) Always like to do a sanity check before server upgrades. -Original Message- From: Bryant Tyson [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 8:06 AM To: CF-Talk Subject: RE: Upgrading from CF 4.5 to 5 Indeed, David, we would like so that we can install a new

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Tim Claremont
This subject has been a major headache for people upgrading from 4.5 to 5. Macromedia / Allaire has been all but silent on the problem, and offers virtually nothing in terms of a solution. After fighting for literally weeks on this issue, I finally decided to revert back to 4.5, and simply not

html email / newsletters

2002-03-15 Thread Gilbert Midonnet
I would like to send out html formatted newsletters. All the names are already in outlook. People will not be signing up for this as this is pretty much a closed distribution list. Is there any reason to use cf instead of outlook for this? -- glm

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Cameron Childress
This subject has been a major headache for people upgrading from 4.5 to 5. Yeah, I actually avoided CFGRID like the plague way before CF5 came out, so I was not effected by the CF5 problems. you are right though, there are several issues with it in CF5. Macromedia / Allaire has been all but

Re: OT: Is Webring totally useless now?

2002-03-15 Thread Bud
On 3/16/02, Mike Kear penned: Or have I got it all wrong and I'm being unduly harsh on them? I used to get a lot of casual passing traffic to some of my sites through the rings I was on, but I can't see anyone bothering to go through the gymnastics they're expected to go through now, can you?

CF Studio 4.5 Eating up CPU to 100%

2002-03-15 Thread PEREZ, RICHARD D (SBCSI)
Hey guys, I hope you can help me... my CF Studio 4.5 is acting weird. It is eating up my CPU to 100% when i am trying to open it. Actually it won't even open. I have tried re-loading the software but it keeps on happening. My environment is Windows NT 4.0 using Apache 1.3. Please let me know

RE: Upgrading from CF 4.5 to 5

2002-03-15 Thread Bud
On 3/15/02, David Schmidt penned: The situation is that we would like to upgrade a client but they have a custom built ecrypted app from a previous developer installed. The previous developer is no longer in business so I can not ask them anything and I would like to make sure there will be no

RE: html email / newsletters

2002-03-15 Thread Ian Lurie
Only if you want to manage/measure the effectiveness of the e-mails on a campaign basis. Then you could send out the newsletters using CF, log that fact, and track visitors as they come back from the e-mail... -Original Message- From: Gilbert Midonnet [mailto:[EMAIL PROTECTED]] Sent:

RE: html email / newsletters

2002-03-15 Thread Jerry Johnson
Or if you want to customize or personalize the emails. CFs great for that. Jerry Johnson [EMAIL PROTECTED] 03/15/02 11:28AM Only if you want to manage/measure the effectiveness of the e-mails on a campaign basis. Then you could send out the newsletters using CF, log that fact, and track

RE: html email / newsletters

2002-03-15 Thread Rick Eidson
You can personalize the messages and if you have profiles you will be able to use direct marketing. We have a journalist community that was a Yahoo group. I built a website in CF and now run the news letters through it. http://www.blueear.com We have profiles for each member and the news

CF / JS Issue

2002-03-15 Thread Tangorre, Michael T.
Hello all. I am having a problem getting this menu stuff to work in JS. The link below will show you the page with the error. http://149.84.162.227/xfuze/display/test4.cfm The actual CF code is below... The source form the link above will show you the output from this chunk of code. SCRIPT

RE: SQL case insensitive search ???

2002-03-15 Thread Tony Schreiber
Use a string function to force the search field to the same case as the search string: WHERE lower(searchfield) LIKE '%he%' Example '%he%' finds 'the' but not 'THE' I would like to find regardless of case... How is that done? At 09:38 PM 3/14/02 -0800, you wrote: it should be case

RE: CF Studio 4.5 Eating up CPU to 100%

2002-03-15 Thread VAN VLIET, SCOTT E (SBCSI)
I have had problems in the past with Studio 4.5 and other software conflicting (namely AutoCAD 2000i). Are you using 4.5.2? If you are not, you can download the update at from www.macromedia.com/downloads. Or you might uninstall your current software set, install CF Studio (making sure that it

native data sources option

2002-03-15 Thread Steven Dworman
Why would this option show up in administrator for one installation but not another? How can I get it to show up? Thanks, Steven D Dworman - Web Consultant Systems Administrator ComSpec International - http://www.comspec-intnl.com phone:

RE: html email / newsletters

2002-03-15 Thread Gilbert Midonnet
thx for the feedback. For this particular project tracking and personalization are unnecessary, but you've given me some ideas for the future. Thx -- glm --- This

Re: native data sources option

2002-03-15 Thread Dave Hannum
Native drivers are a feature of Enterprise Server and not Professional. Dave - Original Message - From: Steven Dworman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 12:05 PM Subject: native data sources option Why would this option show up in

RE: native data sources option

2002-03-15 Thread VAN VLIET, SCOTT E (SBCSI)
Native drivers are only available on Enterprise Edition. HTH! -- SCOTT VAN VLIET SENIOR ANALYST SBC SERVICES, INC Tel: 858.886.3878 Fax: 858.653.6763 Email: [EMAIL PROTECTED] -Original Message- From: Steven Dworman [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 9:05 AM

RE: SQL case insensitive search ???

2002-03-15 Thread Justin Greene
Just to be safe I would probably recommend WHERE lower(searchfield) LIKE lower('%he%') however, anytime you perform an evaluation on the left side of the = you force a table scan, which can create performance issues. This is the problem with trying to do case insensitive searches in a DB that

How do you 'blackout' a page while data being loaded?

2002-03-15 Thread one
Does anyone know how to make a page that will display a lot of data can be made to be completely black until all the information has been loaded and is ready for display? Some of the data in this instance is graphics being pulled from a database and it looks not very pretty as you see them being

Is is poss. to prevent page view till ALL data downloaded?

2002-03-15 Thread one
As an addition to last msg - is it possible to prevent a page view until all data has been downloaded? __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free

cflock scope error

2002-03-15 Thread Douglas Jordon
Hi, I've uploaded my shopping cart to a test account at Intermedia. Now the cart breaks when an item is added thusly: An unknown attribute 'scope' has been encountered at document position (18:42) to (18:46) while processing tag CFLOCK. This tag can only take the following attributes: NAME

Re: cflock scope error

2002-03-15 Thread Marius Milosav
It's related to the Version of CF they have. the scope attribute was added in 4.5. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Douglas Jordon

CF_inexpensive_reliable_ISP

2002-03-15 Thread coldfusion . developer
Does any have first hand expereince with a inexpensive and reilable CF hosting service. It's for a non-profit organization called TributeofLife.org D- __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20

RE: CF / JS Issue

2002-03-15 Thread Semrau, Steven L Mr RDAISA/SRA
Well I couldn't get the page loaded (it's our network) but right off the top of my head the body tag supports the onLoad and onUnload event handlers and (I could be wrong) but you are trying to re-define that function and that might be the problem. Change the name of the function to something

Re: cflock scope error

2002-03-15 Thread Dave Carabetta
It works on our development server. All that Intermedia support did was refer me to the CF reference on CFLOCK. It looks OK to me. Am I missing something? Do I need to lock each cfset separately? What version of CF are they using? The scope attribute was introduced with CF 4.5. Hope this

Re: CF_inexpensive_reliable_ISP

2002-03-15 Thread Jerry Johnson
If you define inexpensive. (And what type of databases, bandwidth, storage needs you require) I am sure you will get a host of answers. Jerry Johnson [EMAIL PROTECTED] 03/15/02 01:05PM Does any have first hand expereince with a inexpensive and reilable CF hosting service. It's for a

Re: CF_inexpensive_reliable_ISP

2002-03-15 Thread webst012
you really ought to register that domain name before you go telling people about it...I see it is still available. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 12:05 PM Subject: CF_inexpensive_reliable_ISP Does any have

RE: CF_inexpensive_reliable_ISP

2002-03-15 Thread Tangorre, Michael T.
I have been using hostmysite for almost a year now (www.hostmysite.com) They are very resonable and their tech support is awesome.. they have live chat 24/7!! I think one of their lowest plans is around $9/10 a month. HTH, Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: cflock scope error

2002-03-15 Thread Douglas Jordon
I assumed, mistakenly, that when Intermedia started supporting CF5 that we were getting it on our account. Apparently that isn't the case. I've requested the upgrade. Once again, many thanks. Dave Carabetta wrote: It works on our development server. All that Intermedia support did was refer

Re: CF_inexpensive_reliable_ISP

2002-03-15 Thread Greg Alton
http://www.totalsolutionsonline.com I can telll you first hand that they provide great service and support. Greg Alton CFDev - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:05 PM Subject: CF_inexpensive_reliable_ISP Does any

Re: CF_inexpensive_reliable_ISP

2002-03-15 Thread Dave Hannum
http://www.atswebnet.com/hosting.htm I host a few small sites with these guys. They've been very good so far (2yrs) Dave - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:05 PM Subject: CF_inexpensive_reliable_ISP Does any

RE: CF_inexpensive_reliable_ISP

2002-03-15 Thread Rice, John J
Very, very happy with http://cfxhosting.com. They are what you are looking for. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 1:05 PM To: CF-Talk Subject: CF_inexpensive_reliable_ISP Does any have first hand expereince with a

RE: CF_inexpensive_reliable_ISP

2002-03-15 Thread Tim Claremont
Crystaltech.com has been good for me with the exception of a few ip address changes over the last couple years. -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Friday, March 15, 2002 1:19 PM To: CF-Talk Subject: Re: CF_inexpensive_reliable_ISP

Re: CF_inexpensive_reliable_ISP

2002-03-15 Thread Jerry Johnson
I have been happy with www.wedohosting.com (4 months) Jerry Johnson [EMAIL PROTECTED] 03/15/02 01:05PM Does any have first hand expereince with a inexpensive and reilable CF hosting service. It's for a non-profit organization called TributeofLife.org D-

Re: CF / JS Issue

2002-03-15 Thread Greg Alton
Mike, function myMenus() { do something. } body onLoad=myMenus() Greg Alton CFDev To the best of my knowledge IE has some issues with DHTML in that it must be loaded before the page is rendered. The onLoad event handler just loads the menus... I tried renaming the function and

OT New window

2002-03-15 Thread Ray Bujarski
I am using the following code to open a new window. However when one window has already been spawned from the opener, any more new windows simply re-use the same one. I need to open a new window every time, (My users REALLY want to annoy themselves;-) Can anyone tell me how to get the

RE: OT New window

2002-03-15 Thread VAN VLIET, SCOTT E (SBCSI)
Try this out (* are added lines and ... are removed code for readability): script language=JavaScript !-- *1* var winCount = 0; function OpenWindow(strURL, strTitle, intWidth, intHeight) { ... *2* strTitle += winCount;

Re: OT New window

2002-03-15 Thread savan . thongvanh
call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date(), intWidth, intHeight); Ray Bujarski [EMAIL PROTECTED] on 03/15/2002 12:41:14 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: OT New window I am using the

Re: OT New window

2002-03-15 Thread Greg Alton
You need a new name for the window, so add an instance variable and append it's value to strTitle. I added to the code below. Greg Alton CFDev I am using the following code to open a new window. However when one window has already been spawned from the opener, any more new windows simply

OT: SQL delete count

2002-03-15 Thread Mark M. Kecko
I'm trying to count the number of records that are ACTUALLY DELETED in the following query. Is there a way to do this? I know the query runs over 100 records but I want to know, say that 50 were matches and got deleted. cfoutput query=AmazonItem cfquery name=DelDescriptions

Re: OT New window

2002-03-15 Thread Greg Alton
Simple is beautiful! Great idea! Greg Alton CFDev - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:50 PM Subject: Re: OT New window call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date(),

Session Vars and cfquery - cflock where?

2002-03-15 Thread Brunt, Michael
When using a session variable in a cfquery where should the cflocks be? Around the whole cfquery or just around the line calling the session var? Mike Brunt Sempra Energy 213.244.5226 An elephant is a mouse with an operating system.

Re: ICQ Hottie Spam Bot Turing Test

2002-03-15 Thread Hatton Humphrey
LOL, I just got the same bot... they are apparently working on her interface. Here's the transcript from my conversation: [13:59] 153656971: Hi there Hatton my name is susy was looking on whitepages for similiar interests and your UIN 2204567 came up. I would like to chat with you but i dont

Re: One call for two pages?

2002-03-15 Thread savan . thongvanh
you should just reload the lower frame onload of the upper. parent.html -frame1.html -frame1.html in frame1.html just go: body onload=top.frames[1].location=top.frames[1].location; Dave Carabetta [EMAIL PROTECTED] on 03/15/2002 12:59:20 PM Please respond to [EMAIL PROTECTED]

RE: Session Vars and cfquery - cflock where?

2002-03-15 Thread Elizabeth Walter
You can always localize your session variable like this: cflock scope=session timeout=20 type=exclusive cfset myLocalVar = #SESSION.myVar# /cflock You can use the local variable myLocalVar in your query. That way you don't have to lock large chunks of code. -Elizabeth -Original

Re: OT New window

2002-03-15 Thread Dave Hannum
BODY onLoad=window.focus() Dave - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 1:59 PM Subject: Re: OT New window On this line of pop-ups. I'm looking for code to always keep the window on top without

Re: OT New window

2002-03-15 Thread savan . thongvanh
simple. just like me. :P Greg Alton [EMAIL PROTECTED] on 03/15/2002 01:17:52 PM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: Re: OT New window Simple is beautiful! Great idea! Greg Alton CFDev - Original Message - From: [EMAIL PROTECTED]

ClusterCATS and stickiness

2002-03-15 Thread Matt Kornguth
My company is getting ready to move to a clustered environment. We currently use session variables for our shopping cart. I keep seeing posts about needing to convert to client variables for load balancing, despite the fact that the CF5 Advanced CF Administration manual (chp 12, Configuring

RE: OT New window

2002-03-15 Thread Ron Hornbaker
call the OpenWindow function with at timestamp as the title openWindow(strURL, new Date(), intWidth, intHeight); As a solution to always open a new window, that's actually a bad idea. Much better to use '_blank' as the window name, which is treated just like a target attribute of _blank in

RE: ClusterCATS and stickiness

2002-03-15 Thread Matthew R. Small
As I understand it, clustercats will loadbalance an initial request to a server with the best response time. Every request after that from the same session will then be re-directed to the same server. This is sticky sessions and will(should) enable you to keep using session variables. If you

Re: Upgrading from CF 4.5 to 5

2002-03-15 Thread David Green
In the places that I used cfgrid and need to swapout it out. What is the best thing to replace it with a table ? - Original Message - From: Tim Claremont [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, March 15, 2002 8:43 AM Subject: RE: Upgrading from CF 4.5 to 5 I

RE: ClusterCATS and stickiness

2002-03-15 Thread Dowdell, Jason G
Two items to note here: 1. As I can recall, Dave Watts is somewhat of an expert on cluster Cats so I would like to see his input on this. 2. One item to note with session vars in a clustered env is that if the server goes down that the user was attached to, then all of their

Re: ClusterCATS and stickiness

2002-03-15 Thread Dave Carabetta
My company is getting ready to move to a clustered environment. We currently use session variables for our shopping cart. I keep seeing posts about needing to convert to client variables for load balancing, despite the fact that the CF5 Advanced CF Administration manual (chp 12, Configuring

Re: OT New window

2002-03-15 Thread Bryan Stevenson
My mistake. I had tried that code before and thought I didn't like it because it refreshed. Turns out I just wanted the window always on top so I ditched it ;-) For now it's good enough because the user can click the link in the main window again and will re-pop the window instead of just

Re: One call for two pages?

2002-03-15 Thread savan . thongvanh
haha, i totally screwed up that post. instant replay this is kindof a wacky situation. as far as I know there are few ways to make a recordset, or data in general, available across frames. in this case I would use a wddx recordset. -i'd run the query in the upper frame -return it to the page

Re: Documentation

2002-03-15 Thread Ron Davis
terribly basic question here... and i feel like a goober even asking... but.. how do I evaulate a checkbox? I want to say If this box is checked, then do this... I've tried saying: cfif #form.checkbox# EQ true cfif #form.checkbox# EQ yes but, neither one works. Thanks!! -Ron

RE: CF_inexpensive_reliable_ISP

2002-03-15 Thread Megan Cytron
I second the vote for crystaltech.com. They have an amazing control panel. The only time I've had to contact customer support has been when I need a custom tag installed. Megan [EMAIL PROTECTED] Alpha 60 Design Shop http://www.alpha60.com phone: 202-745-6393 fax: 202-745-6394

Re: Documentation

2002-03-15 Thread krisch
you have to use the value of the checkbox to see if it has been checked. If the value attribute of your checkbox is 1 cfif form.checkbox EQ 1 if the value attribute of your checkbox is true cfif form.checkbox EQ 'true' will work for you. HTH, Kristine C. Hege 463-2111 ext. 232 One

Re: Documentation

2002-03-15 Thread BEN MORRIS
If a checkbox is unchecked, it will pass no variable. So, if the name of the checkbox code is: input type=checkbox name=mybox value=YES / Then on the post page, cfparam name=form.mybox default=NO cfif form.mybox EQ YES code... /cfif Ron Davis [EMAIL PROTECTED] 03/15/02 02:59PM terribly

  1   2   >