Re: mod_rewrite question: redirecting to www.domain.com from domain.com with dynamic domain names

2010-07-15 Thread Tom Chiverton
there a way I can > make it dynamic Something like rewritecond %{http_host} ^([a-zA-Z]).com [nc] rewriterule ^(.*)$ http://www.$2.com/$1 [r=301,nc] but I'd have to read the docs... > if it already has a subdomain, ignore this rule. So... How can you determine this ? -- Tom C

Re: logout and back button

2010-07-15 Thread Tom Chiverton
On Wednesday 14 Jul 2010 14:49:29 you wrote: > If other programming languages can effectively end session variables, i > still dont know what MX's problem is. Citation needed. -- Tom Chiverton Helping to globally deliver collaborative best-of-breed eye-catching open- source soluti

Re: How to interpret log files?

2010-07-15 Thread Tom Chiverton
in the web server log should narrow it down, for instance. -- Tom Chiverton Helping to augmentatively monetize sexy paradigms as part of the IT team of the year 2010, '09 and '08 This email is sent for and on behalf of Halliwells L

Re: How to interpret log files?

2010-07-14 Thread Tom Chiverton
ime, normally memory related. -- Tom Chiverton Helping to continuously maximize appliances as part of the IT team of the year 2010, '09 and '08 This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liabilit

Re: logout and back button

2010-07-13 Thread Tom Chiverton
if they wanted to (by saving the page, for instance). If you allow non-logged in users to perform actions that they shouldn't be allowed to, then you have a bigger problem than your log out work flow. -- Tom Chiverton Helping to collaboratively monetize deliverables as part of the

Re: ColdFusion Builder Key Commands

2010-07-12 Thread Tom Chiverton
On Monday 12 Jul 2010 14:23:36 you wrote: > AutoHotKey, which lets your script just about anything (at least for > Windows, not sure if there is something similar for the Mac?). Or Snippit's, if all you want to do is write your own templates and execute them with a shortcut. -- To

Re: logout and back button

2010-07-12 Thread Tom Chiverton
#x27;logout confirmation' page that says "thank you for using blah blah ltd". -- Tom Chiverton Helping to appropriately industrialize professional cross-platform efficient patterns as part of the IT team of the year 2010, '09 and '08

Re: CFMAIL isn't working at all

2010-07-07 Thread Tom Chiverton
On Tuesday 06 Jul 2010 14:15:10 you wrote: > What happens if you log in as the same user that CF is running as > (cfusion), and attempt to send mail to sendmail via telnet? Or use a packet monitor like tethereal to see what is going on at the network level on the SMTP port. -- Tom Chi

Re: ColdFusion Builder Auto-Indent

2010-06-29 Thread Tom Chiverton
On Tuesday 29 Jun 2010 06:41:34 Matt Quackenbush wrote: > However, I do not see any such option in my installation. You mean the whole 'ColdFusion' option is missing ? Or something else ? -- Tom Chiverton Helping to conveniently grow enterprise viral initiatives as part of the IT

Re: coldfusion equivalent to php json_encode

2010-06-28 Thread Tom Chiverton
ing, it's possible your results structure is slightly different. You can always build the JSON string by hand... -- Tom Chiverton Helping to appropriately pursue professional clicks-and-mortar viral action- items as part of the IT team of the year 201

Re: Odd MySQL error...

2010-06-24 Thread Tom Chiverton
On Wednesday 23 Jun 2010 21:27:06 you wrote: > If looks like your server is getting random intermittent connection drops > from your MySQL server (I'm assuming it's remote) You could turn off persistent connections too. -- Tom Chiverton Helping to evangelistically innovate

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton
ot/t.cfm'' " java.lang.OutOfMemoryError: Java heap space Of course a swift bounce of CF fixes that, but I wonder if you could try increasing you heap size to beyond the file size and see what happens ? -- Tom Chiverton Helping to greatly seize B2B mission-criti

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton
tch in CFCONTENT to a much smaller file like "/etc/hosts" and it all works as expected. Fun fun fun. -- Tom Chiverton Helping to continually disseminate vertical eigth-generation exceptional B2C e-tailers as part of the IT team of the year 2010, '09 and '08 *

Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton
smaller (-30mb) files. It fails consistantly without a ColdFusion > error, the browser receives a 404 error Does it get this error immediately ? Or after transferring some of the file ? I'd suspect some setting you've not copied into the new server, like request timeout or RAM lim

Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Tom Chiverton
On Monday 21 Jun 2010 20:20:11 you wrote: > I don't know if anyone from Adobe monitors this list, but I'm thinking it > may be time to consider rebranding CF. Sigh. Do we have to have the 'ActionScript Server' argument again too ? -- Tom Chiverton Helping to proactive

