Re: language translation when using coldfusion

2007-06-06 Thread Robertson-Ravo, Neil (RX)
Which version of ColdFusion? "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is

JRun and a war application

2007-06-06 Thread Andrew Scott
Is anyone here with more knowledge than me, which isn't hard with multi server configurations of ColdfusionJ Anyway here is the scenario, I have a development server that is running an instance of Coldfusion MX 7.02 as well as Coldfusion MX 8 (I assume this is an MX application) and am looking

Re: CFC Typeof()

2007-06-06 Thread Barney Boisvert
I'm inclined to disagree. getMetaData is cached, so while the first invocation may require some additional overhead, subsequent calls just return the already-existing object straight away, so they're blindingly fast. This also means that you can cache your own metadata in the metadata struct if y

language translation when using coldfusion

2007-06-06 Thread brian purdey
Hello My company has an online survey written in cold fusion and running on a MySql data base. Its in English language. I need to create another language version of the survey and Ive been informed by the translator that it is possible to download the web pages in html, use his translation softw

Re: Simultaneous Requests/CF vs ASP.NET for Flash Remoting

2007-06-06 Thread Robertson-Ravo, Neil (RX)
You need to load test, whatever your application / technology. If you don't, whatever you use is gonna be finger in the air and hope. As for simultaneous requests, I would very much doubt that you will have that number of users executing a thread at the same time if end client is Flash. What serv

Re: Reducing phantom sessions?

2007-06-06 Thread Ariel Jakobovits
What about identifying the bot requests and assigning them all the same session? - Original Message From: Judith Dinowitz <[EMAIL PROTECTED]> To: CF-Talk Sent: Wednesday, June 6, 2007 8:32:59 PM Subject: Re: Reducing phantom sessions? Terry, The only thing you're doing is setting the t

Simultaneous Requests/CF vs ASP.NET for Flash Remoting

2007-06-06 Thread m g
Hi, BACKGROUND: I have developed a "Flash Remoting" application using Coldfusion and SQL 2000 and am almost ready to go live. The remoting application uses many queries/responses to/from the SQL 2000 database via Coldfusion. The Flash Remoting application is a game which I hope will become popul

Re: OT: FB5 Question

2007-06-06 Thread Brian Kotek
1. Caching either the data or the entire rendered output of the select box in the application scope. A custom tag is another option. 2. On the server, in the fuseaction handling the form submission, you can have an if block that checks for validation failure. If validation is ok, perform a relocat

Re: CFC Typeof()

2007-06-06 Thread Brian Kotek
Actually I'm quite sure that a try/catch block would be much faster than calling getMetaData(), especially for CFCs with more than 1 or 2 levels of inheritance. On 6/6/07, Zaphod Beeblebrox <[EMAIL PROTECTED]> wrote: > > regardless of whether or not CF is duck typed or dynamic, the dynamic > langu

Re: Reducing phantom sessions?

2007-06-06 Thread Terry Ford
Ahhh, ok. That approach makes sense too. I was trying to shut down session mgmt completely for bot requests and had no luck. Setting a timeout of 1 second doesn't cause any mutex or locking problems does it? i.e. if a bot request creates a 1 second session and runs 10 seconds, does the sessi

RE: CFC Typeof()

2007-06-06 Thread Ryan, Terrence
The Struct returned from GetMetaData has a member named "name" which contains the full CFCpath of the CFC used to instantiate the object. Terrence Ryan Senior Systems Programmer Wharton Computing and Information Technology   E-mail:     [EMAIL PROTECTED] -Original Message- From:

Re: Reducing phantom sessions?

2007-06-06 Thread Judith Dinowitz
Terry, The only thing you're doing is setting the timeout for a bot to one second. They still create a session, but the session is destroyed immediately. The whole problem is that sessions are created for each bot hit and exist until the session times out. If you have one bot hitting ten pages,

Re: CFC Typeof()

