Re: SOT: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Doug White
Interesting you mention Rackspace, the well known premier host for porn sites and the source of gobs of spam. . - Original Message - From: Joshua Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 11, 2003 12:50 AM Subject: RE: SOT: Looking for a VERY inexpensive

RE: SOT: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Joshua Miller
Rackspace offers just that ... rack space. I've used Rackspace in the past and their service is phenomenal, albeit expensive. They offer excellent service, excellent uptime and very friendly and helpful staff. I think the issue is more with the people sending the spam, I've never received any spam

RE: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Jim Davis
I'm looking for a Hosting Company that has cheap Windows servers that I can lease and use as a development server. Need something I can manage with Terminal Services or SSH or VNC. Need something I can install CFMX and SQL Server on (we have our own licenses). Needs to be cheap -

Re: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Thomas Chiverton
On Friday 11 Jul 2003 09:32 am, Jim Davis wrote: You can pick up a super cheapy box (something like a Celeron 700) for $300-$400 (if you don't have a machine lying around) - even decent rack servers can be had for $600-$1000. Dell's 'build your own spec' thing on their website is very handy -

RE: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Jim Davis
-Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 4:41 AM To: CF-Talk Subject: Re: Looking for a VERY inexpensive dedicated development server On Friday 11 Jul 2003 09:32 am, Jim Davis wrote: You can pick up a super cheapy box

Re: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Thomas Chiverton
On Friday 11 Jul 2003 10:39 am, Jim Davis wrote: get a loot for UKP500 these days ! Yeah - and just think of much you could get if you used real money! ;^) It's OK, they sell in Euros too :-p (Sorry - I've been awake for 26 hours... makes me silly.) Tis Friday :-) -- Thomas C Advanced

RE: CF Comment Tags In Source View