Re: Gudies on how to create a Webservice and Security in Adobe ColdFusion 9? Please :)

2010-06-21 Thread Tom Chiverton
plications-common-attacks though ! -- Tom Chiverton Helping to continuously develop guinine cutting-edge channels as part of the IT team of the year 2010, '09 and '08 This email is sent for and on behalf of Halliwells LLP. Halliwe

Re: CF9 Developer Edition - IP Addresses

2010-06-21 Thread Tom Chiverton
t be read the other way, but our intention was what I said. " -- Tom Chiverton Helping to continuously syndicate meta-services as part of the IT team of the year 2010, '09 and '08 This email is sent for and on behalf of H

RE: CF9 Developer Edition - IP Addresses

2010-06-16 Thread Tom Chiverton
>does anyone know how to edit the allowed allocated IP addresses for the CF9 Restart the CF server. This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales un

Re: HowTo Convert a String to an Array?

2010-06-02 Thread Tom Chiverton
ng how to use the string above to create an array, which will > then allow be to later build out the following: You probably want to split it on '&' to start with. Take a look in the docs at the string functions. -- Tom Chiverton Helping to vitalistically promote prospective

Re: HTML 5, has anyone done anything more than "played" with it

2010-06-02 Thread Tom Chiverton
itl IE9 comes out (I'm not a > M$ fanboy, but it is the most widely used browser). IE overall is, but you really have to look at each version as a separate product, in which case it really isn't :-) -- Tom Chiverton Helping to efficiently unleash vertical revolutionary edge-of-y

Re: Remove html characters

2010-05-18 Thread Tom Chiverton
On Tuesday 18 May 2010 15:33:01 you wrote: > #REReplace(trim(MYTEXTSTRING), "<[^>]*>", "", "All")# But if I say that this is < the other thing, which is > that thing, it'll go all wrong... -- Tom Chiverton Helping to centrally extend indus

Re: Automate FTP

2010-05-17 Thread Tom Chiverton
k to see what is really going on during the FTP session ? -- Tom Chiverton Helping to heterogeneously utilize m-commerce as part of the IT team of the year 2010, '09 and '08 This email is sent for and on behalf of Halliwells

Re: Scheduled task isn't running the item in the url

2010-05-14 Thread Tom Chiverton
r's browser. Could it be DNS (change not getting there yet) or permissions (automatic Windows domain authorisation, for instance, or saved credentials in your browser). Testing directly on the server or locally with something like 'wget' is normally the best path forwards. -- Tom C

Re: New CF security bulletin

2010-05-13 Thread Tom Chiverton
On Wednesday 12 May 2010 19:21:35 you wrote: > http://forta.com/blog/index.cfm/2010/5/11/ColdFusion-Security-Hotfix-Releas > ed#comments Oh my. That's fairly impressive. -- Tom Chiverton Helping to interactively deploy total back-end strategic B2B synergies as part of the IT team

Re: CRUD screens...

2010-04-21 Thread Tom Chiverton
On Monday 19 Apr 2010, Justin Scott wrote: > Just curious what people are using to make/manage CRUD screens these days > for data management applications. Anything new in this area over the last > couple of years? ColdFusion Builder has a wizard. -- Helping to enthusiastically cultivate low-ri

Re: PDF alternate to cfdocument [spamtrap bayes][spamtrap heur][auto-ip]