2007-06-06 Thread Zaphod Beeblebrox
regardless of whether or not CF is duck typed or dynamic, the dynamic languages I've used have all had this ability. Say you have an cfc that expects a vehicle, you send it a bike and you send it a car, both are vehicles, but both behave differently in some aspects. They may both have a 'go', b

Re: CFC Typeof()

2007-06-06 Thread Judith Dinowitz
For more on duck typing, you might want to check out Fusion Authority Quarterly Update Volume 1 Issue 1 (PDF for free): http://www.fusionauthority.com/quarterly/FAQU-Vol1-Issue1.pdf Judith Dinowitz Editor-in-Chief: Fusion Authority http://www.fusionauthority.com - Original Message - > Y

Re: Reducing phantom sessions?

2007-06-06 Thread Terry Ford
It seems that Michael and Ben used a similar solution. The dynamic setting of sessionmanagement=YES|NO depending on user agent looks good in theory. However, when I switch to that, I get this error all over the place when those bot user agents start hitting templates: "The requested scope sess

OT: FB5 Question

2007-06-06 Thread CFMX DEV
Sorry for the OT, but I am not having any luck with the Fusebox5 mailing list on Yahoo nor anything on Google. Yes, I hit those before posting here. 1. What is the best way to have a select list setup compiled and reused on various pages? Ex: State select list compiled and called on many display

Re: Reducing phantom sessions?

2007-06-06 Thread AJ Mercer
This is Bens post http://www.bennadel.com/blog/77-Updated-Session-Management-And-Web-Spiders-Bots.htm On 6/7/07, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > Ben Nadel has a blog post about this. > > -- Josh > > > - Original Message - > From: "Terry Ford" <[EMAIL PROTECTED]> > To: "CF-T

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Will Tomlinson
>Wow, that's an old technote. I like the coding style: > > >Do something >Do something else > >ALL CAPS coldfusion tags... unnecessary use of # signs... Hmm... that looks kinda like dave's code. ~| Upgrade to Adobe ColdFusion

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Will Tomlinson
>Wow, that's an old technote. I like the coding style: > > >Do something >Do something else > >ALL CAPS coldfusion tags... unnecessary use of # signs... Hmm... that looks kinda like dave's code. ~| Upgrade to Adobe ColdFusion

RE: CF8 tags for cfEclipse

2007-06-06 Thread Eric Roberts
I think that is for Dreamweaver Neil... Eric -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 3:06 AM To: CF-Talk Subject: Re: CF8 tags for cfEclipse Yes, it's in the beta download set. "This e-mail is from Reed Exhibitions

Re: Reducing phantom sessions?

2007-06-06 Thread Judith Dinowitz
Terry, Michael had a similar problem; we get indexed all the time by Google and other bots. He posted the problem and his solutions at http://www.blogoffusion.com/index.cfm/2005/11/28/pseudomemory-leak Judith Dinowitz Editor-in-Chief: Fusion Authority http://www.fusionauthority.com - Origin

Re: Reducing phantom sessions?

2007-06-06 Thread Josh Nathanson
Ben Nadel has a blog post about this. -- Josh - Original Message - From: "Terry Ford" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Wednesday, June 06, 2007 4:57 PM Subject: Reducing phantom sessions? > Phantom Sessions: These are sessions generally created by bots from > Google, msn, ya

Reducing phantom sessions?

2007-06-06 Thread Terry Ford
Phantom Sessions: These are sessions generally created by bots from Google, msn, yahoo, etc. For every page that they access, a session is created. Since these clients have no cookies, CF creates a new session for every page they touch. Even more annoying are sessions created by CFHTTP calls

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Ravi Gehlot
Hey Rick, Any clues of why I keep getting those errors? Ravi. Rick Root wrote: > On 6/6/07, Jay Greer <[EMAIL PROTECTED]> wrote: > >> Anyone know if this technote applies to ColdFusion 7 and later..? >> >> http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 >> > > While

Re: Do not set blank cookies with cfcookie

2007-06-06 Thread Rick Root
On 6/6/07, Jay Greer <[EMAIL PROTECTED]> wrote: > Anyone know if this technote applies to ColdFusion 7 and later..? > > http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 While I can't answer your question... Wow, that's an old technote. I like the coding style: Do something Do s