2003-07-11 Thread Tyagi, Badal
Well I'm running CFMX Enterprise Edition and I don't see any comments in view source from browser. Have a deep look whether it is CF comments OR HTML comments. regards badal Tyagi HCL Perot Systems Noida, India -Original Message- From: Harold Brauer [mailto:[EMAIL PROTECTED] Sent:

RE: CF Comment Tags In Source View

2003-07-11 Thread Mike Townend
Check what the actual comment tag is... In CFStudio I always use CTRL-Shift-M for comments... By default this is mapped to the HTML comment !-- -- rather than the CF comment of !--- --- HTH Mikey -Original Message- From: Harold Brauer [mailto:[EMAIL PROTECTED] Sent: Friday, July 11,

Re: Page break for dynamic tables.

2003-07-11 Thread Mahmut Basaran
as far as I remember, you need to define print instructions on a seperate stylesheet block. STYLE MEDIA=print TABLE { page-break-before: auto ;} /STYLE haven't tested the above, but it should work fine. I have a page that displays a query in several different size tables using cfloop. When I

Re: Page break for dynamic tables.

2003-07-11 Thread Jochem van Dieten
Miller, Matthew P HM1 wrote: I have a page that displays a query in several different size tables using cfloop. When I print the page I don't want the table broken up on two separate pages. Then you have to make smaller tables. You can only use CSS to insert extra pageebreaks, not to

Re: Page break for dynamic tables.

2003-07-11 Thread Thomas Chiverton
On Friday 11 Jul 2003 13:23 pm, Jochem van Dieten wrote: Then you have to make smaller tables. You can only use CSS to insert extra pageebreaks, not to magically make the size of your piece of paper larger. style type=text/css TABLE { page-break-before: auto ;} /style Even if you use

RE: Usability

2003-07-11 Thread Lofback, Chris
I think Nielsen's greatest value is in identifying real web user behavior, i.e., how users really interract with a web site/application. It's up to us to decide how to design to accommodate that behavior. And I meant to recommend the info on UseIt.com--specifically the AlertBox columns--not

grand total

2003-07-11 Thread Robert Orlini
Hello, I'm still a newbie on CF so please bear with me. I had a co-worker help me with some CF programming for a shopping cart. This code gives me the totalprice: CFSET totalprice=decimalformat(session.cart[i][2]) * session.cart[i][3]#dollarformat(totalprice)# How can I calculate a grand

RE: grand total

2003-07-11 Thread Tony Weeg
question: session.cart[i][2] is an array called cart? and its set to a session var? and here you would be pulling the 2nd position from that array, on the iteration number that I resolves to? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office

RE: grand total

2003-07-11 Thread Robert Orlini
Sorry for the vagueness of my email. seesion.cart[i][2] holds the quantity info multiplied by the price or session.cart[i][3]. Robert O. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 8:56 AM To: CF-Talk Subject: RE: grand total question:

Re: Page break for dynamic tables.

2003-07-11 Thread Jochem van Dieten
Thomas Chiverton wrote: On Friday 11 Jul 2003 13:23 pm, Jochem van Dieten wrote: Then you have to make smaller tables. You can only use CSS to insert extra pageebreaks, not to magically make the size of your piece of paper larger. Even if you use .somename rather than TABLE, and wrap every

RE: grand total

2003-07-11 Thread Tony Weeg
is that an array or structure? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 8:56 AM To: CF-Talk Subject: RE:

RE: grand total

2003-07-11 Thread Tony Weeg
I would do something like this. cfset session.grandTotal = 0 cfloop index = i list = yourStructureAsAList cfset session.grandTotal = session.grandTotal + (decimalformat(session.cart[i][2]) * session.cart[i][3]) /cfloop cfset myGrandTotal = #session.grandTotal# tony weeg

RE: grand total

2003-07-11 Thread Robert Orlini
An array. RO -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 9:01 AM To: CF-Talk Subject: RE: grand total is that an array or structure? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office

RE: Usability

2003-07-11 Thread Gyrus
Chiming in a bit late here, not sure if this has been mentioned already, but Steve Krug's book 'Don't Make Me Think!' is an excellent supplement/constrast to Nielsen's style of usability advice. I think Nielsen's work is valuable, but if you find him at all curmudgeonly, Krug's like a breath

RE: Usability

2003-07-11 Thread Reilly, James
On a lighter comical side of things, is means: Quite Easily Done! ;-) Jim -Original Message- From: Kevin Graeme [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 5:06 PM To: CF-Talk Subject: RE: Usability Quod Erat Demonstratum Basically, what is demonstrated. It's a high brow

RE: grand total

2003-07-11 Thread Tony Weeg
ok...either way, you can loop through that, cfset theList = arrayToList(session.cart) then loop through that tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Robert Orlini

Re: grand total

2003-07-11 Thread Stephen Moretti
cfset grandtotal = 0 cfloop from=1 to=#ArrayLen(session.cart)# index=i cfset grandtotal = grandtotal + (session.cart[i][2]*session.cart[i][3]) /cfloop cfoutput#grandtotal#/cfoutput Stephen - Original Message - From: Robert Orlini [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Ciliotta, Mario
Thanks, This looks really interesting and I am going to give it a try today. Mario -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 7:29 PM To: CF-Talk Subject: Re: CFFLUSH and IE5.x - 6.0 Yes, by default, IE waits for the table to

RE: grand total

2003-07-11 Thread Tony Weeg
yeah, what he saidthats where I was going...just too early to get it 100% right without running it ;) tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Stephen Moretti

Output values in table Vertically

2003-07-11 Thread Kris Pilles
Does anyone have some code that displays values in a table Vertically rather then the noraml horizantal output Any help would be apprecited. Thanks KP Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

RE: grand total

2003-07-11 Thread Robert Orlini
All is OK. Thanks for the suggestions! Robert O. -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 9:39 AM To: CF-Talk Subject: RE: grand total yeah, what he saidthats where I was going...just too early to get it 100% right without running it

Re: Output values in table Vertically

2003-07-11 Thread Michael T. Tangorre
Could you be a little more specific? - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 11, 2003 9:57 AM Subject: Output values in table Vertically Does anyone have some code that displays values in a table Vertically rather

RE: Output values in table Vertically

2003-07-11 Thread Philip Arnold
Does anyone have some code that displays values in a table Vertically rather then the noraml horizantal output This is asked almost once a week If you search through the Archives, you're bound to find about 10 solutions

Re: Output values in table Vertically

2003-07-11 Thread Stephen Moretti
cfset columns = 3 table cfloop index=thisRow from=1 to=#myquery.recordcount# step=#columns# cfloop index=thisColumn from=1 to=#columns# cfif thisColumn eq 1tr/thisColumn tdcfoutput#myquery.myinfo[thisRow+thisColumn-1]#/cfoutput/td cfif thisColumn eq columns/tr/cfif

About CFEncode

2003-07-11 Thread Hassan_Arteaga_Rodríguez
Hi all: I developed some components and now I want to install those in a production server. I'd like to encode cfc files. When I use cfencode in this way Suppose the current dir is CF MX root\bin where is the cfencode.exe cfencode d:\webs\myproject\cfc\Logic_Layer.cfc

CF Application Design

2003-07-11 Thread Michael T. Tangorre
Does anyone know of any tools available that are free or very cheap that help layout a new application? I am pushing for Adalon here, but its an uphill battle... I am trying to find a tool to aid in the restructuring and redesign of our main application that currently has NO documentation and

RE: CF Application Design

2003-07-11 Thread Mike Brunt
Michael, take a look at NAWT (not another wireframe tool) at strangetactics.com it serves at least part of the process and it is free. Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper Web Application Specialists -Original

RE: is there a cfheader type tag for cfhttp?

2003-07-11 Thread Dave Watts
hi there everyone. is there a way to adjust the headers sent by cfhttp? i'm trying to establish a connection to an application, and it requires very specific headers. You can use the CFHTTPPARAM tag to send headers. Here's an example which sends the Referer header (which you'd reference

RE: Output values in table Vertically

2003-07-11 Thread Ciliotta, Mario
You can take a look at this site: http://www.webtricks.com/customtags/code.cfm?CodeID=19 Mario -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 10:32 AM To: CF-Talk Subject: Re: Output values in table Vertically cfset columns = 3 table

Shared RDS on a CF5 server

2003-07-11 Thread Dan Phillips
I have a bit of an issue here and if anyone from MM on the list can offer anything I would be greatful. We have some CF5 Enterprise edition servers here running in Win2K and using Sandbox Security. We can set the RDS so that is uses the Sandboxing to allow them to connect and only see their data

RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Tyler Silcox
I was very interested in this also, so I jumped right on this yesterday when I saw it...a little forewarning: it definitely works, but it still outputs in chunks and if you are nesting tables, it won't output inner table rows until the inner table is complete. So, for us at least (we use layouts

Re: RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread ksuh
What are you doing using tables for layout? :P - Original Message - From: Tyler Silcox [EMAIL PROTECTED] Date: Friday, July 11, 2003 9:45 am Subject: RE: CFFLUSH and IE5.x - 6.0 I was very interested in this also, so I jumped right on this yesterday when I saw it...a little

RE: RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Tony Weeg
whats wrong with tables for layout? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 11:48 AM To: CF-Talk

COM MSSoap Question

2003-07-11 Thread Chris
I have a quick COM/cfobject question that I hope someone could help me with. I am trying to impliment the following function: s.ClientProperty(ServerHTTPRequest) = true; But CF (4.5) is complaining about the left hand operand being a function. Is there any other way that I can perform this

RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Dan G. Switzer, II
You can also use multiple tbody tags--which should help force the rendering of the page. You're also better off using divs to set up your web site shell instead of tables--this will speed up rendering as well. -Dan -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED] Sent:

Re: RE: RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread ksuh
Although I could go on and on, my statement was a joke. See the smiley? - Original Message - From: Tony Weeg [EMAIL PROTECTED] Date: Friday, July 11, 2003 9:56 am Subject: RE: RE: CFFLUSH and IE5.x - 6.0 whats wrong with tables for layout? tony weeg uncertified advanced cold fusion

RE: RE: RE: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Tony Weeg
oh yeah, I knew that, but Ive heard many on here, say the same thing... I havent found div/layers/spans to be as universal across the board as tables, and cross browser wise, arent tables just much more safe? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net

RE: MX Server Memory Usage

2003-07-11 Thread Turetsky, Seth
Hi Scott, I was actually curious about this too, did you get any more info about this? thanks, seth -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED] Sent: Thursday, July 10, 2003 11:59 AM To: CF-Talk Subject: MX Server Memory Usage Are there any benchmarks or

RE: About CFEncode

2003-07-11 Thread Dave Watts
I developed some components and now I want to install those in a production server. I'd like to encode cfc files. When I use cfencode in this way Suppose the current dir is CF MX root\bin where is the cfencode.exe cfencode d:\webs\myproject\cfc\Logic_Layer.cfc apparently all

RE: CF Application Design

2003-07-11 Thread Joshua Miller
VISIO, it's not specifically for Web Application design, but it works really well for modelling all sorts of processes including databases and networks. When you signup for Microsoft's partner program you get VISIO and a whole boatload of other software for internal use. I think we paid $99 for

Re: CF Application Design

2003-07-11 Thread Stephen Moretti
There is a free version of Adalon. The wireframe version. Its a highly cut down version that's suitable for giving to clients to help them help you gather requirements. It allows you to create diagrams with some detail, that go on to create simple wireframes. That might be enough to get you

RE: About CFEncode

2003-07-11 Thread Hassan_Arteaga_Rodríguez
Thanks Dave !!! -- M. Sc. Hassan Arteaga Rodríguez Microsoft Certified System Engineer WEB Programmer. Network Admin [EMAIL PROTECTED] http://www.enmicuba.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 11:35 AM To: CF-Talk Subject: RE:

Re: CF Application Design

2003-07-11 Thread Jim Campbell
With Visio Enterprise, you can create ER diagrams and forward-engineer database tables with all their relationships defined. Regular Visio will only reverse-engineer Access and SQL-Server databases, but that can be a big help if you need a graphical representation. I'm not sure if you can

RE: About CFEncode

2003-07-11 Thread Hassan_Arteaga_Rodríguez
It's working now.. Thanks again -- M. Sc. Hassan Arteaga Rodríguez Microsoft Certified System Engineer WEB Programmer. Network Admin [EMAIL PROTECTED] http://www.enmicuba.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 11:35 AM To:

RE: Usability

2003-07-11 Thread Mosh Teitelbaum
Actually, I hadn't meant it as tongue in cheek 8^). Error messages don't need to be sexy or anything, unless you're tying them into the style of the rest of your site. As an example (and this isn't really an error message, but...) Amazon.com recently began letting users earn nickels of credit by