2010-04-06 Thread Tom Chiverton
On Tuesday 06 Apr 2010, Paul Hastings wrote: > On 4/6/2010 10:52 AM, Craigsell wrote: > > I would use iText (http://itextpdf.com/). It's the same code that runs > > i think he specified "easy" ;-) There are a ton of good examples on the first page of the obvious google search. -- Helping to e

Re: reverse engineer PHP to CF

2010-03-31 Thread Tom Chiverton
On Monday 29 Mar 2010, Glyn Jackson wrote: > I no nothing about PHP. can any one reverse engineer this following in CF? It appears to allow the display and overwrite of any file the user knows the path of (or can guess) and listing of all the files in the current directory (web root?). Shouldn'

Re: Features (Re: ColdFusion Builder Released!)

2010-03-24 Thread Tom Chiverton
On Tuesday 23 Mar 2010, b...@bradwood.com wrote: > As a ColdBox user, that would be really really nice for the IDE to be > aware of how the autowiring is going to work at run time. I never > realized how useful it was for your IDE to "know" about the variables > and objects in your code until I d

Re: ColdFusion Builder Released!

2010-03-24 Thread Tom Chiverton
On Wednesday 24 Mar 2010, Andrew Scott wrote: > Having said all that on a comparison I fail to see where it is given tru > value for money, when there are better, faster free alternatives ? Snap. Compare what it does to a 'proper' IDE like what JetBrains have for Java, and you see it's *much* cl

Re: iText version in CF9

2010-03-22 Thread Tom Chiverton
On Monday 15 Mar 2010, Craigsell wrote: > I jsut started working with iText version 5.0.1 from my CF8 8.0.0 instance. > Soon we will be migrating to CF9. Does anyone know the itext version that > ships with CF9 and if there are any differences with the latest version? I > know the new version w

Re: Local DEV setup, multiple projects/websites

2010-03-02 Thread Tom Chiverton
On Monday 01 Mar 2010, Cameron Childress wrote: > end up with a buncha hosts file entries everyone on the team has to > manage. For me, it's much less work. YMMV. Well, of course, but I don't understand how differing live and development environments is ever a good thing. -- Helping to colla

Re: Serious, intermittent problem with CF Web Service

2010-03-01 Thread Tom Chiverton
On Monday 01 Mar 2010, Leon Miller-Out wrote: > We're still getting the error after updating to the "latest" Sun 1.4.2 JRE, Did I miss why you couldn't try a much more recent one ? -- Helping to advantageously maintain IPOs as part of the IT team of the year 2010, '09 and '08

Re: Local DEV setup, multiple projects/websites

2010-03-01 Thread Tom Chiverton
On Friday 26 Feb 2010, Cameron Childress wrote: > On Thu, Feb 25, 2010 at 9:05 PM, Jeff U wrote: > > I'm hoping I can create all links RELATIVE and that way they work > > both locally as well as on production with no code changes what-so-ever. > > By far, the easiest solution is to make your link

Re: Cleaning Microsoft .docx special chars

2010-02-25 Thread Tom Chiverton
On Thursday 25 Feb 2010, Kevin Pepperman wrote: > But recently he has been using a newer version of Word and giving me .docx > files. Ask him to stop ? I would hope he would. Your interchange formats may even be specified in the contract -- Helping to autoschediastically cluster collabor

New CFEclipse has issues with CFInterface ?

2010-02-08 Thread Tom Chiverton
Has anyone else using the new CFEclipse release opened up a CFInterface CFC ? The following: is valid, as far as Adobe CF9 is concerned, but CFE puts a 'borking the parse' error on the first line. -- Helping to simultaneously administrate convergence as part of the IT team of the year 20

Re: (ot) Adobe error messages

2010-01-27 Thread Tom Chiverton
On Tuesday 26 Jan 2010, Qing Xia wrote: > > I did submit it to the wish list at > > https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, but I don't > > believe I was given a confirmation number. Yeah, the bug tracker is now totally broken, as opposed to mearly being nearly useless. --

Re: (ot) Adobe error messages

2010-01-26 Thread Tom Chiverton
On Tuesday 26 Jan 2010, Qing Xia wrote: > It is definitely nice to have--makes the code far cleaner. Plus, it makes > the tag more consistent--there is no semantic reason why the NULL attribute > should work with some functions but not others. What NULL ? We're talking about the log file, not the

Re: ColdFusion CPU Spinning|Spiking Problem week two.

2010-01-26 Thread Tom Chiverton
On Monday 25 Jan 2010, Ian Skinner wrote: > It's the start of a new week and I wish I was home, under the covers, > nursing my cold|flu. You might have already checked, but is there a spike in network traffic (HTTP) ? What about the load on the database server (if any) ? -- Helping to paradigm

Re: (ot) Adobe error messages

2010-01-26 Thread Tom Chiverton
On Monday 25 Jan 2010, Qing Xia wrote: > I wonder how long it is going to take Adobe to replace all the > "[Macromedia]" in CF error messages to "[Adobe]". Completely irrelevant > maybe, but nice to have so new CF people don't have to wonder. You could only do that in a major release (like CF10)

Re: OT: FB3/FB4 Problem

2010-01-25 Thread Tom Chiverton
Did you clear out your 'workspace' folder too ? Try just renameing it and see if that fixes things. -- Helping to widespreadedly establish B2B enterprise-class performance-oriented market-driven deliverables as part of the IT team of the year 2010, '09 and '08 ***

Re: Why i fear ColdFusion is on its last legs in Australia

2010-01-22 Thread Tom Chiverton
On Friday 22 Jan 2010, Dave Watts wrote: > While I think that the open-source CFML implementations are great and > all, I think you can understand why Adobe might not present at an > open-source conference, right? Adobe does a ton of good open source work, in particular around Flex. They have a

Re: AJAX Question

2010-01-22 Thread Tom Chiverton
On Friday 22 Jan 2010, Matthew Allen wrote: > Can anyone please give me pointers or real life example of how to insert > simple form field values into a database using AJAX. /your/path/to/A.cfc?returnFormat=json&method='yourSaveMethodName'&arg1='foo'&arg2=23 -- Helping to evangelistically intro

Re: Why i fear ColdFusion is on its last legs in Australia

2010-01-22 Thread Tom Chiverton
On Thursday 21 Jan 2010, Dave Watts wrote: > Melbourne which had PHP topics, but I don't think CF would be an > appropriate topic at an open-source conference, since, you know, it's > closed-source. Nah...there's a open language spec (due any day now) and at least two open source implementations

Re: CF5 download

2010-01-22 Thread Tom Chiverton
On Tuesday 12 Jan 2010, Tom Chiverton wrote: > On Monday 11 Jan 2010, b...@bradwood.com wrote: > > Tom, I've always loved your signature-- does it not count now that it is > > 2010? > > We've not won it this year yet :-) Now we have :-) -- Helping to interactivel

