RE: CF IDE for *nix Mac etc ...was RE: Allaire on a Mac?

2001-01-24 Thread Paul Johnston
To be honest, all I want from an IDE to write code on is the tag/function completion. If someone wants to build this into jedit (or is it already there?) then I would use it. What would be even more useful would be the ability to add in my own tags/functions etc for future use. That way you

RE: Securing Applications

2001-01-24 Thread Donn
-Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 20, 2001 5:34 AM To: CF-Talk Subject: Re: Securing Applications On 1/19/01, Guy J. McDowell penned: I have tried both the GlobalCorp and CFHub examples for securing an application to no avail. I keep

RE: case sensitivity in stored procedures

2001-01-24 Thread DeVoil, Nick
Sebastian Apologies, not a very helpful answer. What I meant was SQL Server is case-sensitive, period. But actually that's not always true, only if SQL Server is installed with a case sensitive sort order. http://msdn.microsoft.com/library/default.asp?URL=/library/psdk/sql/8_ar_da_ 10.htm

CF Studio Projects

2001-01-24 Thread Paul Johnston
I have a project set up that contains a whole website to go onto a shared server. However, I cannot create a script to upload that project to the correct directory, because I do not have FTP access, only RDS access to the server. What I am confused about, is how it knows where to put the

cfauthenticate and NT users

2001-01-24 Thread Thomas Chiverton
I'm tryin to use cfauth. to log users onto my site, but it wont work, and I see lots of other ppl on here strugerling, so hopefully some one has cracked it and can suggest something to try I havent thought of. Below is my Application.cfm, the user and password exisit in the NT domain, which is

Re: ms down

2001-01-24 Thread Michael
Hey maybe Macromedia is buying them also, and there in the process of changing the sites early : ) "Jennifer Larkin" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Somebody "accidentally" sent out some bad DNS entries and Microsoft.com started pointing

CF Site: Deerfield.com

2001-01-24 Thread Martin Sutton
I just noticed that deerfield use CF. This is quite an important site imho. - LEGAL DISCLAIMER -- This message and any attachments to it is intended only for the individual or company to which it is

RE: Need Help with SQL!!

2001-01-24 Thread Philip Arnold - ASP
cfquery... CREATE TABLE Country ( CountryID Integer Identity Primary Key, Country VarChar(50), Code_2 VarChar(2), Code_3 VarChar(3), Code_Numeric

RE: CFFTP is adding extra white space in .txt file

2001-01-24 Thread Tim Fields
I examined the file that was being written to the server by cffile *before* it was sent via FTP and realized the extra white space was happening right there. Throwing in the attribute addnewline="no" fixed the problem. -Original Message- From: Tim Fields [mailto:[EMAIL PROTECTED]]

RE: case sensitivity in stored procedures

2001-01-24 Thread mark_wimer
Nick, this was helpful, thanks - I didn't realize it was an installation option, and I've never seen it installed except with the default setting. I looked it up in BOL and it gives pretty good details. I'm sure I've been lazy enough with object names, etc. that I wouldn't want case-sensitivity

RE: case sensitivity in stored procedures

2001-01-24 Thread Paul Johnston
It can be done! You can bypass the case-insensitivity, although it's a bit long winded (but it works). What you need to do is use the ASCII character number to make a string case sensitive (ie convert it into ASCII characters and test against those!). there are two functions, ASCII and CHAR.

Re: Need Help with SQL!!

2001-01-24 Thread Clint Tredway
Dominic, you go to www.factorxsoftware.com/download.cfm and download my WebSQL SQL Server Tool. This is a web based SQL Server Manager. It is still in beta but you can add tables, view data, add/modify stored procedures. I am still in the process of finishing the app but it can help you as it

RE: cfauthenticate and NT users

2001-01-24 Thread Matthew Fusfield
Is the user directory setup properly in the CF adminstrator? Also, check to see if the user directory been associated with the security context. Security can be tricky as there are a number of things that need to be setup. Can you describe the settings you have under the advanced security page in

RE: case sensitivity in stored procedures

2001-01-24 Thread Peter Theobald
There's another reason you don't want case-sensitivity turned on for the whole server... the Merant database drivers have a bug in them: they have internal calls to a stored procedure named sp_SeRvEr_InFo when the actual stored procedure is named sp_server_info. With case sensitivity turned on

RE: Triggering the Find Dialog

2001-01-24 Thread Patricia Lee
I have no knowledge, but speaking out of my a** I'd say maybe via an ActiveX control? VBScript maybe? Of course limitations apply, even if I am right... |-Original Message- |From: Jon Hall [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, January 24, 2001 12:05 AM |To: CF-Talk |Subject: Re:

CF Lotus Domino

2001-01-24 Thread Kirk Boecker
Are there any CF people out there that know much about Notes/Domino? We have a few clients that want us to integrate our CF based app with some of their internal Notes/Domino apps and a few other clients that want us to rebuild our entire app in Notes/Domino so they can run it within their own

(ot) Advertising

2001-01-24 Thread Eric Dawson
Sorry for the OT post, but I do have the right audience. I need to determine which of the following approaches is best, and am curious for some feedback from this list. 1.) Outsource Ad Serving: we sell ads, but may have a network of sales agents (site users). Double Click Dart. 2.) Build an