Re: SOT - Passing Credit Card info w/o storing in DB

2007-06-06 Thread Les Mizzell
Matt Robertson wrote: > The robot has it right. You should only be transmitting cc info via a > secure gateway to a cc processor, Agreed I've got one client that INSISTS on processing their web CC payments themselves. The only thing I could come up with that made me comfortable: 1. I've g

Re: CF8 tags for cfEclipse

2007-06-06 Thread AJ Mercer
Thanks Mark - hope you feel better soon; not just so this gets done of course! Does cfEclipse have a Tag editor? A popup dialog box where you fill in the blanks and drop down list of options On 6/7/07, Mark Drew <[EMAIL PROTECTED]> wrote: > > cf8 tags coming up soon gentlemen...I have just been d

Re: CFC Typeof()

2007-06-06 Thread Jake Pilgrim
You don't want to do that in Coldfusion - it is unnecessary and is actually a performance hit as well. Read up on 'duck typing' - Sean Corfield has a nice powerpoint that outlines this concept. You have to remember that Coldfusion does not enforce strict typing; Coldfusion is not Java!! The basi

Anyone used Innovative Merchant Gateways Coldfusion API

2007-06-06 Thread Steve Kahn
Does anyone have experience with integrating innovative gateways coldfusion api - please contact me off list. Thanks Steve ~| ColdFusion 8 beta – Build

Re: Custom 404 For Single IIS Site

2007-06-06 Thread Jake Pilgrim
The CF administrator will only let you set up 1 page to handle CFM 404s for the entire server, which introduces an issue if you are hosting multiple sites and wanted to use a 404 handler for each. To get around that, I have done something like this in the past: Missing Template Handler: /mapped

Re: SOT - Passing Credit Card info w/o storing in DB

2007-06-06 Thread Matt Robertson
The robot has it right. You should only be transmitting cc info via a secure gateway to a cc processor, where keeping the data safe is their problem. Just clarifying in case your client wants something like cc nums emailed to them or somesuch. I've had a few of those requests. -- [EMAIL PROTEC