Re: Why i fear ColdFusion is on its last legs

2010-01-21 Thread Tom Chiverton
Wow ? Seriously ? ColdFusion is dead ? *Again* :-) -- Helping to continually develop front-end next-generation edge-of-your-seat holistic mindshares as part of the IT team of the year, '09 and '08 This email is sent for and on behalf of Hal

Re: Recent SQL Injection attacks

2010-01-18 Thread Tom Chiverton
On Friday 15 Jan 2010, Chung Chow wrote: > if ( isdefined("cgi.query_string") and ( > findnocase("DECLARE",cgi.query_string) or I do declare that keyword matching alone has issues :-) -- Helping to challengingly envisioneer eigth-generation network integrated turn-key bandwidth a

Re: CF5 download

2010-01-15 Thread Tom Chiverton
Maybe Halliwells should enter the 'comedy causer of the year' instead :-) -- Helping to enthusiastically iterate sticky visionary infomediaries as part of the IT team of the year, '09 and '08 This email is sent for and on behalf of Halliwel

Re: CF5 download

2010-01-12 Thread Tom Chiverton
On Monday 11 Jan 2010, b...@bradwood.com wrote: > Tom, I've always loved your signature-- does it not count now that it is > 2010? We've not won it this year yet :-) -- Helping to preemptively seize networks as part of the IT team of the year, '09 and '08 *

Re: CF5 download

2010-01-11 Thread Tom Chiverton
On Thursday 07 Jan 2010, Kevin Pepperman wrote: > So I did a test install in a Ubuntu VM, only to discover CF5 only runs on > older versions Apache (LTE Apache 2.0.43-xx ) AFAIK You could have left it running there using the built in web server, and linked it into your Apache install via. mod_pr

Re: model glue xml file

2009-12-18 Thread Tom Chiverton
On Friday 18 Dec 2009, Chad Gray wrote: > What keeps someone from loading up the model-glue XML file through their > browser? We've got global rules in our Apache config. that ban sending *.xml files, for instance. -- Helping to collaboratively harness turn-key principle-centered eyeballs as

Re: Server Performance

2009-12-18 Thread Tom Chiverton
On Friday 18 Dec 2009, webmas...@pegweb.com wrote: > Is there a way through command line or a 3rd party application to see > what web sites on a CF Pro 8 server are causing the most requests? Your web server logs would seem the obvious bet... -- Helping to enthusiastically aggregate unique tot