RE: case sensitivity in stored procedures

2001-01-24 Thread Stephen Kellogg
If you're talking about passwords, you may consider using CFX_HASH to create the passwords. Its hashes are case sensitive so "A" is not the same as "a" and it would probably end up being more secure. HTH Stephen -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED]] Sent:

BEST Reccomendations for CF Hosting

2001-01-24 Thread Michael
Any opinions on Hosting firms for CF 4.5 not alot of HD space just something simple. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Triggering the Find Dialog

2001-01-24 Thread Duane Boudreau
Thanks! Duane -Original Message- From: stas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 9:21 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: Triggering the Find Dialog Duane, this might help: http://www.dynamicdrive.com/dynamicindex11/findpage.htm -

session id max length

2001-01-24 Thread Jennifer
We have a client that wants to import some of the website data into some other software. The problem is that this other software has _only_ fixed-width fields and they need to conserve space. There is a column in our data that contains a session id and an incremental suffix. We can predict

RE: CF Studio Projects

2001-01-24 Thread Russel Madere
I have never used Cold Fusion's RDS to promote a project. I used MacroMedia's Dreamweaver to promote my projects. Lately, I have been using VSS to promote the projects by defining shadow folders for the VSS projects. Sorry I couldn't help more, but you might want to consider either of these

RE: cfauthenticate and NT users

2001-01-24 Thread Russel Madere
You need to have the Cold Fusion Enterprise edition to have the Advanced Security that the CFAuthenticate tag requires. Once you have that set up, you need to define a security context named UserObject. Inside that context, you need to defined users and groups, protected resources and then

RE: Triggering the Find Dialog

2001-01-24 Thread Garza, Jeff
You may be able to do this using WSH or an ActiveX Object (IE only...) Don't know of any way to do this in Netscape. There is a page on the Find function on MSDN. It's one of Windows' common controls. http://msdn.microsoft.com/library/psdk/winui/commdlg3_91is.htm Good Luck. Jeff Garza Web

Re: Triggering the Find Dialog

2001-01-24 Thread stas
Duane, this might help: http://www.dynamicdrive.com/dynamicindex11/findpage.htm - Original Message - From: "Duane Boudreau" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, January 23, 2001 11:33 PM Subject: Triggering the Find Dialog Does anyone know if there is a

RE: Triggering the Find Dialog

2001-01-24 Thread Russel Madere
According to the JavaScript Bible (3rd Edition) the windowObject has a find() method that allows you to access the Find Control panel. However, it is only available in Navigator 4 (and possible IE 4+). The syntax for it is find(["searchString" [, matchCaseBoolean, searchUpBoolean]]) Russel

Allaire wish list

2001-01-24 Thread Aidan Whitehall
What's the e-mail address to send CFAS enhancement requests to? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651

RE: case sensitivity in stored procedures

2001-01-24 Thread JustinMacCarthy
Hi I'm not sure if you got this yesterday so I'm sending again Select * from MyTbl where convert(varbinary, column1) = convert(varbinary, 'ABCD') Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 12:55 PM To: CF-Talk

RE: cfm file in htm template

2001-01-24 Thread Russel Madere
Yes Josh, I just did something of the sort. I set up a CF template that would display my logo. It incremented a database to count page loads. It could have been used with Jukka Manner's CFX_Image tag to generate a hit count image and then use the CFCONTENT tag to server the image. I included

Re: (ot) Advertising