RE: CF Application Design

2003-07-11 Thread Costas Piliotis
I'd personally recommend Embarcadero's ER/Studio for database design. It has way better features than Visio, for it is specific... http://www.embarcadero.com/products/erstudio/index.asp I believe Sybase and Oracle also have good database design tools... Looks like Adalon though is a pretty

RE: Usability

2003-07-11 Thread Barney Boisvert
Point (4) should be that errors are consistent across the application. Users hate reading errors, so they need to be able to easily parse the message and extract the 'how to fix' info as easily as possible. While any one of these messages meets Mosh's 3 requirements, taken together they aren't

RE: Usability

2003-07-11 Thread Mosh Teitelbaum
Good point 8^). -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 1:04 PM To: CF-Talk Subject: RE: Usability

RE: CF Application Design

2003-07-11 Thread Barney Boisvert
The free wireframe version of Adalon is great. I wireframed a big ol' FB app (around 40 circuits, from 10 to 40 fuseactions each), and it was great to work with. Once you have the diagrams all set up, and you actually have something pretty to show the boss, the sale for the full version (that

SOT: Reporting Software

2003-07-11 Thread Dave Sueltenfuss
Afternoon Everyone, I am looking for some software to write reports for distribution through ColdFusion. I have tried using Crystal Reports, but have had too many issues with the software to be able to use it on the web sever. Does anyone know of a good report writing package for the web? Any