Re: deadlocks

2009-12-17 Thread Tom Chiverton
On Thursday 17 Dec 2009, Chad Gray wrote: > I have a feeling in need to optimize my data and not the CF code. Making it run faster will not stop you getting deadlocks (entangled pairs of conflicting transactions). It might reduce the frequency of them, however. You really need to establish who/

Re: Problem in launching MultiserverMonitor

2009-12-17 Thread Tom Chiverton
On Thursday 17 Dec 2009, Sigi Heckl wrote: > if I try a longer password the button text changes to "Set new > password" Did you press that button ? -- Helping to professionally fashion fourth-generation materials as part of the IT team of the year, '09 and '08 ***

Re: CF Printer list?

2009-12-10 Thread Tom Chiverton
On Wednesday 09 Dec 2009, Yuliang Ruan wrote: > in CFIDE, the printer list is definitely blank...but how did it get that > way? and how does that list get populated? Samba ? CUPS ? -- Helping to carefully morph niches as part of the IT team of the year, '09 and '08 *

Re: ColdFusion and Linux

2009-12-09 Thread Tom Chiverton
On Friday 04 Dec 2009, Raul Riera wrote: > Does anyone know the solution of this? Also, what would be the recommended > chmod to use? seems like 777 is the only one that will allow me to write to > the folder Don't do that. Or '666'. This allows anyone on the server to alter the file. This isn't

Re: Cf9 tabbed layouts cflayout

2009-10-21 Thread Tom Chiverton
On Wednesday 21 Oct 2009, David Mineer wrote: > The temporary workaround that I found for this was to set a height value in > the cflayout tag. You can see more details about how I fixed it in the > comments on Sam's blog linked below. This is listed in the release notes isn't it ? -- Helping

Re: remote windows file manager

2009-10-08 Thread Tom Chiverton
On Monday 05 Oct 2009, Rick Root wrote: > CFFM allows you to upload a zip file then unzip it on the server.. but > to upload a a whole directory without zip/unzip? I've never seen > anything that does that, at least not web-based. No, you'd have to be able to enumerate the users file system, whi

Re: http://cflib.org/ down???

2009-10-05 Thread Tom Chiverton
On Monday 05 Oct 2009, Che Vilnonis wrote: > Who needs to be notified? Ray, C? Maybe it's all the people with the shiny new ColdFusion Builder beta reinstalling them all :-) -- Helping to ambassadorially harness exceptional advanced vertical communities as part of the IT team of the year, '09

Re: Eclipse/CF debugger

2009-10-05 Thread Tom Chiverton
On Tuesday 29 Sep 2009, Mark McArthey wrote: > "Debug home page URL" and "Mapping" information. I'm not sure if I am to > differentiate between the user URL that would be accessed for the home page > and a "debug" URL. It would seem to be the case, but I'm not sure what No, they can be the same

Re: How to clear local cache when users logout

2009-09-28 Thread Tom Chiverton
On Thursday 24 Sep 2009, Nathan Chen wrote: > How do you clear users' local cache after they log out and the session > variable is cleared? I can clear the session on the server, but if users > click the Back button, they can still get back and that's not what I > want. This must have been discus

Re: selecting different template based on file name

2009-09-28 Thread Tom Chiverton
On Tuesday 22 Sep 2009, Damo Drumm wrote: > where IINVOICE_Key = #url.invoice# > AND InvoiceTemplateType_Key = 1 > Use CFQUERYPARAM ! Unless you really want someone putting "?invoic

Re: HoF invaded

2009-09-23 Thread Tom Chiverton
On Tuesday 15 Sep 2009, Jacob wrote: > Format C: - Reinstall apps - restore data from backup. Although probably OK in this case, note that malware could be hiding in the BIOS, Intel vPro etc. etc., especially if you have been target specifically. -- Helping to efficiently establish market-driv

Re: (ot) Server Backup Software

2009-09-22 Thread Tom Chiverton
On Monday 21 Sep 2009, Rick Root wrote: > Any recommendations for inexpensive solutions? (inexpensive meaning, > hundres or thousands of dollars but not tens of thousands). rsync is the generic answer. You can get some fairly 'home/office' NAS boxes now that support RAID mirroring, and I'm fair

Re: 65mb XML file Crashing CF8 on my workstation