2001-01-24 Thread Greg Wolfinger
Build you own ad server. We wrote one in CF in about a week (fully robust) for our sites. --=@ greg @=-- - Original Message - From: "Eric Dawson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, January 24, 2001 11:24 AM Subject: (ot) Advertising Sorry for the OT

Re: BEST Reccomendations for CF Hosting

2001-01-24 Thread net_man
www.atswebnet.com deserves a look, Robert - Original Message - From: "Michael" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, January 24, 2001 11:24 AM Subject: BEST Reccomendations for CF Hosting Any opinions on Hosting firms for CF 4.5 not alot of HD space just

Re: BEST Reccomendations for CF Hosting

2001-01-24 Thread Clint Tredway
Check out www.atswebnet.com. They have a basic hosting plan that is $.95 a month and they have fast servers and great service. -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get the official book

Re: Slightly OT: SSL information

2001-01-24 Thread Stephen M Aylor
CF-Talk is his HOME :-) All in luv brutha Dave . Steve - Original Message - From: "Peter J. MacDonald" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, January 23, 2001 5:42 PM Subject: RE: Slightly OT: SSL information Thanks Dave, You have been very helpful to

RE: (ot) Advertising

2001-01-24 Thread Michael Buffington
We use Double Click, and from what I've seen it works well (although it does take some time to understand the system, and implement it). I think that we still use our previous ad serving software that we developed internally with CF as well, although I'm not sure as to what extent. If you're

RE: (ot) Advertising

2001-01-24 Thread Cameron Childress
While I can't tell you which solution would be better for your specific needs, as the former Director of Technology for a traditional Advertising firm (TV/Print/Radio) I can give you some things to think about when considering either option. We discussed issues surrounding online advertising at

cffile permissions

2001-01-24 Thread Belfiori, Ross
I am using cffile to copy a read-only file from server A to the cf server. I am trying to display the copied file using cfcontent and delete it using the 'deletefile="YES"'. The cffile does not appear to change the permissions on the move and thus I am not able to delete the file. cffile

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread Martin Sutton
VirtualScape.com are pretty good. I have used them. Their support team get a bit confused on occasion but they always work hard. SLA is ok and stability is fine. The prices are good too. I'd say give them a go :) Martin.

RE: cfauthenticate and NT users

2001-01-24 Thread Thomas Chiverton
Cheers for helping... Is the user directory setup properly in the CF adminstrator? As far as I can tell, the documentation is a bit ropy. Namespace = WinNT Location = Windows name of machine (not DNS) Also, check to see if the user directory been associated with the security context. The

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread Nathan Nelson
www.cfdynamics.com We've been hosting CF for a long time. Now we are dedicating resources just for CF. -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 9:24 AM To: CF-Talk Subject: BEST Reccomendations for CF Hosting Any opinions on Hosting

RE: (ot) Advertising

2001-01-24 Thread misty . d . woodward
Id personally like to keep it in house if it were me. There is a great ASP program out there called AdMentor at http://www.aspcode.net/ its got some pretty cool features and best of all its free and open source. You can modify it however you want too. Good luck Misty -Original

Re: CF Lotus Domino

2001-01-24 Thread johnpatterson
Hello, I have worked with Notes 4.5 through 5.0 as a Notes Administrator and Developer. You are better off redoing the application in Notes. Notes/Domino 5 has a RDBMS connector for SQL Server so your backend shouldn't need any changes. Domino and CF will not mix. Domino uses JavaScript

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread misty . d . woodward
Crystaltech.com is great for $19.95 per month. Get access databases as well with it and can host a few domains on one account. Misty -Original Message- From: ptbarnum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 10:24 AM To: cf-talk Cc: ptbarnum Subject: BEST

Re: BEST Reccomendations for CF Hosting

2001-01-24 Thread johnpatterson
If you go to the cfdj list you will find some very interesting information. Seems like a lot of people like CrystalTech. John On Wed, 24 January 2001, "Michael" wrote: Any opinions on Hosting firms for CF 4.5 not alot of HD space just something simple.

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread PEREZ, RICHARD RINGO (SBCSI)
If you want free try www.cfm-resources.com -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 8:24 AM To: CF-Talk Subject: BEST Reccomendations for CF Hosting Any opinions on Hosting firms for CF 4.5 not alot of HD space just something simple.

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread Tim Fields
Look through the ads in Cold Fusion Developers Journal, there are various levels of packages. Give consideration to tags allowed, administrator access, etc. Most peoples gripes are related to lack of control over the application environment. Good luck! -Original Message- From: Michael