Where is it? wasRE: RE: CF Application Design

2003-07-11 Thread Mike Brunt
Can anyone either point me to the free Adalon version or email me a copy off line. I looked for it before and could not find it. Kind Regards - Mike Brunt Original Message --- The free wireframe version of Adalon is great. I wireframed a big ol' FB app (around 40 circuits,

Re: Where is it? wasRE: RE: CF Application Design

2003-07-11 Thread Michael T. Tangorre
http://synthis.com/downloads/index.jsp download link one and link 3 :-) - Original Message - From: Mike Brunt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 11, 2003 1:54 PM Subject: Where is it? wasRE: RE: CF Application Design Can anyone either point me to

Usability

2003-07-11 Thread Don
The power of majority opinion or the danger of it. What I'm saying here is that the majority opinion is right in this case, however, it swept me from my own ground, as indicated by another follow-up by myself on another important element late yesterday afternoon, which is, my design for the Help

Usability

2003-07-11 Thread Don
My apology for calling you names, sincere apology. Some one else took that to attack me, that threw me off and made me lose my mind, then temper. You may want to read my own follow-up on the issue I raised at URL,

Usability

2003-07-11 Thread Don
Thanks for something light, I'm feeling my back and shoulders are aching real bad :) Check out my own follow-up, and see if it makes some sense to you. URL, http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesthreadid=25404forumid=4#128042 On a lighter comical side of things, is