2009-09-15 Thread Tom Chiverton
You could go old school and just treat it as a string... -- Helping to greatly architect eye-catching segments as part of the IT team of the year, '09 and '08 This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limi

Re: Hot Fixes Explained

2009-09-09 Thread Tom Chiverton
On Tuesday 08 Sep 2009, Glyn Jackson wrote: > Hi Tom how are you? Good ta. > any others I should know about? hf801-1878.jar from http://www.adobe.com/support/security/bulletins/apsb09-12.html if this is missing, have you applied all the other ones from that page too ? -- Helping to globally

Re: SSL and https in ColdFusion

2009-09-08 Thread Tom Chiverton
On Tuesday 08 Sep 2009, Scott Stroz wrote: > The bindings will call the onRequest in App.cfc as that is juts a > regular ole HTTP request. Are you saying even on HTTPS pages, CFAJAX calls go over HTTP, not HTTPS ? -- Helping to preemptively generate synergistic infrastructures as part of the IT

Re: Hot Fixes Explained

2009-09-08 Thread Tom Chiverton
On Monday 07 Sep 2009, Mike Chabot wrote: > > it states in cfadmin the update level is hf801-1875.jar Yeah, but that lies. The only way to tell for sure is look along the class path, as you spotted. It's a mess. > The cumulative hotfix 3 contains all the prior hotfixes, so delete "contains all

Re: Embedding Flash Files in CF Page

2009-09-07 Thread Tom Chiverton
On Saturday 05 Sep 2009, Chris Montgomery wrote: > Well, after trying everything I can think of, this isn't working. Could > there possibly be some mime type issues with the .flv files? I'm testing > this on my local development box, WinXP Pro, CF8, using the built-in web > server with CF. Any 40

Re: getting min value based on inputs

2009-09-07 Thread Tom Chiverton
On Saturday 05 Sep 2009, b...@bradwood.com wrote: > I believe it would take #plans x #lines tries to complete, but the good > news multiplication and addition are very fast operations even when done > millions of times. :) Yup, I do a brute force search, store the results, and then reporting to t

Re: ColdFusion + SMS

2009-09-01 Thread Tom Chiverton
On Tuesday 01 Sep 2009, Arsalan Tariq Keen wrote: > Can anyone tell me in detail what parameters I need to know from my GSM > Operator for sending SMS using ColdFusion? You wont be able to use a "GSM provider" i.e. the radio system normally used. You need to find an SMSC provider or something. H

Re: Coldfusion Threads

2009-08-27 Thread Tom Chiverton
On Wednesday 26 Aug 2009, Byte Me wrote: > Does anyone know how to get a list of Coldfusion Threads (created with the > cfthread tag), programatically. I don't have access to the Server Monitor. > If a thread is aborted, I need to know it was aborted, How about when you create the thread, you ad

Re: (ot) profanity filter

2009-08-27 Thread Tom Chiverton
On Wednesday 26 Aug 2009, Peter Boughton wrote: > It's idiotic that words can be considered offensive and blocked without > context - yet "I hope you suffer an eternity of burning agony" will be > allowed past just fine. You should have seen the bizzare errors I had to deal with as a sys. admin f

Re: Problem with onblur event

2009-08-26 Thread Tom Chiverton
On Wednesday 26 Aug 2009, Joseph Bugeja wrote: > We want that when a user clicks on the Amend button the action handler of > the amend is executed after executing the onblur event. Doesn't sound much like a CF problem, but... Your code doesn't have a blur handler for the amend button. If you me

Re: COM Ports

2009-08-26 Thread Tom Chiverton
On Wednesday 26 Aug 2009, Cutter (ColdFusion) wrote: > Don't forget that he could also access a .NET object (CF 8 or higher) if > he's on Windows. Or if the CF is on non-Windows but there is a Windows machine to hand. -- Helping to centrally participate prospective next-generation viral unique

Re: AES Encryption, PKCS7 Padding Issue with .NET Service

2009-08-26 Thread Tom Chiverton
On Tuesday 25 Aug 2009, Blue 750 wrote: > In talking to the vendor, they explained that since we are now sending SSN > data in our request, that we have to pad the value of it to X characters > for the XML response to no longer include the error. I'm not sure what that > "X" is or what I should be

Re: SOT: "better" DIFFERENCE