RE: (ot) Advertising

2001-01-24 Thread ron
Eric, 2.) Build an Ad Management system, preferably in ASP (current site in ASP). Need to be able to manage a site network, all sites on the same server farm. Interested in Open Source packages, or otherwise. Have a look at the free, open source Admentor product at http://aspcode.com.

list delay (again)

2001-01-24 Thread stas
If I don't understand it correctly, delays may be caused by mail routers and such. But if I am using an SMPT server running on my box (the one that comes with Win2K/IIS5), I shouldn't be seeing a 4hour delay for my own posts, right? ~~

RE: CFLOCK for 4.0.1 AND 4.5.1

2001-01-24 Thread Bud
On 1/23/01, Zachary Bedell penned: It just seems to me that a more sensible solution could have been developed. Especially since this wasn't even a full version upgrade. If I go from version x.0 of a product to version y.0 of a product, then I'd expect some various little ugly things that

RE: CF MSSQL 2000

2001-01-24 Thread Peter Benoit
Well I've never used any of them, so I'm a bit befuddeled as where to start. Was hoping to find some documentation, but no luck yet, which is why I'm asking for help here. -Original Message- From: Matthew Fusfield [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 12:42 PM To:

Re: cfauthenticate and NT users

2001-01-24 Thread Howie Hamlin
There's also the Intranet/Hosting Toolkit http://www.intrafoundation.com/intranethostingtoolkit.html From the Web Site: The Intranet/Hosting Toolkit currently includes several CFX tags (DLL files) including CFX_Users for NT users, CFX_Groups for local and domain groups, CFX_Shares for handling

RE: Allaire wish list

2001-01-24 Thread Steve Martin
[EMAIL PROTECTED] (or possibly even [EMAIL PROTECTED] g ) -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: 24 January 2001 16:56 To: CF-Talk Subject: Allaire wish list What's the e-mail address to send CFAS enhancement requests to? Thanks -- Aidan Whitehall

Re: Allaire wish list

2001-01-24 Thread Howie Hamlin
The ColdFusion forums (forums.allaire.com) has a board dedicated to this. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server Get your free copy of iMS POST-SE

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread Lee Fuller
www.aaawebhosting.com -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 8:24 AM To: CF-Talk Subject: BEST Reccomendations for CF Hosting Any opinions on Hosting firms for CF 4.5 not alot of HD space just something simple.

Photo gallery custom tag?

2001-01-24 Thread Maia, Eric
Has anyone seen, or written, a tag to provide a "photo gallery" type interface that allows visitors to browse pages of thumbnails, then go to a detail page to view the full-size photo? This seems very basic, but I can't find one in the developer's exchange. I can probably write this pretty

Re: (ot) Advertising

2001-01-24 Thread Edward Smith
The actual adserver is the easy part. The hard part is the management system, the forecasting, inventory tracking, campaign management, reporting, etc. Not to mention verification and auditing, if you get picky customers. But be careful with the adserving part, too, because a lot of that is

CFUPDATE giving me problems, please help...

2001-01-24 Thread Joby Bednar
I have an admin form to add/edit records in an Access 2000 database. I try to edit a user's record and I get this error: Error Diagnostic Information SQL operation updated no rows. The SQL operation affected no rows.Either the Key value has changed or the row has been deleted. The error

Can anyone shed some light on this?

2001-01-24 Thread sebastian palmigiani
I am running CFStudio 4.0 on Windows 98 and SQL Server 7.0. Is there an issue with the cfprocparam tag not passing the value of the database variable to SQL Server? I get 0 records returned. However, when I use cfquery with the same SQL query I get the right result. I've made sure that I have

RE: case sensitivity in stored procedures

2001-01-24 Thread Andy Ewings
I missed the beginning of this thread but by looking at the last mail I assume that you want to check the cases sensitivity of a string in Transact SQL? Here is some code I worte to log a user into a site ensuring each character of the submitted password is the correct case: SELECT @endstring =

wddx limitations?

2001-01-24 Thread Rick Lamb
Hi all, I'm considering using wddx for an application and want to get some advice on whether any of you have hit limits when uploading serialized wddx strings into database fields and when submitting long wddx strings across pages using form fields. I've heard story's of people running into