Re: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread Jochem van Dieten
John Paul Ashenfelter wrote: > > I'm curious what comparable hosts folks would suggest -- here's the > list of what needs to be supported and leasable from the hardware side > > * firewalls in a failover configuration (eg a pair of Cisco PIX 515s) > * load-balancers in a failover configuration (e

Re: CFC Typeof()

2007-06-06 Thread Barney Boisvert
Writing an 'instanceOf' method in a base class (perhaps component.cfc, if you've got access) is very straightforward. Just use the CFC metadata to scan up the inheritance chain and see if the type in question matches anything. With CF8, you'll also need to account for interfaces, but that should

Re: CFC Typeof()

2007-06-06 Thread Bryan Stevenson
> Hey all, > > This question was posed to me by one of my colleagues. I don't have an > answer for him, but I'm hoping someone on the list does. > > Thanks Is that like asking the doctor.."I have a friend that has this weird rash"? ;-) Sorry Scott...couldn't resist! Carry on Bryan Stevenso

CFC Typeof()

2007-06-06 Thread Scott Stewart
Hey all, This question was posed to me by one of my colleagues. I don't have an answer for him, but I'm hoping someone on the list does. Thanks sas -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com -

Rules Engine

2007-06-06 Thread Trevor Orr
Just wondering if anyone has ever used RuleML in an application? If so is it a big process to implement? Any possibility or sharing some code? ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years

RE: Any see what is wrong with this query?

2007-06-06 Thread Ian Skinner
Not sure if this is a typo BUT: Nope, that was the issue. Just took me awhile to see that white space character. Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unautho

RE: SOT - Passing Credit Card info w/o storing in DB

2007-06-06 Thread Russ
Just pass it over a secure channel such as SSL. Let the other end worry about storing the CC data. Assuming the other end is a CC processor, you've got nothing to worry about. Russ > -Original Message- > From: Steve Kahn [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 06, 2007 2:48

RE: Any see what is wrong with this query?

2007-06-06 Thread Adkins, Randy
Not sure if this is a typo BUT: There is a space between '06Jun2007_ ILS' in your query statement but not in your Logs Record set SQL SELECT Name FROM Logs WHERE Name = 'ChargedOut_06Jun2007_ ILS_105634322.txt' -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednes

Re: Any see what is wrong with this query?

2007-06-06 Thread Zaphod Beeblebrox
is name a char type vs a varchar, if so, you'll have to pad with spaces on the right. On 6/6/07, Ian Skinner <[EMAIL PROTECTED]> wrote: > Logs Record Set - query - Top 4 of 4 Rows >ATTRIBUTES DATELASTMODIFIED DIRECTORY MODE NAME SIZE TYPE > 1 [empty string] 06/06/2007 10:59:17 AM G:\Tracker

RE: Any see what is wrong with this query?

2007-06-06 Thread Ian Skinner
Thanks anyway, I finally saw the errant white space character. Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is proh

Do not set blank cookies with cfcookie

2007-06-06 Thread Jay Greer
Anyone know if this technote applies to ColdFusion 7 and later..? http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_17009 ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with new ColdFusion

Any see what is wrong with this query?

2007-06-06 Thread Ian Skinner
Logs Record Set - query - Top 4 of 4 Rows ATTRIBUTES DATELASTMODIFIED DIRECTORY MODE NAME SIZE TYPE 1 [empty string] 06/06/2007 10:59:17 AM G:\Tracker\wwwRoot\Data [empty string] ChargedOut_06Jun2007_ILS_105634322.txt 828 File 2 [empty string] 06/06/2007 10:57:00 AM G:\Tracker\wwwRoot\Da

Re: SOT - Passing Credit Card info w/o storing in DB

2007-06-06 Thread Crow T. Robot
Use a gateway? On 6/6/07, Steve Kahn <[EMAIL PROTECTED]> wrote: > > Does anyone know if this can be done or have suggestions to a better > method? > > Securely passing credit card info entered into a form to a recipient > without > storing it in a database? > > > > TIA > > > > ~~

RE: Form Encryption

2007-06-06 Thread Russ
The way this is done is over some secure tunnel at the time of transaction. Verisign's (now Paypal's) tags do that, as well as most other companies I believe. Locally you should never store the credit card, only the transaction id from the cc company. If your server is compromised, they cannot ge

SOT - Passing Credit Card info w/o storing in DB

2007-06-06 Thread Steve Kahn
Does anyone know if this can be done or have suggestions to a better method? Securely passing credit card info entered into a form to a recipient without storing it in a database? TIA ~| ColdFusion MX7 by Adobe® Dyncamicall

Re: Help getting rid of Squares in DB

2007-06-06 Thread Brian Swartzfager
>There are custom tags cleanMSText or demoronize that may aid you in >automating their removal. I have found cleanMSText works better than >demoronize, but I cant seem to find it right now. > I believe both of those work by using Replace to find and replace the problematic character codes with a

Re: Help getting rid of Squares in DB

2007-06-06 Thread Dave l
Just run a query on each table that has the boxes and then do a loop and do a regex for the smartquotes and if it finds one have it replaced with a reg quote and do an update. Im sure one of the regex ninjas on here can do a quicky regex for it >Could you elaborate? > >As I see it, there's no

Re: Custom 404 For Single IIS Site

2007-06-06 Thread C. Hatton Humphrey
> > > Yes, you can use a CFM file for this, we do this for 403s and > > redirection. > > > > I must be missing something, I've created a simple .cfm page and > > pointed the site's 404 error messages to all point to it. I've > > restarted the IIS service. > > Make sure is a it Message Type = "URL

Re: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread J.J. Merrick
I've had a lot of success with The Planet out of Texas. They have self-managed and managed solutions and also have private racks so you can duplicate the security of a co-lo but get rid of the sysadmin. They are always helpful on support and if the hardware goes down it's on them. http://www.thep