2009-08-25 Thread Tom Chiverton
On Tuesday 25 Aug 2009, John M Bliss wrote: > Does anyone know of a tool (SQL or CFML) similar to SQL's DIFFERENCE ( > http://msdn.microsoft.com/en-us/library/ms188753.aspx) but with > significantly higher fidelity. You want something like Llevenshtein distance maybe ? It was easy enough to find

Re: What ColdFusion Instance Memory values to use...

2009-08-25 Thread Tom Chiverton
On Thursday 20 Aug 2009, DURETTE, STEVEN J (ATTASIAIT) wrote: > I know the following... ColdFusion used .5 Gigs (512m) by default and > can handle a max of 1.8 gigs. My problem is that 1.8 Gigs doesn't > divide by 1024 evenly. On a 64bit JVM, it can use a lot more than 1.8G :-) > What number s

Re: CFFM 1.21 Released

2009-08-17 Thread Tom Chiverton
On Monday 17 Aug 2009, Rick Root wrote: > This means a couple of image manipulation features are gone since > CFIMAGE doesn't seem to have the ability to flip horizontal, flip > vertical, http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_h-im_22.html :-) > or crop an i

Re: Request Logging with CFMX 6.1

2009-08-06 Thread Tom Chiverton
On Thursday 06 Aug 2009, SANJEEV SINGLA wrote: > What request came in at what time, from which user, which browser, how > much time it took to process the request etc. and all other relevant > request details. Is that not all in the IIS logs ? -- Helping to evangelistically bully eigth-generati

Re: Web service error

2009-08-06 Thread Tom Chiverton
On Wednesday 05 Aug 2009, ch g wrote: > Thank you so much for all of your time and suggestions. It's normally easier to do your testing calling the service as a normal component, and then try as a webservices once it's working OK. Save clear the WSDL stubs all the time. -- Helping to quickly a

Re: Could use some inputs

2009-08-06 Thread Tom Chiverton
On Thursday 06 Aug 2009, Gerald Guido wrote: > Don, > This scenario has been repeated so many times with your posts it is as it > follows a script. One could call it "The Don Show". To be slightly constructive about it, the OP might want to read http://catb.org/esr/faqs/smart-questions.html#int

Re: removing dups from a two dimensional array using LinkedHashSet

2009-08-05 Thread Tom Chiverton
On Friday 31 Jul 2009, Tony Bentley wrote: > I can do it using two nested loops but the record set is over 1000 So ? That's not very many. Does it take a particularly long time ? -- Helping to confidentially fashion professional bleeding-edge total developments as part of the IT team of the y

Re: Flex Help...

2009-07-30 Thread Tom Chiverton
On Thursday 30 Jul 2009, Kim Hoopingarner wrote: > I noticed that the Flex forum doesn't get as much attention as the > Coldfusion - so forgive me for posting my Flex question here. You want FlexCoders on Yahoo groups. -- Helping to authoritatively aggregate internet ubiquitous relationships a

Re: SSH & Telnet - ColdFusion

2009-07-30 Thread Tom Chiverton
On Wednesday 29 Jul 2009, Arsalan Tariq Keen wrote: > didn't get your point dude...! AnyTerm is an AJAX app with simple server backend that enables SSH to the server it's running on through nothing more than a browser. It's free too. I'm sure CFHTTP could use the same interface. -- Helping to

Re: SSH & Telnet - ColdFusion

