RE: High-Powered Scaling

2000-07-26 Thread paul smith
It would be interesting to see an accurate estimates of price points. For example, http://www.shanje.com/loadbalancing.shtml uses inexpensive rack units for web/CF servers, about $1,000 each, and hosts over 13,000 domains on each server. Shiloh's web farm provides over 99.9% uptime on website

RE: High-Powered Scaling

2000-07-26 Thread Chris Evans
If I want to run a serious high-power site, I would go to Solaris, or maybe now Linux on Intel to get the most bag for the buck. Did I see someone who said 40 servers? I don't know about Linux with CF, but I know for a fact I can run a major e-commerce site on 4 Sun boxes with an external DB ser

Re: DB2 - ColdFusion funky stuff

2000-07-26 Thread Joseph Eugene
Are you running DB2 on AS/400? if so what native driver are you using? Db2 Connect driver works perfectly only with the latest AS/400 OS. Make sure you are running a stable native driver! I am running RPG stored procedures from ColdFusion using Client Express 7 native driver. works great. -

RE: High-Powered Scaling - Was "Milking Every Last Drop..."

2000-07-26 Thread Lee Fuller
Can you explain how you do that? The segmenting, I mean... Thanks. Lee > -Original Message- > From: !jeff! [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 26, 2000 6:02 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: High-Powered Scaling - Was "Milking Every La

Re: CFMAIL and authentication

2000-07-26 Thread Howie Hamlin
iMS POST SE can do this... http://www.coolfusion.com/post_se.htm It supports both CRAM-MD5 and LOGIN authentication. Regards, Howie Hamlin -- inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668 www.CoolFusion.com Ple

Re: DB2 - ColdFusion funky stuff

2000-07-26 Thread Cybanical
That's what we started doing. We've gone through the site and switched most of the There were only a few of them. But there is still something a little funky. Some of the normal statements aren't working either. Selects work fine, but nothing more database intensive than that. Any ideas?

CFMAIL and authentication

2000-07-26 Thread Eron Cohen
Hi All, I am wondering if anyone knows of a way to send mail to servers that require authentication with ColdFusion. Apparently, you can't do it with CFMAIL, so perhaps someone knows of a tag that does support this. Thanks, Eron __ Do You Yahoo!

RE: cfmail problems

2000-07-26 Thread Eron Cohen
Hi Michael, Thanks for the advice. Interestingly enough, I found another guy on Allaire forums who was describing the exact same problem and he was also attaching a rich-text file. Unfortuantely, forums have been down most of today so I haven't been able to post there about it. I'll bet you're

RE: PHP/PERL/CF on Linux Box - any problems?

2000-07-26 Thread Michael Sheldon
I've had all of the above plus a couple running on one of my development boxes for quite some time. No troubles. Michael J. Sheldon http://www.desertraven.com/ PGP Key Available on Request -Original Message- From: Anthony Israel-Davis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26,

Re: High-Powered Scaling - Was "Milking Every Last Drop..."

2000-07-26 Thread !jeff!
We further segmented our network so that all the CF Variables traffic is on its own segment. CFVars, in a high traffic site, becomes the bottleneck quite quickly. It does an update on almost every request to your multitude of web servers. By segmenting that traffic, and dedicating a beefy ma

RE: High-Powered Scaling - Was "Milking Every Last Drop..."

2000-07-26 Thread Jeremy Allen
-Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 8:40 PM To: [EMAIL PROTECTED] Subject: Re: High-Powered Scaling - Was "Milking Every Last Drop..." Great post. One thing to add, and one question: >7. Get web log data off the servers nightl

Re: High-Powered Scaling - Was "Milking Every Last Drop..."

2000-07-26 Thread Jim McAtee
Great post. One thing to add, and one question: >7. Get web log data off the servers nightly. Why store this junk on your >web server? Archive it nightly to free space. Also, tune your web server >to only log the stats you ABSOLUTELY need. Otherwise you're wasting >valuable resources on logg

Cfinclude or caching?

2000-07-26 Thread rkeniger
Hi, I have an application that is going to be getting a fair few hits (about 20-30 page views per second in peak time) and I am trying to make the home page as streamlined as possible. The home page has a "news" section which is to be updated maybe once or twice a day. Now, in performance terms

Re: DB2 - ColdFusion funky stuff

2000-07-26 Thread Joseph Eugene
Why wont you just a simple insert instead of cfinsert insert into tablename values('','') etc - Original Message - From: "Cybanical" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 8:16 PM Subject: DB2 - ColdFusion funky stuff > Serious problem. Our hosts db

DB2 - ColdFusion funky stuff

2000-07-26 Thread Cybanical
Serious problem. Our hosts db2 server died last night. Their NT server is still "okay" so we tried to setup one of our tradeshow systems with db2 setup on it as the db2 server for our site. Cfquery select statements are working fine but , the SQL statement isn't being sent to the DB2 for some

RE: comma problem

2000-07-26 Thread Scott, Andrew
Try this Then instead of referencing form.UnitCost use unitCost instead... -Original Message- From: Jim Watkins [mailto:[EMAIL PROTECTED]] Sent: 27 July 2000 12:54 To: [EMAIL PROTECTED] Subject: comma problem Below is part of a form I use to simply multiply a quantity times unit cos

RE: High-Powered Scaling

2000-07-26 Thread dougn
Thanks for the compliments Gregory and Ron. I hope this helps. I'm trying to assemble a "white paper" on scalability and I can tell ya there are a TON of issues here. It's no wonder that Allaire hasn't published an extensive document on the subject. Hardware, software, application architecture

Re: comma problem

2000-07-26 Thread Jared Clinton
Jim, For an example of how to take all the numbers out of the return value of the function now, use this: #REreplace("#now()#","[^0-9]","","ALL")# Jared. Jim Watkins wrote: > Below is part of a form I use to simply multiply a quantity times unit cost. > The problem is that when the customer ke

RE: High-Powered Scaling

2000-07-26 Thread Gregory Gooden (Annex)
I was fortunate enough to catch Doug's presentation on Scalability at a CF user's group meeting in LA, and I'm damned glad I went. I really got a lot to chew on. :) Gregory --- annex.com, Inc. - http://www.annex.com/ ---

RE: High-Powered Scaling

2000-07-26 Thread ron
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 26, 2000 6:37 PM > To: [EMAIL PROTECTED] > Subject: High-Powered Scaling - Was "Milking Every Last Drop..." > > Here are my suggestions > THANK YOU, Doug, for taking the time to share all th

comma problem

2000-07-26 Thread Jim Watkins
Below is part of a form I use to simply multiply a quantity times unit cost. The problem is that when the customer keys in a comma as in 4,000 instead of 4000 a multiplication error occurs. I get an answer but it is way wrong. What can I do to strip the comma out??? -

RE: CF Studio and Source Safe

2000-07-26 Thread Scott, Andrew
Hmmm, interesting I have tried everything to get this to work. And when I mean adding a folder, I am talking 3 extra top hierachies and not folders underneath the top hierarchy. So if it can be done I need to know quickly, but yeah I have tried everything you can only set working folders for the e

RE: DATES!!!!!!!!!`

2000-07-26 Thread Scott, Andrew
try where dates between date1 and date2 will also do the trick, but make sure that for example if you have a time stamp as well as a date you will also need to make sure the compare string has a time stamp as part of it:-) -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: 26

High-Powered Scaling - Was "Milking Every Last Drop..."

2000-07-26 Thread dougn
Here are my suggestions 1. Clustered data servers (if one SQL/Oracle servers, the second MUST take over immediately) 2. Fibre channel drive array to the data servers (Raid 5/0) for the essential data 2a. Local to each machine should be a single fast hard drive used for the swap file 2b. Shar

RE: Milking every last drop of CF performance...

2000-07-26 Thread paul smith
So what does this mean? Call all variables session.variable1 instead of variable1 ? (For non-scoped vars). best, paul At 05:44 PM 7/26/00 -0400, you wrote: >Scope all the variables that you can. -- Archives: http://

Re: Fw: Mapping "literally"

2000-07-26 Thread Peter Theobald
--=_4018477==_.ALT Content-Type: text/plain; charset="us-ascii" If you dont mind using an external service, MapQuest and most of the other mapping sites offer this as a service (free with ads, pay no ads). You call their URL with a list of "POI"s (Points of Interest). At 0

Re: Calling SQL Server/NT gurus...

2000-07-26 Thread Jacob
Do you have anything else running on this machine? If all you have is SQL ( not Mail server, Cold Fusion Server, WWW server, etc...) on this machine I would do the following: Give SQL server 1GB of ram under fixed memory size in the SQL properties. This will leave NT with about 128 for itself

A Challenge for the Masters???

2000-07-26 Thread Mike Weaver
- Original Message - From: "Mike Weaver" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 5:25 PM Subject: Fw: Mapping "literally" > This is a multi-part message in MIME format. > > --=_NextPart_000_006B_01BFF726.788EB6E0 > Content-Type: text/plain; > chars

RE: Calling SQL Server/NT gurus...

2000-07-26 Thread Gary McNeel, Jr.
Look in the SQL Books Online. Search on 'Server Memory Options'. This gives a pretty good overview of what is happening. For most purposes you want to let SQL server handle the memory configuration. Did you change yours? Are you setting it manually? Are you doing full-text searching? -Gary > --

RE: Apologies

2000-07-26 Thread Eberhart, Robert D
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF751.176F8760 Content-Type: text/plain; charset="iso-8859-1" :-) Hate to bug you, but was wondering if this message is in mim

Fw: Mapping "literally"

2000-07-26 Thread Mike Weaver
This is a multi-part message in MIME format. --=_NextPart_000_006B_01BFF726.788EB6E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable - Original Message -=20 From: Mike Weaver=20 To: [EMAIL PROTECTED]=20 Sent: Wednesday, July 26, 200

Re: Apologies

2000-07-26 Thread David Hannum
Robert, Your apology is accepted (even though it too is in MIME format . . . ) Dave - Original Message - From: Eberhart, Robert D <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 5:57 PM Subject: Apologies This message is in MIME format. Since your mail read

Re: CFMAIL problem

2000-07-26 Thread Michael Smith
--6A8DF45E9A5D90D670826DEE Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit could be a bad character in the email - I once had our email server die with some bad characters in the email. Do this happen on all email or just one? if one check the text you ar

RE: Is there a CF certification?

2000-07-26 Thread Eron Cohen
If you want to take a free, web based certification go to www.brainbench.com or www.ecertifications.com. I recommend brainbench. They have a better interface and they send you actual certificates. Eron -Original Message- From: jonathan hamner [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Calling SQL Server/NT gurus...

2000-07-26 Thread Robert M. Saxon, Jr.
I have a SQL Server 7 machine with 1 1/8 GB of memory. After some performance problems, I confirmed that SQL Server had allocated all but about 50 MB of the memory for itself. The server is set to allocate anywhere from half a gig to all of the memory. I have some questions: Is this the optimum

Re: Is there a CF certification?

2000-07-26 Thread Jennifer
At 02:44 PM 7/26/00 -0700, you wrote: >Is there a CF certification? If so, can someone please >let me know how to get it. > >Thanks A Bunch. yes. http://www.allaire.com/services/training/certification/index.cfm -- Archi

Apologies

2000-07-26 Thread Eberhart, Robert D
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF74C.72A16C20 Content-Type: text/plain; charset="iso-8859-1" I recently send a message that was sent in a format that was othe

[OT] IE 5.5 and ColdFusion

2000-07-26 Thread Eberhart, Robert D
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF74A.AD886160 Content-Type: text/plain; charset="iso-8859-1" I apologize if this question has been answered here before, but I

RE: Milking every last drop of CF performance...

2000-07-26 Thread Steve Bernard
This thread was started as a hardware query. Steve -Original Message- From: David Sparkman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 5:29 PM To: [EMAIL PROTECTED] Subject: RE: Milking every last drop of CF performance... Another source for performance tweaking your sys

Is there a CF certification?

2000-07-26 Thread jonathan hamner
Is there a CF certification? If so, can someone please let me know how to get it. Thanks A Bunch. __ Do You Yahoo!? Get Yahoo! Mail - Free email you can access from anywhere! http://mail.yahoo.com/

Re: Image not appearing - just place holder

2000-07-26 Thread Paige Chandler
Hi Seth, Problem solved. The page that I uploaded still refered to the .gif on my hard drive. I have the account set up with my new host but my DNS (paigechandler.com) may not be ready yet. I'm currently using data supplied by the client which is somewhat confidential: names of doctor's at a Da

RE: Milking every last drop of CF performance...

2000-07-26 Thread David Sparkman
Another source for performance tweaking your system is http://www.regedit.com They have registry tweaks that will greatly improve system performance. Though I have noticed that this discussion has completely revolved around hardware. Some the the bigest gains that you will get out of your applicat

Re: Looking for banner software

2000-07-26 Thread Dick Applebaum
CF_DreamBanner in the tag gallery... Nice Program...Nice Price... Nice Guy! At 9:01 PM +0100 7/26/00, Adrian Cooper wrote: >- Original Message - >From: "Mike Howerton" <[EMAIL PROTECTED]> >Sent: Wednesday, July 26, 2000 8:35 PM > > >> I am looking for a banner program that will allow ani

RE: Anyone have experience with Oracle and firewalls?

2000-07-26 Thread Mark Blair
Avi, I've had to deal with this before, the problem is that SQLnet relies on connecting with a port you specify (default 1521) however after it connects it then decides to communicate with the server on another random port, which is why even if you could get traffic on 1521 opened up it would no

Want to join Phone.com ?

2000-07-26 Thread Richard Li
Hi all, Phone.com currently has some immediate openings for ColdFusion developers. If you want to join Phone.com, please send me your resume. Phone.com is a leading provider of software that enables the delivery of Internet-based services to mass-market wireless telephones and is the co-founde

RE: How to call a javascript button

2000-07-26 Thread Ray, James A
Ahhh, ok , the light comes on now. Thanks Much! Jim Ray -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 12:12 PM To: [EMAIL PROTECTED] Subject: RE: How to call a javascript button >Are you saying you can nested forms? No, at le

Re: Image not appearing - just place holder

2000-07-26 Thread Seth Petry-Johnson
> Finally got site up with new host. Thanks Eron. It works fine from my = > browser (IE5.5) but the client using IE5.0 sees a place holder not the = > .gif. How do I resolve this. TIA. If you're viewing the site from a browser that is running directly on the server, check to make sure your imag

Re: PHP/PERL/CF on Linux Box - any problems?

2000-07-26 Thread Peter Theobald
--=_14600517==_.ALT Content-Type: text/plain; charset="us-ascii" Ditto. We are using Cold Fusion on Linux and are very happy with it. At 03:52 PM 7/26/00 -0400, Michael Dinowitz wrote: >CF on Linux is great. There should be no problems with anything, especially >the DB. The M

Single Quotes - Double Quotes ARGH!

2000-07-26 Thread Peter Theobald
--=_14561452==_.ALT Content-Type: text/plain; charset="us-ascii" In several CFQUERYs on many pages I am updating several tables. Very often these text fields have apostrophes or double-quotes in them. If I surround the fields with single quotes, then CF escapes them by doubl

Re: Looking for banner software

2000-07-26 Thread Adrian Cooper
- Original Message - From: "Mike Howerton" <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 8:35 PM > I am looking for a banner program that will allow animated gifs to rotate > on a page. I tested a bunch of these for CF recently, and the one I liked the most was FuseAds: http://24

Desperate for Oracle Help

2000-07-26 Thread Duane Boudreau
Hi All, I really hope that there is a kind hearted Oracle DBA on here. I have Sybase/SQLServer scripts to create a database that won't work in Oracle. Would anyone be willing to spend some time to take a peak at the scripts? I can pay if necessary. Also I need to know what datatypes map to from

Studio: Quickkey for Show Open Docs

2000-07-26 Thread Eron Cohen
Hi Folks, Does anyone know if there is a quickkey for "show open docs" list in Cold Fusion studio? I would love to be able to trigger this with a key combination rather than having to use the mouse to click that little button. Thanks, Eron -

Looking for banner software

2000-07-26 Thread Mike Howerton
I am looking for a banner program that will allow animated gifs to rotate on a page. I would like the banner to display for 1 cycle of the animation (or possibly for a set # of seconds) and then update to a different banner. Tracking of impressions and click thrus is not needed or important at

Image not appearing - just place holder

2000-07-26 Thread Paige Chandler
This is a multi-part message in MIME format. --=_NextPart_000_0014_01BFF718.56B17750 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi All, Finally got site up with new host. Thanks Eron. It works fine from my = browser (IE5.5) but the cli

Re: PHP/PERL/CF on Linux Box - any problems?

2000-07-26 Thread Michael Dinowitz
CF on Linux is great. There should be no problems with anything, especially the DB. The Merant drivers that ship with it are fantastic with SQL 7 (haven't tested against anything else). > Hello Everybody! > > Does anyone know of any problems running PHP, PERL and CF on Linux? I'm > specifically

RE: Scalability stories, please?

2000-07-26 Thread dougn
I agree. I have a presentation at http://www.sccfug.org on scalability you might want to refer to. Essentially, both languages scale. Each has pros/cons, but neither should be dropped "because it can't scale". The real issue I've found is can your data components (data servers, stored procedur

RE: How to call a javascript button

2000-07-26 Thread Benjamin S. Rogers
>Are you saying you can nested forms? No, at least not from my experience. I meant that for backwards compatibility, you would have to make use of multiple forms in the page. Something like: To the end user it would appear like a single form since the o

RE: Milking every last drop of CF performance...

2000-07-26 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF734.DFE6BD60 Content-Type: text/plain; charset="iso-8859-1" If you wanna really get wackymake a RAM drive (yes, you can d

Anyone have experience with Oracle and firewalls?

2000-07-26 Thread Avi Flax
We have two clients whose Oracle servers we need to access from our location remotely, through their firewalls, and neither of them seem to have any idea how to make this work. We've been trying with one of them for more than two months. The current situation with that one is that we can get a

RE: Milking every last drop of CF performance...

2000-07-26 Thread Jacob
http://support.microsoft.com/support/kb/articles/Q197/3/79.ASP?LN=EN-US&SD=gn&FR=0 At 02:43 PM 7/26/00 -0400, you wrote: >You have to have at least 2 or 4 MB of swap file, I forget which one. Other >than that, I don't see any reason why you shouldn't be able to disable the >swap. Why do you think

PHP/PERL/CF on Linux Box - any problems?

2000-07-26 Thread Anthony Israel-Davis
Hello Everybody! Does anyone know of any problems running PHP, PERL and CF on Linux? I'm specifically concerned that CF will choke, bomb, get confused and generally not work - which I hope is not the case. We are planning an intranet and would like to use a linux box and CF as well as play with o

RE: Milking every last drop of CF performance...

2000-07-26 Thread Dave Watts
> I'm wondering; when this topic is raised very fast disk is usually > recommended. However, at first glance it seems that a machine with > sufficient memory is unlikely to touch the disk very much once all the > templates have been compiled and cached (assuming that you > tell CF to trust > the

Re: RE: Milking every last drop of CF performance...

2000-07-26 Thread Gregory Harris
>>> [EMAIL PROTECTED] 07/26 11:43 AM >>> Why do you think that the server would increase it's speed by disabling the swap file? Steve Given that: 1) RAM is faster than HD 2) WIN NT likes to swap to disk regardless of available RAM 3) Lesser HD space for swap means NT is forced into keeping more

RE: Milking every last drop of CF performance...

2000-07-26 Thread Jacob
We added the 2MB swap file to the C: Drive (Must) and 600 MB to a separate physical hard drive by itself. I did not notice that much of a difference, but I also did not sit down and really, really test it either. Ram in the machine was 512 MB. Jacob At 02:43 PM 7/26/00 -0400, you wrote: >Yo

RE: [Semi-OT] Win NT error codes

2000-07-26 Thread Tim Bahlke
I think you can go to the command line and type 'net helpmsg [errornumber]' in NT. Tim Bahlke, CIFO thinkcreate.com p. 336.230.0575 f. 336.230.0083 -Original Message- From: Greg Creedon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 2:38 PM To: CF-Talk Sub

Re: [Semi-OT] Win NT error codes

2000-07-26 Thread Jacob
Sounds like the client did not want to wait anymore and either closed his/her browser or went to a different web page. I get those every now and then, but it has not created a problem. (yet) Jacob At 02:38 PM 7/26/00 -0400, you wrote: >I was looking through my CF 4.5.1 server log files and saw

RE: Milking every last drop of CF performance...

2000-07-26 Thread Steve Bernard
You have to have at least 2 or 4 MB of swap file, I forget which one. Other than that, I don't see any reason why you shouldn't be able to disable the swap. Why do you think that the server would increase it's speed by disabling the swap file? Steve -Original Message- From: Gregory Harri

RE: How to call a javascript button

2000-07-26 Thread Ray, James A
Thank you Ben, Are you saying you can nested forms? Example Button Button Jim Ray -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 8:54 AM To: [EMAIL PROTECTED] Subject: RE: How to c

RE: How to call a javascript button

2000-07-26 Thread Ray, James A
Excellent!!! Thanks for the help. It really helped. Jim Ray -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 26, 2000 8:54 AM To: [EMAIL PROTECTED] Subject: RE: How to call a javascript button This will close the current window. However

[Semi-OT] Win NT error codes

2000-07-26 Thread Greg Creedon
I was looking through my CF 4.5.1 server log files and saw the following entries: "Error","TID=131","07/26/00","14:25:09","Unable to write reply -- client browser stopped waiting for request. " "Error","TID=131","07/26/00","14:25:09","Windows NT error number 109 occurred." "Error","TID=131","07/

CFMAIL problem

2000-07-26 Thread Eron Cohen
Anyone have any ideas what this CFMAIL error is about? Error Diagnostic Information Unable to write mail message to disk. An unexpected error occurred while attempting to save the mail message. I've never seen it until recently. My harddrives have plenty of space. I am using CF 4.51/IIS 4.0/NT

RE: Milking every last drop of CF performance...

2000-07-26 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF72E.DD22D2D0 Content-Type: text/plain; charset="iso-8859-1" http://www.arstechnica.com/tweak/nt/index.html You may want to l

WOT: Frames/sets how to give a URL?

2000-07-26 Thread Paul Ihrig
Hello. I would like to give some one a direct url like http://inhouse/education/education.htm but it only shows the page. I would like it to display in its proper frame set. http://inhouse has 3 frames in the frame set. The page for ed

RE: Milking every last drop of CF performance...

2000-07-26 Thread paul smith
On the other hand, Regarding equipment/software, here's an old post from Steve Nelson that may interest you. This is the approach I will be taking: Multiple inexpensive rackmounts. You pay more in software, less in hardware. I just got my first 512MB 733PIII IBM 7200rpm ATA/66 20GB HD for $1500

RE: Milking every last drop of CF performance...

2000-07-26 Thread Bryan Batchelder
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01BFF72E.24C71340 Content-Type: text/plain; charset="iso-8859-1" Yeah, I have done it before. You will always get an error about

cf clusters

2000-07-26 Thread Greg Bray
This is a multi-part message in MIME format. --=_NextPart_000_0004_01BFF70C.00E72600 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi all, I am about to embark on setting up my first cluster of CF machines. Any words of wisdom or gottcha's that anyo

RE: Milking every last drop of CF performance...

2000-07-26 Thread Gregory Harris
Has anyone actually tried disabling the swap on an NT server? I've heard rumors that it is possible, and if it is, the server would probably pick up speed dramatically. Maybe I'll pull a spare web server and attempt it to see what happens. Anyone had the guts before? Gregory Harris Los Angel

RE: substituting variables in a variable

2000-07-26 Thread paul smith
PMFJI, but as noted earlier, the following works with a Query, no place holder needed: D A I L Y B U S I N E S S T I P -- Issue Number #IssueNumber# ++#FancyDate# Dear #email#: Your subscription expires #DateFormat("#expiredate_tip#", ", DD, ")# bl

RE: Milking every last drop of CF performance...

2000-07-26 Thread Steve Bernard
You are correct, for the most part a highly tuned IIS/CF server will run almost completely from data stored in RAM once everything has gotten warmed up. The HD is still by far the slowest part of any system and a web server is nothing more than a specialized file server. The system will read and w

WAT: need some quick Java help

2000-07-26 Thread Seth Petry-Johnson
I hate to do this, but I haven't had any luck finding the answer myself. I need some quick, very newbie level help with some Java user interface (command-line stuff) and file reading/writing tasks. If anyone feels willing to help could you contact me off-list at [EMAIL PROTECTED]? Thanks very mu

Re: URGENT CFFILE Error

2000-07-26 Thread Kevin Schmidt
Check your basic security settings to make sure that CFFILE is allowed. I assume that you have changed the paths and the drive letters appropriately as well? Kevin Schmidt Internet Services Manager Peterson, WIlliams & Bizer Office: 734.995.5000 Mobile: 734.649.4843 - Original Message -

Studio Mapping Settings Question

2000-07-26 Thread ron
I have just rebuilt my development system after a crash, and have changed moved CF App Server to my server, while using Studio from the development machine. When I set a remote development mapping in Studio, the value in the Browser Path text box comes up with a spelling error for the serve

RE: Milking every last drop of CF performance...

2000-07-26 Thread mherbene
I'm wondering; when this topic is raised very fast disk is usually recommended. However, at first glance it seems that a machine with sufficient memory is unlikely to touch the disk very much once all the templates have been compiled and cached (assuming that you tell CF to trust the template cac

RE: Milking every last drop of CF performance...

2000-07-26 Thread Steve Bernard
Speaking from a purely performance oriented perspective I would consider one of the two following designs for a CF-only box. I am assuming an Intel box running Windows NT or 2000 Server. Here are the things I think you would need regardless of final configuration: * Mobo that supports 133MHz bus

Re: substituting variables in a variable

2000-07-26 Thread Dave Hannum
Yes, #Evaluate(first_name)# Dave - Original Message - From: "Todd Ashworth" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 12:52 PM Subject: Re: substituting variables in a variable You were able to evaluate a variable within a variable? Todd Ashworth -

Re: substituting variables in a variable

2000-07-26 Thread Todd Ashworth
You were able to evaluate a variable within a variable? Todd Ashworth - Original Message - From: "Dave Hannum" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 26, 2000 12:38 PM Subject: Re: substituting variables in a variable | Where is #first_name# coming from? You

Re: substituting variables in a variable

2000-07-26 Thread Dave Hannum
Where is #first_name# coming from? Your query? IF so, make sure you're referencing the query in the CFMAIL tag. Is it from a form? IF so, make it #FORM.first_name#. Is it from another query? IF so, reference that query in the output call. #QueryName.first_name# It works for me. Dave

RE: substituting variables in a variable

2000-07-26 Thread Lon Lentz
I've tried this before with no luck. I use place holders and do replaces on those values. Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Neil Peasl

RE: Surprising Results? [was] Re: Round down numbers

2000-07-26 Thread Dan Haley
>From the CF Docs - seems they work the way they are supposed to. Have always thought of Ceiling and Fix as being opposites, but actually Ceiling and Int are. Ceiling - Returns the closest integer greater than a given number. Fix - Returns the closest integer less than number if number is great

URGENT CFFILE Error

2000-07-26 Thread Michael Ross
Has anyone seen this problem. I know everything works because the same code works on our test server but not on prod. I don't even know where to look for the problem. Here is the error message. Error Occurred While Processing Request Error Diagnostic Information Error processing CFFILE

RE: Re[4]: Once again about Sessions

2000-07-26 Thread Stephen Moretti
Alex, > Where I need to set this flag?(in which scope) > As I understand I need to go it this way. > User logged in. > I install session variable session.my_web_site_user which > contain user_unique_ID. > Than second user try to log in. > I

RE: How to call a javascript button

2000-07-26 Thread Benjamin S. Rogers
>This is only supported in newer browsers (4+) I should explain my statement a little better. The JavaScript function "close()" and property "location" are almost universally supported by any client that supports JavaScript. It's the HTML INPUT element of type "button" that is only really support

RE: Virtual Include of a CF Template in a Remote Server

2000-07-26 Thread ron
> Is it possible to call a CF template from another server > using something > like a virtual include or possible an exec function? The web > server using > the virtual include would be a Solaris box with Apache calling to a CF > server with WebSite Pro and CF 4.0. I want the CF template to > run

RE: How to call a javascript button

2000-07-26 Thread Benjamin S. Rogers
This will close the current window. However, if JavaScript did not create the window, the client will receive a JavaScript prompt. I've added a button which can be used to redirect the window to another page without submitting the form. This is only supported in newer browsers (4+). You may just w

RE: Re[4]: Once again about Sessions

2000-07-26 Thread Robert Everland
You need to set a new field in the database. No matter what you do you're calling the database first. So when they login that's where it says they are logged in or not. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Alex Puritche [mailto:[EMAIL PROTECTED]]

Re: OT:How to call a javascript button

2000-07-26 Thread Alex Puritche
James, Wednesday, July 26, 2000, 6:27:19 PM, you wrote: James> Is it possible to do the following? I want to have a form that calls another James> CFM or closes the current browser window. James> That's it. Straight and to the point. James> James> James> James>

Re[4]: Once again about Sessions

2000-07-26 Thread Alex Puritche
Robert, Where I need to set this flag?(in which scope) As I understand I need to go it this way. User logged in. I install session variable session.my_web_site_user which contain user_unique_ID. Than second user try to log in. I check his Log

RE: Virtual Include of a CF Template in a Remote Server

2000-07-26 Thread Stephen Moretti
Kurt, > > Is it possible to call a CF template from another server using something > like a virtual include or possible an exec function? The web server using > the virtual include would be a Solaris box with Apache calling to a CF > server with WebSite Pro and CF 4.0. I want the CF template to r

OT:How to call a javascript button

2000-07-26 Thread Ray, James A
Is it possible to do the following? I want to have a form that calls another CFM or closes the current browser window. That's it. Straight and to the point. (Can this be a javascript that closes the window?) Thank you! Jim Ray --

RE: 404.cfm not called when a .cfm file not found

2000-07-26 Thread Bert Dawson
yep, it is. The problem seems to be that when CF calls the c:\cf\hr\404.cfm (as the result of a 'cannot find foo.cfm') then it doesn't run the application.cfm. This meant that my references to #application.dsn# were failing, and then CF was trying to display the defualt cf error ("Error Occurred W

  1   2   >