Re: CF Site: Deerfield.com

2001-01-24 Thread W Luke
Also QXL's fairly new "Live" auction site: http://www.qxllive.com Will -- [EMAIL PROTECTED] -=- www.lukrative.com Classifieds -=- SixthSense on DVD for Free @ www.localbounty.com/sixthsense/ - Original Message - From: ""stas"" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent:

Re: CF MSSQL 2000

2001-01-24 Thread Adrian Cooper
-Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 11:30 AM To: CF-Talk Subject: CF MSSQL 2000 Having a bit of trouble here, and was looking for some advice on getting MSSQL 2k to work with CF. Anyone had any experience with this

Re: list delay (again)

2001-01-24 Thread Michael Dinowitz
Delays come from either a problem with the machine running the list OR a problem with the connection between the list machine and the recieving server. The list might be going great guns, but your posts may be delayed because of line trouble, routing, etc. To see what posts have gotten to the

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread Raymond B.
Crystaltech's shared hosting is attrocious for security though. Your web root is the same as your base dir, and the NT everyone user is given read to all accounts (on most of their server). This means you if you have any sensitive data stored, you're sharing it w/ the other 200+ users on the same

Javascript/Netscape Problem

2001-01-24 Thread paul smith
I thought the neat tag CF_AEBrowser.cfm would solve my Javascript problem. But my hopes were mis-placed. The tag works fine, but Netscape is not playing nice. I'm using the following to create a popup window: script language="JavaScript" !-- function openWindow(url, name)

RE: Page execution time too long?

2001-01-24 Thread Matthew Taylor
On the contrary we all have been writing code, not just CF, but ASP, C, Perl, and Java for quite a few years. We even had a consultant from Allaire come out and do a code review. We passed with flying colors, under heavy load, CF bogs down big time. I'm not sure what you consider "heavy" but

RE: Javascript/Netscape Problem

2001-01-24 Thread Seva Petrov
Paul, Try: popupWin = window.open(url, name, "resizable,location,scrollbars,width=500,height=500,innerWidth=500,innerHeig ht=500,left=75,top=75"); That should produce a 500x500 window in IE and Netscape. Best, Seva Petrov Senior Developer TheSquare.com -Original Message- From: paul

RE: BEST Reccomendations for CF Hosting

2001-01-24 Thread johnpatterson
This is a very good thing to know. We are looking a Hosting Service and this is the stuff we need to know. Thanks. John On Wed, 24 January 2001, "Raymond B." wrote: Crystaltech's shared hosting is attrocious for security though. Your web root is the same as your base dir, and the NT

Re: Allaire on a Mac?

2001-01-24 Thread Sean Renet
I think this would explain some problems I am having with flash and the mac. On a pc loading variables into a flash movie is a simple process. However for Netscape on a mac I seem to have to set a cookie and read it instead of loading directly from a CF template and I have yet to find a way to

RE: Bug/Defect Tracking Apps

2001-01-24 Thread Tobe Goldfinger
We've used Test Track Pro on a project and it worked pretty well. has plenty of useful features enough so that it doesn't pay to roll your own. Tobe At 02:26 PM 1/23/2001 , you wrote: We use Test Track Pro bu Seapine, Inc. Http://www.seapinr.com

Re: Anyone else had this problem before?

2001-01-24 Thread t nelson
Thanks everyone. turns out that you all were right I simpy had to change datatypes in my database (duh). thanks again, nelson Original Message Follows From: "t nelson" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Anyone else had this problem

restarting cf server

2001-01-24 Thread Kirk Boecker
anyone know how to make a scheduled task to restart cfserver on a win 2000 box? we have one that keep puking on us and are about to replace the box (new ones came in today) but are looking for a duct tape type fix for the short term until we can switch it out. kirk

RE: Page execution time too long?

2001-01-24 Thread Katrina Chapman
Merry Meet Matthew, If CF doesn't scale then how do you explain the best example of an extremely large, heavily trafficed site out there, Autobytel? Perhaps the problem isn't software but hardware. Blessed Be, --Katrina Chapman http://www.katrinachapman.com http://www.cfchick.com

Re: Netscape error whilst IE is fine

2001-01-24 Thread Sean Renet
there are a couple problems. first you need ending tags for you table and tr's and td's, then you need to urlencode that link. that is: cfoutput Please a href="http://www.accommodationnewzealand.com/nzl/mkt/creditcardform.cfm?busi