2009-07-29 Thread Tom Chiverton
On Monday 27 Jul 2009, Arsalan Tariq Keen wrote: > besides... "Tera Term Pro Web" is another opensource option ... I finally > found last night... it uses POST and GET forms for ssh/telnet purposes... > so we can integrate it with ColdFusion, HTML or any other web application > server as well :) (

Re: using my injected bean within a CFC

2009-07-27 Thread Tom Chiverton
On Sunday 26 Jul 2009, James Holmes wrote: > The way ColdSpring does this is simpler:> > The init() of your CFC takes a dsnBean as an argument. Or you can set 'autoWire="byName"' and have ColdSpring use your set'er methods to do the injection for you. I think this is clearer, and I don't duplic

Re: SSH & Telnet - ColdFusion

2009-07-27 Thread Tom Chiverton
On Sunday 26 Jul 2009, Arsalan Tariq Keen wrote: > Does anyone know of a possible way of connecting to devices on the network > using ColdFusion and telnet/ssh and execute commands on the host machines? You can CFEXCEUTE a (CFFILE-authored) batch file that does it. -- Helping to apprehensively

Re: CF8 functions only working in webroot?

2009-07-23 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Adrian Lynch wrote: > Add CFIDE as a virtual directory in your new sites and see if that fixes > it. Noo ! This exposes the ColdFusion administrator on all the sites. You do not want this in Adobe's ColdFusion. Add /CFIDE/scripts/ as a mapping to each site. -- Hel

Re: CF app control

2009-07-23 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Don L wrote: > I don't think you know how my app is going to be deployed. We might be able to provide better comments on your need to control licence terms if you explained :-) -- Helping to administratively mesh B2B seamless supply-chains as part of the IT team of

Re: 8.0.1 webservice compile errors

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Sebastiaan van Dijk wrote: > We get the same error on our > internal production servers, but our external servers seem to run the cfc > with no problem. Could it be a proxy setting ? -- Helping to adaptively monetize industry-wide B2B appliances as part of the IT team

Re: CFMX7, Ubuntu, Virtual Hosts, and a weird CFLOCK issue

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, Rob Barthle wrote: > > Wasn't Application.cfc introduced in CF8, not 7 ? > If that were the case, then I'd be having bigger problems... ;-) Coffee failure, oops. -- Helping to proactively compete essential cross-platform systems as part of the IT team of the year, '09

Re: eSignature

2009-07-22 Thread Tom Chiverton
On Wednesday 22 Jul 2009, cftalk wrote: > Hi Tom, > > Could you elaborate on that answer? I am also interested in digital > signatures. Using standard... gpg is a GNU tool for processing (public key) cryptography, such as digital signatures. http://www.gnupg.org/documentation/ -- Helping to ce

Re: CFMX7, Ubuntu, Virtual Hosts, and a weird CFLOCK issue

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Rob Barthle wrote: > Background: I have a local CFMX7 ... > The Application.cfc file has things set up properly: Wasn't Application.cfc introduced in CF8, not 7 ? -- Helping to professionally entrench open-source convergence as part of the IT team of the year, '09 and

Re: CF app control

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Don L wrote: > Thank you for your thoughts. See also defectivebydesign.org - if you can't trust your paying customers you have bigger issues. -- Helping to authoritatively incentivize IPOs as part of the IT team of the year, '09 and '08 ***

Re: eSignature

2009-07-22 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Randy Adkins wrote: > Or if there is a way to use CF to verify that a document (DOC or PDF) has > been electronically signed?? With what standard ? The generic answer would be to cfexecute 'gpg' and parse the result, or find a suitable Java API. -- Helping to efficientl

Re: Excel2Query

2009-07-21 Thread Tom Chiverton
On Friday 17 Jul 2009, John McSwishton wrote: > I purchased a CFX from http://www.emerle.net/programming/, CFX_Excel2Query > but I keep getting this error: java.lang.ClassNotFoundException: > cfx_excel2query.jar, tags folder=classes/ > Is this a problem with the CFX or my installation? Where did

Re: CF app control

2009-07-21 Thread Tom Chiverton
On Tuesday 21 Jul 2009, Don L wrote: > For a cf8 or equivalent app, what options do we have for its control in > Windows environment? Something simple like a CFREGIETRY key that stores first start time, and a check that that is not too long ago you mean ? At the end of the day the only thing t

Re: SSOT: open source software

2009-07-21 Thread Tom Chiverton
On Monday 20 Jul 2009, Don L wrote: > To me some service contract like delivery of a fix of 8 days is too long. > Probably I'll talk to the OSS's owner to negotiate a deal something > later Yeah. At a guess if you pay more, you'll get more :-) > You know what, I strongly believe, any OSS do

Re: SSOT: open source software

2009-07-20 Thread Tom Chiverton
On Monday 20 Jul 2009, denstar wrote: > If you are running a business on the Railo software and need a rapid > and guaranteed response, a support contract is probably not a bad idea > at all. And, to be fair, I wouldn't expect and immediate response to a direct email to, say, Bill gates or any o

Re: CF and Apache Issue

2009-07-20 Thread Tom Chiverton
On Wednesday 15 Jul 2009, Robert Nurse wrote: > index.cfm is requested, CF hangs. We took the code out of index.cfm and > put it in new file and it works as expected. Even a completely empty > index.cfm file hangs CF! Remove the cached/compiled cftemplates. -- Helping to confidentially iterat

  1   2   3   4   5   6   7   8   9   10   >