ANNOUNCE: Fusebox 4 Conf hotel and schedule released plus book special

2003-07-11 Thread Michael Smith
The hotel and schedule for the Fusebox 4 conference have been released. Learn the new Fusebox 4 in depth at the Fusebox event of the year in Las Vegas NV 8/30-9/1/03 for just $99 when you registering by the early bird date 7/19/03. Details below. Hotel info

SOT: Reporting Software

2003-07-11 Thread Don
Dave, Take a look at Best Friday reporting tool at URL, http://www.hegelsoftware.com/Best_Friday_2.htm Please let me know if you have any questions. Thanks. Li, Chunshen (Don) Afternoon Everyone, I am looking for some software to write reports for distribution through ColdFusion. I have

OT: Cross site scripting

2003-07-11 Thread Brook Davies
Hello, I am trying to figure out what user input I need to clean and strip things like SCRIPT,OBJECT,APPLET,EMBED,FORM,LAYER,ILAYER,FRAME,IFRAME,FRAMESET,PARAM,META from. My site allows users to create their own webpages, so should I care if they can put scripts or applets on THEIR OWN page?

Re: CFFLUSH and IE5.x - 6.0

2003-07-11 Thread Jochem van Dieten
Tony Weeg wrote: oh yeah, I knew that, but Ive heard many on here, say the same thing... Then it must be true :-) I havent found div/layers/spans to be as universal across the board as tables, and cross browser wise, arent tables just much more safe? Layers are an abomination, but divs and

RE: Cross site scripting

2003-07-11 Thread Raymond Camden
Just use htmlEditFormat. That should catch most everything. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email:

RE: Usability

2003-07-11 Thread Mosh Teitelbaum
Your users would, hopefully, know their own capabilities. Just be forewarned that, even if they do understand their own capabilities, they may not be able to write very well. Not that we developers are necessarily such great writers, but... -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax:

RE: Usability

2003-07-11 Thread Plunkett, Matt
-Original Message- From: Chunshen Li If a user is comfortable with Foo must be a valid, non-negative number without fractions or decimals wouldn't he/she be comfortable with Enter an integer for this entry/field? And the later seems simpler. Except of course, that an integer can be

Array Displays Wrong Results

2003-07-11 Thread Jillian Carroll
I've got this array (below) that pulls the results from a variety of tables, and displays results based on the list position. The problem is with frwhatsnewresearch. The list position for 3 SHOULD be 'frname' and the list position for position 6 SHOULD be 'id'. This does not display the right

RE: Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread Matt Robertson
You want the cheapest solution with decent hardware? Look at this: http://powerraq.com I'm told these guys are the UK's biggest host. Run the prices through xe.com's currency converter and you come up with a ridiculously low price per month. $47 per month with a 3-yr contract, and $63 with a

RE: Cross site scripting

2003-07-11 Thread Matt Robertson
Look for CodeCleaner in the Exchange. It uses regexes for speed, and lets you customize what gets let thru or not. A marvelous tag, IMHO. Matt Robertson [EMAIL PROTECTED] MSB Designs, Inc. http://mysecretbase.com

Usability

2003-07-11 Thread Don
The client's system admin is supposed to be technical while he/she is also supposed to have a better understanding of his/her own user community. Your users would, hopefully, know their own capabilities. Just be forewarned that, even if they do understand their own capabilities, they may not be

RE: MX Server Memory Usage