Re: Custom 404 For Single IIS Site

2007-06-06 Thread Casey Dougall
On 6/6/07, C. Hatton Humphrey <[EMAIL PROTECTED]> wrote: > > Yes, you can use a CFM file for this, we do this for 403s and > redirection. > > I must be missing something, I've created a simple .cfm page and > pointed the site's 404 error messages to all point to it. I've > restarted the IIS servi

Re: CFMX 7 custom tag locations

2007-06-06 Thread Ravi Gehlot
As far as I know all your tags need to be in 1 directory. If you put them in different directories you will have to be changing the default directory on CFAdmin. It is totally possible to have it in another directory but make sure to keep all your tags in that single directory. Ravi. Jeff Gamb

Re: Custom 404 For Single IIS Site

2007-06-06 Thread C. Hatton Humphrey
> Yes, you can use a CFM file for this, we do this for 403s and redirection. I must be missing something, I've created a simple .cfm page and pointed the site's 404 error messages to all point to it. I've restarted the IIS service. I'm still getting the default IIS error. Ideas? ~~

Re: Nowrap in CSS

2007-06-06 Thread Claude Schneegans
Never min, found it: white-space: nowrap -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~~~

Re: CFMX 7 custom tag locations

2007-06-06 Thread Jeff Gamble
It does but this particular custom tag is located outside of that directory. I thought it wouldn't be an issue as long as it's in the same directory that it's be called from. ~| Create Web Applications With ColdFusion MX7 & Flex

Re: CFMX 7 custom tag locations

2007-06-06 Thread Jeff Gamble
It does but this particular custom tag is located outside of that directory. I thought it wouldn't be an issue as long as it's in the same directory that it's be called from. ~| Macromedia ColdFusion MX7 Upgrade to MX7 & experie

RE: Jquery site

2007-06-06 Thread Bader, Terrence C CTR MARMC, 231
Well just to follow up on this. It turns out that when JQuery.com moved their new IP was within a large range of blocked IP address since Apr 2006. As of today they are resolving this (for Jquery anyway) and within a few days the ACLs on the routers should be fully updated and those on navy netwo

Re: GoDaddy

2007-06-06 Thread Cutter (CFRelated)
Actually, Rick, the majority of our code base was written by Flash designers who had to learn ColdFusion to extend and customize a poorly written home-rolled framework that was originally written on top of CF 4.5. Only within the last two + years have true ColdFusion developers written new appl

RE: Form Encryption

2007-06-06 Thread Steve Kahn
Very good points across the board. Technically, I do not need to store the credit card info in the db. However I do need to securely send/pass/or make available the credit card info to the receiving company. Maybe there is a better method to do so. Steve -Original Message- From: Matt Ro

Re: Executing Code in a CFINCLUDE within CFMAIL

2007-06-06 Thread K Simanonok
>Are you trying to send a HTML message? If yes, add this attribute type="html" I have tried sending both HTML and plain text, and yes I have tried that cfmail type="html" attribute in addition to a lot of other things following some of the historical examples on this forum, but nothing works. T

RE: OT: General Question...