RE: restarting cf server

2001-01-24 Thread Raymond B.
At the command prompt type "at /?". There's some GUI way to do it as well, I think that would either be in the control panel or in the management console. CF also has a cycle.bat for win32 systems (located somewhere under the CF Server root); all this batch file does is setup a bunch of NET STOP

Re: OT SQL STORED PROCEDURES

2001-01-24 Thread S C
What do you mean by OT? I know that on MS SQL Server, it does not allow you to break up a sql statement like that. Making the assumption that the rule applies and is the same on other db's. you would have to do it like this: create proc test1 @groupid int if @groupid = 0 begin select * from

Re: CF Site: Deerfield.com

2001-01-24 Thread Sean Renet
well the most inportant site of all seems to be using cf. http://www2.victoriassecret.com/catalogue/view/dsp_spread.cfm?window=BDpage =p2p3 - Original Message - From: "W Luke" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, January 24, 2001 12:04 PM Subject: Re: CF

RE: Page execution time too long?

2001-01-24 Thread Dave Watts
On the contrary we all have been writing code, not just CF, but ASP, C, Perl, and Java for quite a few years. We even had a consultant from Allaire come out and do a code review. We passed with flying colors, under heavy load, CF bogs down big time. I'm not sure what you consider "heavy"

RE: restarting cf server

2001-01-24 Thread Cruz, Joseph
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi! Write a batch file with the following contents: net stop "Cold Fusion Application Server" net start "Cold Fusion Application Server" Schedule a job (in the Control Panel). Just for assurance's sake, use a login that has the privileges to stop

RE: Page execution time too long?

2001-01-24 Thread Nick McClure
Often times these kind of slowdowns come from database or other outside connection CF has to make. Look at the execution time of your queries. Look at CFX tags and COM objects. At 01:59 PM 1/24/2001 +, you wrote: Merry Meet Matthew, If CF doesn't scale then how do you explain the best

RE: Allaire on a Mac?

2001-01-24 Thread Dave Watts
I think this would explain some problems I am having with flash and the mac. On a pc loading variables into a flash movie is a simple process. However for Netscape on a mac I seem to have to set a cookie and read it instead of loading directly from a CF template and I have yet to find a

Re: Page execution time too long?

2001-01-24 Thread Jon Hall
How do you explain ToysRus Katrina? With 500,000 hits a day I'm sure he has the hardware to deal with anything. CF as it is does not lend itself to high volume sites. Perhaps with user definable functions and some tightening and integration of cfscript sites will be able to scale better. I

Re: Page execution time too long?

2001-01-24 Thread Edward Smith
I hear stories like this, and I have to wonder what your definition of "scale" is. Obviously, we don't have the full story, but this snippet makes it sound like you define "scale" to mean "can sustain unlimited amounts of traffic without slowing down". I'm sure you don't mean that, but it

RE: Page execution time too long?

2001-01-24 Thread paul smith
Right. Check out Doug's comments on scaling at http://doug.nottage.com/cf/ Doug is the CF-master at Autobytel.com best, paul At 01:59 PM 1/24/01 +, you wrote: If CF doesn't scale then how do you explain the best example of an extremely large, heavily trafficed site out there, Autobytel?

Question re: creating documents on the disk.

2001-01-24 Thread Greg Creedon
Well, I've been off the list since before the holidays and thought now would be a good time to sign back... because I have a question/request/problem. I've built an application to handle some aspects of our customer relations. I've completed every part but one... and I'm hitting my head on wall

RE: cftry/cfcatch and cfswitch issues?

2001-01-24 Thread S C
No issues. And a catch type is not needed. When the catch type is left out, then the default is "any". I think the issue here is that there is a difference between exceptions and errors. Errors occur at first pass compilation before the code on the page is actually run. Exceptions occur at

RE: CF Site: Deerfield.com

2001-01-24 Thread ron
Darn, the dsp_spread template wasn't at all what I was hoping for. ;) -ron -Original Message- From: Sean Renet [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 4:20 PM To: CF-Talk Subject: Re: CF Site: Deerfield.com well the most inportant site of all seems to be

SQL Create Table