2003-07-11 Thread Pete Freitag
Hi, Are there any benchmarks or thresholds for the proper amount of memory usage jrun.exe should be using, I haven't seen any specific numbers because it is specific to individual apps running. So an application that makes heavy use of application, and session variables will need more memory

RE: Array Displays Wrong Results

2003-07-11 Thread s. isaac dealey
Off the top of my head, if the datebox field is empty, the list will begin with a , ... so even though you've replaced ,, with , , before creating your array, that first element may be removed during a listtoarray() function call... so you might want to try adding a , before #datebox# where

Usability

2003-07-11 Thread Don
Mosh, I have a question for you. I'm thinking about adding a sample data pop window for the Add function, do you think that's helpful in general as a tool, and I'll make it easily confirgurable as other attributes, that is, default to ENABLING THIS FEATURE, however, admin user can easily

Query Help

2003-07-11 Thread Emmet McGovern
Maybe someone can help me I've written a photo gallery app and I'm having a problem with one of my queries. My gallery has several Main Categories (category table). Within each category is a subcategory (subcat table) that contains photosets (gallery table). After uploading a photoset you choose

trouble with single quotes

2003-07-11 Thread Ray Regno
I'm kinda stumped on this problem I've been having: [excerpt from dspPatInsertConfirm.cfm] cfset tabName=pat cfset cols=(pid, mcn, foundry, package, dieconfig, productid, project_alias, technology, sirev, user_comment, username, flag) cfset

RE: Query Help

2003-07-11 Thread Tony Weeg
working for jd? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 2:56 PM To: CF-Talk Subject: Query Help

RE: trouble with single quotes