2007-06-06 Thread Rick Faircloth
Hey, Paul (or others...) Have you used the technique described in the article you referenced? I've been working that over, but can't get it to work. I'm sure I'm missing something simple... Rick -Original Message- From: Paul Glover [mailto:[EMAIL PROTECTED] Sent: Thursday, May 31, 200

Re: CF8 tags for cfEclipse

2007-06-06 Thread Mark Drew
cf8 tags coming up soon gentlemen...I have just been down with the flu since I got back from Scotch on the Rocks... as soon as I a bit better there will be a release a comin' MD On 6/6/07, Rey Bango <[EMAIL PROTECTED]> wrote: > Yeah, but I only want it in there if it completely messes up my code.

Re: Form Encryption

2007-06-06 Thread Matt Robertson
You can use asymmetric-key RSA encryption economically... http://developer.perthweb.com.au/textcrypt.html I've been using that tool for many years. its about as safe as you can get for encrypting stored data. Key part of that phrase is "as you can get". The problems with symmetric key encrypti

Re: Custom 404 For Single IIS Site

2007-06-06 Thread Robertson-Ravo, Neil (RX)
Yes, you can use a CFM file for this, we do this for 403s and redirection. "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

Custom 404 For Single IIS Site

2007-06-06 Thread C. Hatton Humphrey
I'm not sure if this is something that I can do but I'm hoping it's possible: I have a single site defined in IIS. According to the properties tag in IIS I can define custom error messages for each site. Can this page be a .cfm page? Here's why I ask, I've been approached by someone that wants

Re: CFMX 7 custom tag locations

2007-06-06 Thread Ravi Gehlot
Not that I know of. Go to CFAdmin and make sure that the Custom Tag path points to your current custom tag directory. Ravi. Jeff Gamble wrote: > We're upgrading from CF 5 to CFMX 7 on a new server. The process has gone > well with the exception of a custom tag that is being employed outside of

CFMX 7 custom tag locations

2007-06-06 Thread Jeff Gamble
We're upgrading from CF 5 to CFMX 7 on a new server. The process has gone well with the exception of a custom tag that is being employed outside of the Custom Tag directory on CFMX 7. The administrator recognizes E:/CFusion/Custom Tags and the custom tags in that directory but a custom tag that

RE: Form Encryption

2007-06-06 Thread Russ
There is no real good encryption you can use. You can use a symmetric key encryption algorithm to encrypt the data before inserting it into sql, and then decrypt when recalling the data, but you will have to keep the encryption key in the code somewhere, or read it from some source. Either way

RE: Form Encryption

2007-06-06 Thread Steve Kahn
Got the comodo ssl in place, want to encrypt the data when inserted into sql and then decrypt it when calling it up -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 12:13 PM To: CF-Talk Subject: RE: Form Encryption SSL is one piece of the p

RE: Form Encryption

2007-06-06 Thread Adkins, Randy
SSL is one piece of the pie you should have! -Original Message- From: Steve Kahn [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 11:59 AM To: CF-Talk Subject: RE: Form Encryption protect credit card and personal info; when the visitor submits form data at site and when the comp

RE: GoDaddy

2007-06-06 Thread Russ
> -Original Message- > From: Rick Root [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 06, 2007 11:56 AM > To: CF-Talk > Subject: Re: GoDaddy > > On 6/6/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 06 Jun 2007, Russ wrote: > > > instances per server on some decent dell h

RE: Form Encryption

2007-06-06 Thread Steve Kahn
protect credit card and personal info; when the visitor submits form data at site and when the company employee logs in to site to call up the data -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 11:42 AM To: CF-Talk Subject: Re: Form Encry

Re: cfif in xsl

2007-06-06 Thread Barney Boisvert
XSL has xsl:if and xsl:choose tags that can be used for conditional logic. cheers, barneyb On 6/6/07, Dave Francis <[EMAIL PROTECTED]> wrote: > I use xmlTransform to turn a taxonomy into a "tree" of html > checkboxes. For later editing, I need to set those checkboxes which were > previous

Re: GoDaddy

2007-06-06 Thread Rick Root
On 6/6/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Wednesday 06 Jun 2007, Russ wrote: > > instances per server on some decent dell hardware. Granted, it's a high > > traffic site, and the ram usage starts getting into the GB's after a while, > > but I really don't see most servers being able

cfif in xsl

2007-06-06 Thread Dave Francis
I use xmlTransform to turn a taxonomy into a "tree" of html checkboxes. For later editing, I need to set those checkboxes which were previously checked. I can achieve this with some pretty ugly cf-generated javascript, but would prefer to do it in the xsl. Unfortunately, when

Re: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread John Paul Ashenfelter
On 6/6/07, Mik Muller <[EMAIL PROTECTED]> wrote: > I always though having cots in the rack room was a buzz-term. Having air > supply on hand beats that hands down. Do they walk around with it on their > backs? Nope -- it's a separate supply to parts of the building (so they said). They do have

Re: Help getting rid of Squares in DB

2007-06-06 Thread Ron Gowen
There are custom tags cleanMSText or demoronize that may aid you in automating their removal. I have found cleanMSText works better than demoronize, but I cant seem to find it right now. On 6/6/07, Tom King <[EMAIL PROTECTED]> wrote: > > Could you elaborate? > > As I see it, there's no way I can

Re: I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Rick Root
Can you send me the image you're trying to resize off list? Rick On 6/6/07, Ravi Gehlot <[EMAIL PROTECTED]> wrote: > Hey Rick... > > This is what I get: > > struct > Message [empty string] > StackTrace java.lang.NullPointerException > TagContext > array [empty] > > Typejava.lang.

Re: Form Encryption

2007-06-06 Thread Tom Chiverton
On Wednesday 06 Jun 2007, Steve Kahn wrote: > Does anyone have an easy to use 'Form Encryption' app they could recommend? With the aim of doing what ? And since you mention 'encryption' - against what sort of an attacker ? -- Tom Chiverton Helping to heterogeneously disintermediate total initiat

Re: I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Ravi Gehlot
Hey Rick... This is what I get: struct Message [empty string] StackTrace java.lang.NullPointerException TagContext array [empty] Typejava.lang.NullPointerException 11:30:43.043 - java.lang.NullPointerException - in : line -1

Re: GoDaddy

2007-06-06 Thread Tom Chiverton
On Wednesday 06 Jun 2007, Russ wrote: > instances per server on some decent dell hardware. Granted, it's a high > traffic site, and the ram usage starts getting into the GB's after a while, > but I really don't see most servers being able to run 500 instances. You've made the point Rick didn't -

Re: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread James Wolfe
>> I've got a client getting ready to move a major CF/MSSQL site > >I think Edgeweb Hosting could fit the bill. >http://www.edgewebhosting.net/ We have tried a number of hosts and I can definitively say that EdgeWeb has proven themselves to be the best by far. Amongst all our service providers

RE: GoDaddy

2007-06-06 Thread Russ
> -Original Message- > From: Tom Chiverton [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 06, 2007 11:09 AM > To: CF-Talk > Subject: Re: GoDaddy > > On Wednesday 06 Jun 2007, Rick Root wrote: > > On the other hand, since we're talking about hosting companies, > > imagine 500 sites on a

Re: I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Rick Root
Wrap your code like this: ... code ... Maybey ou can get som more robust error reporting that says where the error actually occurred. Rick On 6/6/07, Ravi Gehlot <[EMAIL PROTECTED]> wrote: > Hey Rick, > >This is what I have: > > > > '#memberPicturePath#/#URL.clubMemberI

Form Encryption

2007-06-06 Thread Steve Kahn
Good Morning Does anyone have an easy to use 'Form Encryption' app they could recommend? TIA ~| Create robust enterprise, web RIAs. Upgrade & integrate Adobe Coldfusion MX7 with Flex 2 http://www.adobe.com/products/coldfusion/

RE: cfhttp

2007-06-06 Thread Ben Nadel
Chad, It might also be a "Referer" issue. Site don't like screen-scraping so they try to limit views to only people who came from a local site. Check this out: http://www.bennadel.com/index.cfm?dax=blog:314.view You have to send a fake referring value to trick the site into thinking you are al

error when using imagecfc-2.16

2007-06-06 Thread Ravi Gehlot
The web site you are accessing has experienced an unexpected error. Please contact the website administrator. The following information is meant for the website developer for debugging purposes. Error Occurred While Processing Request The system has attempted to use an undefined value, which usua

Re: I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Ravi Gehlot
Hey Rick, This is what I have: INSERT intoclubMember ( pictureFileName ) VALUES ( '#imgInfo#' )

Re: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread Mik Muller
I always though having cots in the rack room was a buzz-term. Having air supply on hand beats that hands down. Do they walk around with it on their backs? Mik >Suggestions other than Rackspace? I've also worked with ServerVault in >the past when *security* was the driver (eg they had 24 hour

Re: GoDaddy

2007-06-06 Thread Tom Chiverton
On Wednesday 06 Jun 2007, Rick Root wrote: > On the other hand, since we're talking about hosting companies, > imagine 500 sites on a single server, all with completely different > code, written by developers of *ALL* levels of experience, and with > development/modifications often being made to th

Re: I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Rick Root
You'll have to go into a LOT more detail than that =) The ImageCFC support forums are here, btw: http://url.rickroot.com/u/z Rick On 6/6/07, Ravi Gehlot <[EMAIL PROTECTED]> wrote: > The web site you are accessing has experienced an unexpected error. > Please contact the website administrator. >

Re: GoDaddy

2007-06-06 Thread Rick Root
C'mon people. There is a huge difference between running 1500 sites using the same codebase in a well organized cluster, and a "shared hosting environment" like we're talking about. If you're running 1500 sites using a single codebase, I'll bet you've spent a lot of time optimizing the code for p

RE: Shortlist of High-End (CF) Hosts?

2007-06-06 Thread Dave Watts
> I've got a client getting ready to move a major CF/MSSQL site > from a local colocation facility to a completely outsourced > solution. I've had previous experience with Rackspace and am > *very* happy with them as a choice, but I need to get a > couple of competitive bids to ease the mind of

Re: CF8 tags for cfEclipse

2007-06-06 Thread Rey Bango
Yeah, but I only want it in there if it completely messes up my code. Otherwise, its useless to me! ;) Tom Chiverton wrote: > On Wednesday 06 Jun 2007, Rey Bango wrote: >> Oh cmon. Definitely bug Mark about it. Be sure though, to tell him that >> you would like him to add it to HomeSite and CF S

Shortlist of High-End (CF) Hosts?

2007-06-06 Thread John Paul Ashenfelter
Folks, I've got a client getting ready to move a major CF/MSSQL site from a local colocation facility to a completely outsourced solution. I've had previous experience with Rackspace and am *very* happy with them as a choice, but I need to get a couple of competitive bids to ease the mind of every

Re: CF8 tags for cfEclipse

2007-06-06 Thread Tom Chiverton
On Wednesday 06 Jun 2007, Rey Bango wrote: > Oh cmon. Definitely bug Mark about it. Be sure though, to tell him that > you would like him to add it to HomeSite and CF Studio as well. He just > loves that. LOL! I hear he's working on a design view too :-) -- Tom Chiverton Helping to seamlessly un

Re: Nowrap in CSS

2007-06-06 Thread James Holmes
Yes, e.g.: p { white-space: nowrap; overflow: scroll; width: 430px;} http://www.tizag.com/cssT/reference/white-space.php On 6/6/07, Claude Schneegans <[EMAIL PROTECTED]> wrote: > Hi, > > Not really CF related, but... > Is there any equivalent in CSS for NOWRAP like in ? -- mxAjax / CFAjax do

I am getting this error with imagecfc-2.16. any clues?

2007-06-06 Thread Ravi Gehlot
The web site you are accessing has experienced an unexpected error. Please contact the website administrator. The following information is meant for the website developer for debugging purposes. Error Occurred While Processing Request The system has attempted to use an undefined value, which usua

RE: How to handle the transition period to a new host?

2007-06-06 Thread Mik Muller
Brad, After writing the text below I re-read your post and wondered if I missed something. Are you moving the IP number to the new box too? If not then the text below is valid. -- A new domain that no one has ever used, and therefore isn't cached, should be pointed as an alias to the new

Re: CF8 tags for cfEclipse

2007-06-06 Thread Rey Bango
Oh cmon. Definitely bug Mark about it. Be sure though, to tell him that you would like him to add it to HomeSite and CF Studio as well. He just loves that. LOL! AJ Mercer wrote: > I wont bug Mark - I am sure he will be keen as the rest of us to get this > added to cfEclipse. > > On 6/6/07, Andr

  1   2   >