2001-01-24 Thread Owens, Howard
I'm trying to run a SQL query to create a table ... locally, I'm creating in access, but when I'm ready to move to the production server, it needs to work in Oracle. At any rate, the following works, but it's not what I need: CREATE TABLE Test ( TestID

Spaces in query column names

2001-01-24 Thread Williams, Ryan
I have a table that is out of my control and some of the column names have spaces or dashes in them and one is a number. Querying the table works fine, but when I go to output the results of the query CF chokes on these various column names. I've tried different formatting functions to present

Re: restarting cf server

2001-01-24 Thread Howie Hamlin
You can use the AT scheduler and just schedule the following: net stop "cold fusion application server" net start "cold fusion application server" Note that all sessions will be lost when you do this... HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc.

RE: Javascript/Netscape Problem

2001-01-24 Thread paul smith
Thanks! Works like a charm. best, paul At 04:37 PM 1/24/01 -0500, you wrote: Paul, Try: popupWin = window.open(url, name, "resizable,location,scrollbars,width=500,height=500,innerWidth=500,innerHeig ht=500,left=75,top=75"); That should produce a 500x500 window in IE and Netscape. Best,

RE: restarting cf server

2001-01-24 Thread Bud
On 1/24/01, Cruz, Joseph penned: Hi! Write a batch file with the following contents: net stop "Cold Fusion Application Server" net start "Cold Fusion Application Server" Schedule a job (in the Control Panel). Just for assurance's sake, use a login that has the privileges to stop and start

Re: BEST Reccomendations for CF Hosting

2001-01-24 Thread Michael
Thanks to all of you, for the response, am going to look into CFM-resources, and www.atswebnet.com but I am also trying to figure out this bandwidth ratio they talk about or transfer rate, (sorry but what does that mean to me? ) I dont have a clue "Michael" [EMAIL PROTECTED] wrote in message

RE: Spaces in query column names

2001-01-24 Thread Maia, Eric
Why don't you use column aliases in the query: SELECT 'First Name' AS FirstName, 'Last-Name'AS LastName, PhoneExtension FROM Employees ORDER BY 'Last-Name', 'First Name' (example from Ben Forta's CF Web Application Construction Kit book) Eric -Original Message- From: Williams, Ryan

RE: Spaces in query column names

2001-01-24 Thread Dave Watts
I have a table that is out of my control and some of the column names have spaces or dashes in them and one is a number. Querying the table works fine, but when I go to output the results of the query CF chokes on these various column names. I've tried different formatting functions to

RE: SQL Create Table

2001-01-24 Thread PEREZ, RICHARD RINGO (SBCSI)
It should be "Votes int NULL" instead of Votes varchar(4) NULL -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 2:49 PM To: CF-Talk Subject: SQL Create Table I'm trying to run a SQL query to create a table ... locally, I'm

RE: CFUPDATE giving me problems, please help...

2001-01-24 Thread Gieseman, Athelene
I've had this happen using CFGRIDUPDATE before. In that case it required that I use the keyonly="Yes" option. What happens if you just create a cfquery and use sql to do the update? I recently gave up on CFUPDATE because I can't get it to save a date/time field with the time. I always forget

Re: Page execution time too long?

2001-01-24 Thread Ryan
At 17:25 1/24/01 -0500, you wrote: How do you explain ToysRus Katrina? I thought ToysRus problems' were related to order fullfillment, things like that? Not enough Tickle Me Elmos and stuff, they couldn't ship fast enough, etc. I didn't think it had anything to do with CF. Am I wrong? Ryan

Re: BEST Reccomendations for CF Hosting

2001-01-24 Thread net_man
For small sites it does not mean much, but it is a restriction to your service. They will only allow you to transfer so much data per month. Then there is a surcharge. The amount of data you transfer is dependent on graphics, and so forth. Look for one that does not restrict your data

RE: SQL Create Table

2001-01-24 Thread Owens, Howard
Great, got that. Thanks, Richard. I think I figured that out right about the time you were posting this. But I'm still hung up on how to create a boolean column. Any suggestions? -Original Message- From: PEREZ, RICHARD RINGO (SBCSI) [SMTP:[EMAIL PROTECTED]] Sent: Wednesday,

Re: Page execution time too long?

2001-01-24 Thread Scott Weikert
That's the impression I got. The CF-based site ran like a champ - their fulfillment process was what was lacking. - Original Message - From: "Ryan" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, January 24, 2001 4:33 PM Subject: Re: Page execution time too long? At

  1   2   >