2003-07-11 Thread Raymond Camden
By default, CF helps you by escaping single quotes. You want to tell CF to _not_ do that, so you want to wrap (#vals#) with (#preserveSingleQuotes(vals)#) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc

good Forums software?

2003-07-11 Thread Bryan Love
It's been too long since I incorporated a good forums application. Anyone have any suggestions? If it's configurable then I don't care too much how it's written, but if it's not, then I much prefer something in FB2 - NOT FB3. Bryan Love

Re: trouble with single quotes

2003-07-11 Thread David Delbridge
What happens if you double up your single quotes? For example: vals=sq_pat.nextval,#mcn_id#,#foundry#,#package#,#dieconfig#,#productid#,#project_alias#,#technology#,#sirev#,''#comment#'',1,0 Dave -- David M. Delbridge Circa 3000 ColdFusion Hosting http://www.circa3k.com Ray Regno wrote:

trouble with single quotes

2003-07-11 Thread Ray Regno
yeah...i tried that. instead of 2 single quotes like i was getting, i'd get 4 What happens if you double up your single quotes? For example: vals=sq_pat.nextval,#mcn_id#,#foundry#,#package#,#dieconfig#, #productid#,#project_alias#,#technology#,#sirev#,''#comment#'',1,0 Dave -- David M.

RE: good Forums software?

2003-07-11 Thread Douglas.Knudsen
http://forum.snitz.com/ works great, is free, in ASP. Doug -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 3:23 PM To: CF-Talk Subject: good Forums software? It's been too long since I incorporated a good forums application. Anyone have

RE: good Forums software?

2003-07-11 Thread Che Vilnonis
Check out CF_Forum (no FB) - http://www.cfcode.com I've tweaked my open source version like crazy. http://www.karatekorner.com/messageboard/ ~Ché -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 3:23 PM To: CF-Talk Subject: good Forums software?

trouble with single quotes

2003-07-11 Thread Ray Regno
if i do this: insert into tab_#tabName# #cols# values (preserveSingleQuotes(#vals#)) i get this: ODBC Error Code = S1000 (General error) [MERANT][ODBC Oracle 8 driver][Oracle 8]ORA-00907: missing right parenthesis SQL = insert into tab_pat (pid, mcn, foundry, package, dieconfig,

RE: trouble with single quotes

2003-07-11 Thread Raymond Camden
You forgot the pound signs, and you misread me (or did I mistype?) use: values(#preserveSingleQuotes(vals)#) === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia

Looking for a VERY inexpensive dedicated development server

2003-07-11 Thread jack
Do yourself a favor and pay a visit to webhostingtalk.com and search for other people's reviews of cihost.. Horrible company. Other dedicated Windows server providers: http://www.meganetserve.com http://www.serveroutsource.net http://www.servermatrix.com (a company of www.theplanet.com, a great

Re: trouble with single quotes

2003-07-11 Thread David Delbridge
Should be: insert into tab_#tabName# #cols# values (#preserveSingleQuotes(vals)#) Dave -- David M. Delbridge Circa 3000 ColdFusion Hosting http://www.circa3k.com Ray Regno wrote: if i do this: insert into tab_#tabName# #cols# values (preserveSingleQuotes(#vals#)) i get this:

RE: good Forums software?

2003-07-11 Thread Bill Brown
My friend's written one that's pretty cool. It's FB2, but also customizable. CFBoards was one of the first ColdFusion-based forum applications out there (predated FuseTalk by awhile): http://www.eruditionzone.com/index.cfm?fuseaction=cfboards Bill Brown http://www.bbrown.info/ : -Original

RE: trouble with single quotes

2003-07-11 Thread Ray Regno
ahh..i see. i didn't notice to take the pound sides out around the 'vals' variable. it works now. THANKS! At 02:35 PM 7/11/2003 -0500, you wrote: You forgot the pound signs, and you misread me (or did I mistype?) use: values(#preserveSingleQuotes(vals)#)

RE: Re: trouble with single quotes

2003-07-11 Thread s. isaac dealey
Are you using PreserveSingleQuotes() around your sql fragment? which I'm guessing you're passing to a custom tag as vals=blah? I've experienced some issues with single quotes on oracle -- specifically I had a problem where using cfqueryparam caused single quotes to be duplicated in the inserted

RE: Usability

2003-07-11 Thread Mosh Teitelbaum
In general, the more help that is available to users, the better. As Matt said, try to assume the person on the other end is a drooling idiot and gear everything to that standard. That said, just make sure that the link to this example is easily found but not in the way. That way, users who

RE: RE: Usability

2003-07-11 Thread s. isaac dealey
Which would be great if most users remembered that much algebra... Original Message --- -Original Message- From: Chunshen Li If a user is comfortable with Foo must be a valid, non-negative number without fractions or decimals wouldn't he/she be comfortable with

cf_TwoSelectsRelated

2003-07-11 Thread Tim Do
Hello All, Has anyone been able to add defaults to this? I'm passing in the value for the first select and want to use that as selected and have the 2nd select go from that value. Thanks, Tim ~| Archives:

datasource connections

2003-07-11 Thread Barney Boisvert
Can anyone give me an official answer to this question (unspecified is a valid answer, of course): Do all queries from a single request use the same database connection? Obviously that's assuming all queries are to the same datasource. If the answer is yes, what about this question: Can

Slightly OT Mileage and Mapping Software Worldwide?

2003-07-11 Thread Mike Brunt
Does anyone know of a software package or system that provides maps and point to point mileage calculations which works well with CF. Or one that makes its information accessible as a web service? Kind Regards - Mike Brunt ~|

File Upload

2003-07-11 Thread cflists
I know I've used something before that could tell you the filesize of a file input when you post a form, but I can't find the code. I remember testing images to not allow upload of images over 100K. Is it a form var or CGI? I know you can see file.filesize after you do a file upload, but I need

RE: File Upload

2003-07-11 Thread Steven Erat
Christian Cantrell posted a solution in his blog back in January: http://www.markme.com/cantrell/archives/002237.cfm HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 5:49 PM To: CF-Talk Subject: File Upload I know I've used

RE: File Upload

2003-07-11 Thread Barney Boisvert
There is a CGI variable called CONTENT_LENGTH that will hold the length of uploaded file content. I believe that's the length before the content is unencoded, but I'm not 100% sure about that. Note that the file is uploaded no matter what. It gets stored as a temp file somewhere on the file

Re: Slightly OT Mileage and Mapping Software Worldwide?

2003-07-11 Thread Mike Randolph
Hello Mike, Our long time customer http://www.esri.com/ is a fan of ColdFusion and provides these kinds of applications. It's been a few years since I've looked but I though that some of their mapping applications rely on CF? Either way they are database products that could be integrated

  1   2   >