RE: How to Make Layers Visible with OnMouseOver

2009-08-24 Thread Adrian Lynch
> -Original Message- > From: Peter Boughton [mailto:bought...@gmail.com] > > And just a quick simplification of Adrian's jQuery... > > Instead of: > $("#show").mouseover(func1).mouseout(func2) > > You can do: > $("#show").hover(func1,func2) Holy bejeasus, how long has hover() b

RE: simple SQL Question

2009-08-21 Thread Adrian Lynch
That is a left outer join. It's mixing new and old styles of joining tables. Not sure if there's a benefit to the mix, but I reckon this is clearer: SELECT a.id, b.name FROM a INNER JOIN b ON a.id = b.id LEFT OUTER JOIN b ON a.id = b.id Is this code actually used or an example for the question?

RE: How to Make Layers Visible with OnMouseOver

2009-08-21 Thread Adrian Lynch
Way too much code to look at! But using jQuery: .hidden { display: none; } $(function() { $("#show").mouseover(function() { $("#hiddenDiv").show(); }).mouseout(function() {

RE: ajax cfc not working for Access DB -- odd stuff

2009-08-19 Thread Adrian Lynch
Railo or OpenBD? Do they support cfajaxproxy yet? > -Original Message- > From: Don L [mailto:do...@yahoo.com] > Sent: 19 August 2009 22:42 > To: cf-talk > Subject: ajax cfc not working for Access DB -- odd stuff > > > I've moved on to an open source cfml engine, don't know what caused t

RE: Cannot declare local variable cfcatch twice

2009-08-19 Thread Adrian Lynch
Can we see your code? > -Original Message- > From: SANJEEV SINGLA [mailto:planetsanj...@gmail.com] > Sent: 19 August 2009 07:43 > To: cf-talk > Subject: Cannot declare local variable cfcatch twice > > > Hi All, > > > I migrated my CFMX6.1 application to CF8 on my local dev machine and

RE: odd error calling function in cfc

2009-08-16 Thread Adrian Lynch
Yeah, reserved word seems unlikely. Chances are you're overwriting add_option somewhere or the scoping is out somehow. I notice there's no var scope on your getOptions query, var scope everything and see it that sorts things. It's hard to say more without seeing the full CFC mind. Adrian > --

RE: Records set in CFStruct

2009-08-12 Thread Adrian Lynch
... There are other ways, but this is one that'll work. Adrian > -Original Message- > From: Matthew Allen [mailto:a.matthe...@yahoo.com] > Sent: 12 August 2009 12:21 > To: cf-talk > Subject: Records set in CFStruct > > > Can someone please point me to the right direct

RE: Can you detect if CF page is loaded in Flex I-Frame?

2009-08-08 Thread Adrian Lynch
That's fair enough. Dump the CGI scope, see if there's anything else of interest. > -Original Message- > From: Gordon Nall [mailto:gordon_trav...@yahoo.com] > Sent: 08 August 2009 22:22 > To: cf-talk > Subject: Re: Can you detect if CF page is loaded in Flex I-Frame? > > > Just tested

RE: Can you detect if CF page is loaded in Flex I-Frame?

2009-08-08 Thread Adrian Lynch
Check if CGI.HTTP_USER_AGENT contains something different for Flex requests. Adrian > -Original Message- > From: Gordon Nall [mailto:gor...@imgstudios.com] > Sent: 08 August 2009 21:54 > To: cf-talk > Subject: Can you detect if CF page is loaded in Flex I-Frame? > > > Question: Is ther

RE: WebService Axis Issues

2009-08-07 Thread Adrian Lynch
I get the same on CF8 and on Railo I get: org.xml.sax.SAXException: Deserializing parameter 'GetVersionInfoResponse': could not find deserializer for type {urn:IWS}GetVersionInfoResponseType Sorry that's not much help. Adrian > -Original Message- > From: Jeremy Rottman [mailto:rottm...

RE: Looping with BufferedReader.readLine() and comparing to NULL

2009-07-31 Thread Adrian Lynch
Why didn't I try the obvious one first, IsDefined()! Seems to work a treat. Adrian > -Original Message- > From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] > Sent: 31 July 2009 16:01 > To: cf-talk > Subject: Looping with BufferedR

Looping with BufferedReader.readLine() and comparing to NULL

2009-07-31 Thread Adrian Lynch
Hey all, I'm trying to get an alternative to cfexecute working and I'm wondering how to loop with a call to BufferedReader.readLine(). Here's the code: The loop is hardcoded to run 20 times, but what I real

RE: OT javascript

2009-07-30 Thread Adrian Lynch
That's ok. Having duplicate names is cool. Adrian > -Original Message- > From: Chad Gray [mailto:cg...@careyweb.com] > Sent: 30 July 2009 16:46 > To: cf-talk > Subject: RE: OT javascript > > > When you submit it makes a comma delimited list of ID's that we loop > over and use. > > Som

RE: OT javascript

2009-07-30 Thread Adrian Lynch
You can in FF3. You have some typos that'll stop it working though. A closing double quote for the name attribute in your selects. You need a . in between the [0] options. Have a look at using jQuery though. It'll make this code a lot smaller. Adrian > -Original Message- > From: Chad

RE: CFC Error on CF8 (Same working on CFMX 6.1)

2009-07-29 Thread Adrian Lynch
Run the page in Firefox with Firebug installed for a better error message. Post your code for CallWebService() if you can. Adrian > -Original Message- > From: SANJEEV SINGLA [mailto:planetsanj...@gmail.com] > Sent: 29 July 2009 13:44 > To: cf-talk > Subject: CFC Error on CF8 (Same worki

RE: Question re: Reactor

2009-07-28 Thread Adrian Lynch
Have you checked the table definitions are the same between dev and staging? It's possible to import/export/script tables and defaults not to go across too. Adrian > -Original Message- > From: Nathan Strutz [mailto:str...@gmail.com] > Sent: 28 July 2009 05:30 > To: cf-talk > Subject: Re:

RE: Converting Year to Integer

2009-07-25 Thread Adrian Lynch
But then to take Azadi's point 4 and change it for this: 4) again, the simple ALWAYS works. Something else is amiss. > -Original Message- > From: N K [mailto:neetukais...@gmail.com] > Sent: 24 July 2009 18:48 > To: cf-talk > Subject: Re: Converting Year to Integer > > > The whole id

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
Right but something else is wrong. Azadi's example is about as simple as it gets. Something else in your code is causing the problem. > -Original Message- > From: N K [mailto:neetukais...@gmail.com] > Sent: 24 July 2009 15:09 > To: cf-talk > Subject: Re: Converting Year to Integer > >

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
And failing that, post all your code... > -Original Message- > From: Dave Sueltenfuss [mailto:dsueltenf...@gmail.com] > Sent: 24 July 2009 14:56 > To: cf-talk > Subject: Re: Converting Year to Integer > > > Have you tried outputing your currYear variable, to make sure it is > what you >

RE: Converting Year to Integer

2009-07-24 Thread Adrian Lynch
Is Year((now)) a typo in your email? If not, try Year(Now()) and you will need the #'s in the to attribute of cfloop. Adrian > -Original Message- > From: N K [mailto:neetukais...@gmail.com] > Sent: 24 July 2009 14:31 > To: cf-talk > Subject: Converting Year to Integer > > > I am loopi

RE: CF8 functions only working in webroot?

2009-07-22 Thread Adrian Lynch
All the AJAXy tags and function access files in domain.com/cfide/blaa/blaa. Add CFIDE as a virtual directory in your new sites and see if that fixes it. Adrian > -Original Message- > From: Paul Henderson [mailto:pa...@d2phosting.com] > Sent: 22 July 2009 21:14 > To: cf-talk > Subject: C

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
I could be wrong, but I remember that not being the case a good while back. Both fileField and FORM.fileField would work in the filefield attribute. Am I mistaken? Adrian > -Original Message- > From: Jason Fisher [mailto:ja...@wanax.com] > Sent: 20 July 2009 19:32 > To: cf-talk > Subje

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
What does this show you: #application.physpath#data\ > -Original Message- > From: Hunsaker, Michael Scott [mailto:mhuns...@indiana.edu] > Sent: 20 July 2009 17:49 > To: cf-talk > Subject: RE: getDirectoryFromPath Question > > > Thanks for the help! Here's my CFFILE function: > >

RE: getDirectoryFromPath Question

2009-07-20 Thread Adrian Lynch
Not sure exactly, but I always do this: ExpandPath(".") rather than this: ExpandPath("*.*") Try removing the *'s and see what happens. Adrian > -Original Message- > From: Hunsaker, Michael Scott [mailto:mhuns...@indiana.edu] > Sent: 20 July 2009 14:24 > To: cf-talk > Subject: getDire

RE: SSOT: open source software

2009-07-20 Thread Adrian Lynch
Well you're talking about Railo or OpenBD, which is it and what problem are you having? Adrian > -Original Message- > From: Don L [mailto:do...@yahoo.com] > Sent: 20 July 2009 03:53 > To: cf-talk > Subject: SSOT: open source software > > > Particularly related to ColdFusion. I underst

RE: Calling .ASPX.VB from .CFM

2009-07-18 Thread Adrian Lynch
Yes. Chances are you need to pass arguments along with your method call. Adrian > -Original Message- > From: Jason Neidert [mailto:ja...@steelfusion.com] > Sent: 17 July 2009 18:50 > To: cf-talk > Subject: RE: Calling .ASPX.VB from .CFM > > > Here is a link to the .WSDL file: > http://

RE: Reality check

2009-07-07 Thread Adrian Lynch
ere's allot of things like this. > > On Tue, Jul 7, 2009 at 10:23 AM, Adrian > Lynch wrote: > > > > > > > > Ermmm, since when has this worked?! > > > > Do you create your own null variable? > > > > Adrian > > > >>

RE: Reality check

2009-07-07 Thread Adrian Lynch
Ermmm, since when has this worked?! Do you create your own null variable? Adrian > -Original Message- > From: Phillip Vector [mailto:vec...@mostdeadlygame.com] > Sent: 07 July 2009 17:24 > To: cf-talk > Subject: Re: Reality check > > > As for the error message.. > > The WEEKDA

RE: Reg:Last modified Date for file

2009-07-07 Thread Adrian Lynch
Dump qGetLastdateModified to see what's being returned as your code looks sound. Adrian > -Original Message- > From: RamaDevi Dobbala [mailto:ramadobb...@gmail.com] > Sent: 07 July 2009 10:57 > To: cf-talk > Subject: Re: Reg:Last modified Date for file > > > > > > > directory="#

RE: Last modified Date for file

2009-07-07 Thread Adrian Lynch
Try GetFileInfo() on CF8. Not sure how reliable the date last modified attribute is though. Doesn't it get updated with any kind of access? Maybe I'm thinking of something else. Adrian > -Original Message- > From: RamaDevi Dobbala [mailto:ramadobb...@gmail.com] > Sent: 07 July 2009 10:3

RE: New CF8 vulnerability

2009-07-05 Thread Adrian Lynch
If you mean your FCKEditor is accessed in a secure area, I don't think that matters. It's whether or not certain scripts can be accessed at yourdomain.com/cfide/scripts/bla/bla/eek.cfm. Someone correct me if this isn't the case... Adrian > -Original Message- > From: Matt Robertson [mail

RE: New CF8 vulnerability

2009-07-03 Thread Adrian Lynch
I don't seem to have the same file directory as that posted in the second link. Instead I have: \CFIDE\scripts\ajax\FCKeditor\editor\filemanager\upload\cfm\config.cfm and: \CFIDE\scripts\ajax\FCKeditor\editor\filemanager\browser\default\connectors\ cfm\config.cfm Both of these files look like

RE: query object error

2009-06-30 Thread Adrian Lynch
> -Original Message- > From: Kamru Miah [mailto:k.m...@csl.gov.uk] > Sent: 30 June 2009 12:08 > To: cf-talk > Subject: Re: query object error > > > I just realised that the 'role' query form a include file is > returntype="struct", and not returntype="query" - dah! > > So now the que

RE: query object error

2009-06-30 Thread Adrian Lynch
Could you show more of your code. This works for me. Oh and you don't need to assign to a temp var when using QuerySetCell. Adrian > -Original Message- > From: Kamru Miah [mailto:k.m...@csl.gov.uk] > Sent: 30 June 2009 11:43 > To: cf-talk > Subject: query object error > > > I am using

RE: Open source ColdFusion again

2009-06-23 Thread Adrian Lynch
Well we are in a credit crunch! > For me, this makes cfwindow utterly redundant. > > Dominic ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: htt

RE: Application Scope Problem

2009-06-18 Thread Adrian Lynch
gt; > > > > > > > > > #varName# > %>", arguments[varName])> > > > > > > >

RE: Application Scope Problem

2009-06-18 Thread Adrian Lynch
How are you setting the component in the app scope? > -Original Message- > From: Dawson, Michael [mailto:m...@evansville.edu] > Sent: 18 June 2009 14:20 > To: cf-talk > Subject: RE: Application Scope Problem > > > We have had instances where a component, stored in the application > scop

RE: Simple regex question

2009-06-10 Thread Adrian Lynch
"There's a ISVIN function on CFLib and I had originally proposed to my boss that I rewrite it in javascript but he didn't want that level of functionality." Just do it, don't ask the boss! :OD ~| Want to reach the ColdFusion co

RE: Image killing server (RESOLVED)

2009-06-10 Thread Adrian Lynch
; > Mark A. Kruger, CFG, MCSE > (402) 408-3733 ext 105 > www.cfwebtools.com > www.coldfusionmuse.com > www.necfug.com > > -Original Message- > From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] > Sent: Tuesday, June 09, 2009 10:49 AM > To: cf-talk > Subjec

RE: Send a textbox value to an object

2009-06-09 Thread Adrian Lynch
Adrian > -Original Message- > From: nikoo m [mailto:nikou...@yahoo.com] > Sent: 09 June 2009 19:40 > To: cf-talk > Subject: Send a textbox value to an object > > > I have an object in ColdFusion that post message to twitter. It works > well when I write my message in “ “

RE: Image killing server

2009-06-09 Thread Adrian Lynch
; > I verified your results on an 8.01 dev server running on my local XP > box. > Sure enough the service restarts. > > -Mark > > > Mark A. Kruger, CFG, MCSE > (402) 408-3733 ext 105 > www.cfwebtools.com > www.coldfusionmuse.com > www.necfug.com > > -Orig

RE: Image killing server

2009-06-09 Thread Adrian Lynch
e hotfix installed > (http://www.adobe.com/go/kb403411) > > > Azadi Saryev > Sabai-dee.com > http://www.sabai-dee.com/ > > > On 09/06/2009 21:59, Adrian Lynch wrote: > > Hey, thanks Jason, I did the blackout myself. It's an image for an > awards > > sho

RE: Image killing server

2009-06-09 Thread Adrian Lynch
Of course ;O) Still kills our servers. Has anyone witnessed it yet? > -Original Message- > From: Robert Harrison [mailto:rob...@austin-williams.com] > Sent: 09 June 2009 16:15 > To: cf-talk > Subject: RE: Image killing server > > > > I did the blackout myself. > > Yes, but that also

RE: Image killing server

2009-06-09 Thread Adrian Lynch
Hey, thanks Jason, I did the blackout myself. It's an image for an awards show so I thought it best to mask it. It is RGB, CMYK was our first thought too. Adrian > -Original Message- > From: Jason Fisher [mailto:ja...@wanax.com] > Sent: 09 June 2009 15:54 > To: cf-talk > Subject: re: Im

Image killing server

2009-06-09 Thread Adrian Lynch
ge back then on refresh a message saying CF is starting up. I'm on the bug report page at the moment but I thought I would get someone else to test this also. Thanks. Adrian Lynch | www.halestorm.co.uk ~| Want to reach

RE: reducing a query result

2009-06-04 Thread Adrian Lynch
Query the query using the same query variable name. Adrian > -Original Message- > From: Chad Gray [mailto:cg...@careyweb.com] > Sent: 04 June 2009 16:07 > To: cf-talk > Subject: reducing a query result > > > Say I have a query returned with 500 records. > > Is there a way in CF (not S

RE: Help ColdFusion Output URGENT

2009-06-01 Thread Adrian Lynch
Come on dude, you've been told before, help us by asking better questions! What doesn't work? Format your code so it's easy for us to see what's going on, I can't be bothered to look through your code because it's all over the place. If the query is correct and the problem lies in the output, w

RE: cfmail problem in cfc

2009-05-30 Thread Adrian Lynch
Is your mail server on the same machine as CF? Check it's running. It probably has nothing to do with being in a CFC. Create a simple cfm page to test it. Adrian > -Original Message- > From: arya krishnan [mailto:arun.b.shou...@gmail.com] > Sent: 29 May 2009 19:17 > To: cf-talk > Subjec

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
could have manipulated that cookie > value... But then, with so many users (i must have had a couple dozen > error > messages at least, and they are from different legitimate users) all > generating the same error message, it seems unlikely that they all > changed > their cookie to

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
dset > and > there is no way how users can manually pass it in. > > On Thu, May 14, 2009 at 3:39 PM, Adrian Lynch > wrote: > > > > > The user changed it maybe? > > > > Adrian > > > > > -Original Message- > > > Fr

RE: my cfqueryparam grievance

2009-05-14 Thread Adrian Lynch
The user changed it maybe? Adrian > -Original Message- > From: Qing Xia [mailto:txiasum...@gmail.com] > Sent: 14 May 2009 20:30 > To: cf-talk > Subject: Re: my cfqueryparam grievance > > But still, it is interesting to ponder whatever happened to my data, > and > why, of all things, eve

RE: OT (maybe): Display additional info from a Select before Form is Submitted

2009-05-13 Thread Adrian Lynch
If there aren't many categories, load all the extra info into the page in the place you need it to appear and hide it by default. Then on change of the drop down, show the relevant info. With jQuery: $(function() { $("#cats").change(function() {

RE: my cfqueryparam grievance

2009-05-12 Thread Adrian Lynch
Start logging the value of COOKIE.theID. Just save it somewhere and see if it's ever an unexpected value. Adrian > -Original Message- > From: Qing Xia [mailto:txiasum...@gmail.com] > Sent: 12 May 2009 20:16 > To: cf-talk > Subject: my cfqueryparam grievance > > > Hello folks, > > I ha

RE: table display: row number. without recordset

2009-05-11 Thread Adrian Lynch
It probably does, but it's sorted already. Adrian > -Original Message- > From: Paul Ihrig [mailto:pih...@gmail.com] > Sent: 11 May 2009 20:44 > To: cf-talk > Subject: Re: table display: row number. without recordset > > > one weird thing is the tablesorter dost work on that column unle

RE: table display: row number. without recordset

2009-05-11 Thread Adrian Lynch
Same as CSS. table.className Adrian > -Original Message- > From: Paul Ihrig [mailto:pih...@gmail.com] > Sent: 11 May 2009 20:23 > To: cf-talk > Subject: Re: table display: row number. without recordset > > > how would i target my tables with a class="tablesorterXP" > but not any othe

RE: CF 8 Hosting recommendations

2009-05-11 Thread Adrian Lynch
Look at using Railo instead then :O) Adrian > -Original Message- > From: Gerald Guido [mailto:gerald.gu...@gmail.com] > Sent: 11 May 2009 03:30 > To: cf-talk > Subject: Re: CF 8 Hosting recommendations > > > >>and it has *always* used CF 8. > > Hey Rick, > I hear ya. Unless they are o

RE: Embedded colour profile killing server

2009-05-06 Thread Adrian Lynch
Pete Freitag > http://foundeo.com/ - ColdFusion Consulting & Products > http://petefreitag.com/ - My Blog > Firewall for CFML: http://foundeo.com/security/ > > On Tue, May 5, 2009 at 9:25 AM, Adrian Lynch > wrote: > > > > > I'm trying to work on an

RE: Embedded colour profile killing server

2009-05-06 Thread Adrian Lynch
gt; Subject: Re: Embedded colour profile killing server > > > You need to install CF 8.01 before you can install its hotfixes. > > mxAjax / CFAjax docs and other useful articles: > http://www.bifrost.com.au/blog/ > > > > 2009/5/6 Adrian Lynch : > > > >

RE: Embedded colour profile killing server

2009-05-05 Thread Adrian Lynch
m/ - My Blog > Firewall for CFML: http://foundeo.com/security/ > > On Tue, May 5, 2009 at 9:25 AM, Adrian Lynch > wrote: > > > > > I'm trying to work on an image with CF8. Doing a simple ImageRead() > on one > > particular image causes the server to resta

RE: Getting a count from a group in cfquery

2009-05-05 Thread Adrian Lynch
You need to include the other columns in your SELECT in your GROUP BY clause. Adrian > -Original Message- > From: Les Mizzell [mailto:lesm...@bellsouth.net] > Sent: 05 May 2009 16:56 > To: cf-talk > Subject: Getting a count from a group in cfquery > > > What I'm trying to get: > > >

RE: Server just.... stops?

2009-05-05 Thread Adrian Lynch
Got the same thing happening to us but we know what's causing it, damned images! Do you know what's being run just before it dies? Adrian > -Original Message- > From: Justin Scott [mailto:jscott-li...@gravityfree.com] > Sent: 05 May 2009 15:54 > To: cf-talk > Subject: Server just st

Embedded colour profile killing server

2009-05-05 Thread Adrian Lynch
I'm trying to work on an image with CF8. Doing a simple ImageRead() on one particular image causes the server to restart. This is happening on two servers which I'm told have more than enough memory. The image is 372KB, so nothing to worry about there. When I open it up in GIMP, I get asked whe

RE: Set column value to NULL

2009-04-28 Thread Adrian Lynch
Adrian > -Original Message- > From: Pranathi Reddy [mailto:rk.prana...@gmail.com] > Sent: 28 April 2009 18:06 > To: cf-talk > Subject: Set column value to NULL > > > My image datatype is varbinary(max) and I am storing binary image data > in database. > This query works fine in sql Se

RE: Need some WSDL Help

2009-04-28 Thread Adrian Lynch
Why don't you post the problem here? > -Original Message- > From: Rick Shapley [mailto:rs...@cade1.com] > Sent: 28 April 2009 18:03 > To: cf-talk > Subject: Need some WSDL Help > > > We are trying to connect some Cold Fusion Generated Data to a WSDL > file. Can anyone help? Please e-mai

RE: Unable to dump checkbox Values

2009-04-28 Thread Adrian Lynch
You don't say what's wrong, but from these lines: I'm guessing it's throwing an error? Adrian > -Original Message- > From: Priya Koya [mailto:priya23...@gmail.com] > Sent: 28 April 2009 16:26 > To: cf-talk > Subject: Unable to dump checkbox Values > > > Hi All

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
Cheers, that's all ok because the Bermudian charity will be purchasing it. I had just hoped I could find the best place for them to buy the domain. Adrian > -Original Message- > From: Ravi Gehlot [mailto:r...@ravigehlot.net] > Sent: 26 April 2009 15:03 > To: cf-talk > Subject: Re: OT - P

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
Oh really? That's interesting because they did quote the price in pounds. I'll get someone in Bermuda to have a look, see if it's cheaper for them. Cheers. Adrian > -Original Message- > From: Dave Watts [mailto:dwa...@figleaf.com] > Sent: 26 April 2009 14:59 > To: cf-talk > Subject: Re

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
rchasing .bm domain names > > > http://www.101domains.com/ > > Adrian Lynch wrote: > > You know after nine years doing this web stuff, that never occurred > to me! > > > > I've done that, I've seen prices over $200. Short of hearing back > from > >

RE: OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
y fault for not stating this in the first email I suppose... Adrian > -Original Message- > From: Ravi Gehlot [mailto:r...@ravigehlot.net] > Sent: 26 April 2009 14:03 > To: cf-talk > Subject: Re: OT - Purchasing .bm domain names > > > Adrian, > > Try a search

OT - Purchasing .bm domain names

2009-04-26 Thread Adrian Lynch
I'm building a site for a charity in Bermuda and I've told them a great .bm domain name is available. Can anyone recommend a place to buy such domain names. I've done all my purchases through 123-reg.co.uk up until now. I've sent an email to bermudanic.bm but have not heard back from them yet. I'

RE: Any JS wizards out there care to lend a hand?

2009-04-24 Thread Adrian Lynch
True, but then you can always do $(selector).get(0) or $(selector)[0] to get back to the DOM. Not ideal, but very useful. Adrian > -Original Message- > From: Andy Matthews [mailto:li...@commadelimited.com] > Sent: 24 April 2009 14:32 > To: cf-talk > Subject: RE: Any JS wizards out there

RE: Creating a dynamic variable to for storage

2009-04-22 Thread Adrian Lynch
Give that a go. Adrian > -Original Message- > From: Fawzi Amadu [mailto:abd...@gmail.com] > Sent: 22 April 2009 19:35 > To: cf-talk > Subject: Creating a dynamic variable to for storage > > > I have a loop within which I am trying to create a various variable. My > code (below) is re

RE: CFIMAGE - File referencing

2009-04-20 Thread Adrian Lynch
Output #ExpandPath('/images/consumer/#Cnsmr_ProductIMAGE#) to see where you're pointing to, it'll be wrong. Adrian > -Original Message- > From: Fawzi Amadu [mailto:abd...@gmail.com] > Sent: 20 April 2009 17:43 > To: cf-talk > Subject: CFIMAGE - File referencing > > > I have my images f

RE: CFIMAGE - for all formats

2009-04-17 Thread Adrian Lynch
This one got me too a while ago: http://cferror.org/error.cfm?errorID=1 Adrian > -Original Message- > From: Fawzi Amadu [mailto:abd...@gmail.com] > Sent: 17 April 2009 12:26 > To: cf-talk > Subject: CFIMAGE - for all formats > > > Hi, I am trying to resize images with CFIMAGE but when

RE: show x words not x characters

2009-04-15 Thread Adrian Lynch
Treat the string as a list with any chars you see fit to be word delimiters, so spaces, tabs, full stops etc, then extract N elements from the left of the list. Adrian > -Original Message- > From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] > Sent: 15 April 2009 17:02 > To: cf-talk

RE: how to handle in-appropriate image uploads

2009-04-09 Thread Adrian Lynch
It's scary what they're doing with images now! http://www.ted.com/index.php/talks/blaise_aguera_y_arcas_demos_photosynth.ht ml Adrian > -Original Message- > From: Ian Skinner [mailto:h...@ilsweb.com] > Sent: 09 April 2009 17:59 > To: cf-talk > Subject: Re: how to handle in-appropriate i

RE: simple RegEx?

2009-04-02 Thread Adrian Lynch
Check the stackoverflow in this result: http://www.google.co.uk/search?hl=en&q=find+roman+numerals+regex&btnG=Search &meta= Adrian > -Original Message- > From: CF Developer [mailto:coldfus...@mindkeeper.net] > Sent: 02 April 2009 13:00 > To: cf-talk > Subject: simple RegEx? > > > This

RE: Button to support both IE and Firefox

2009-04-01 Thread Adrian Lynch
Try adding a 'return false' to the onclick. Adrian > -Original Message- > From: Don L [mailto:do...@yahoo.com] > Sent: 01 April 2009 18:25 > To: cf-talk > Subject: Re: Button to support both IE and Firefox > > > Yeah, you all, good catch on width= instead of width: > also, there's a se

RE: Cfform upload - Form Field contains no file

2009-03-31 Thread Adrian Lynch
Take the cfoutputs out of the cfinput tag. Adrian > -Original Message- > From: Fawzi Amadu [mailto:abd...@gmail.com] > Sent: 31 March 2009 16:54 > To: cf-talk > Subject: Cfform upload - Form Field contains no file > > > My code is throwing an error the baffles me. With the code below,

RE: scopes

2009-03-25 Thread Adrian Lynch
I'm not sure if you're saying it works or doesn't work. If it doesn't, try FORM.putAll(URL) or StructAppend(FORM, URL) to get the URL vars into the FORM scope. Adrian > -Original Message- > From: Brian Dumbledore [mailto:psteja2...@yahoo.com] > Sent: 25 March 2009 16:31 > To: cf-talk > S

RE: Create a thumbnail image from .flv video file once uploaded

2009-03-24 Thread Adrian Lynch
Not with ColdFusion, but you can use ffmpeg. Railo might also do it as it uses ffmpeg. Adrian > -Original Message- > From: Riaan Venter [mailto:riven1...@gmail.com] > Sent: 24 March 2009 16:48 > To: cf-talk > Subject: Create a thumbnail image from .flv video file once uploaded > > > Hi

RE: Re: How is this done without evaluate()?

2009-03-20 Thread Adrian Lynch
Another way is to write them to a file and cfinclude it. But in this case I think Evaluate might look nicer... Adrian > -Original Message- > From: dsbr...@gmail.com [mailto:dsbr...@gmail.com] > Sent: 20 March 2009 15:37 > To: cf-talk > Subject: Re: Re: How is this done without evaluate()

RE: refresh session in ajax application

2009-03-20 Thread Adrian Lynch
Is that method in the same application the rest of your code? It might be that you're calling code that's running in another app? Adrian > -Original Message- > From: Richard White [mailto:rich...@j7is.co.uk] > Sent: 20 March 2009 14:25 > To: cf-talk > Subject: refresh session in ajax ap

RE: String to List?

2009-03-20 Thread Adrian Lynch
sts? > > Thanks, > Mike > > -----Original Message- > From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] > Sent: Thursday, March 19, 2009 6:20 PM > To: cf-talk > Subject: RE: String to List? > > > You've gotta love this bit of code: > > REreplace(a

RE: String to List?

2009-03-19 Thread Adrian Lynch
You've gotta love this bit of code: REreplace(arguments.strInputString,"(.)(.)","\1#arguments.strDelimiter#\2#ar guments.strDelimiter#","ALL") lol Oh come on, that's funny! :OD Adrian > -Original Message- > From: Christophe Maso [mailto:zum...@hotmail.com] > Sent: 19 March 2009 23:37

RE: String to List?

2009-03-19 Thread Adrian Lynch
I knew there'd be something in Java! > -Original Message- > From: Dominic Watson [mailto:watson.domi...@googlemail.com] > Sent: 19 March 2009 22:03 > To: cf-talk > Subject: Re: String to List? > > > This also does it quite nicely: > > > > Dominic ~~~

RE: String to List?

2009-03-19 Thread Adrian Lynch
Dip into Java first maybe then back to CF? Note the the first element in the array is an empty string. I thought ArrayDeleteAt() would take care of that but it throws an error. I'd be interested to see if you find nice one or two line answer to this. Adrian > -Original Message--

RE: Suppress whitespace in CFC

2009-03-19 Thread Adrian Lynch
Oh and in your Application.cfc too if there's any more whitespace. Adrian > -Original Message- > From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] > Sent: 19 March 2009 15:30 > To: cf-talk > Subject: RE: Suppress whitespace in CFC > > > Set output=&q

RE: Suppress whitespace in CFC

2009-03-19 Thread Adrian Lynch
Set output="false" in both the cfcomponent and cffunction tags. See if that makes a difference. Adrian > -Original Message- > From: John M Bliss [mailto:bliss.j...@gmail.com] > Sent: 19 March 2009 15:22 > To: cf-talk > Subject: Suppress whitespace in CFC > > > I've written a CFC respon

RE: Eliminating repeated data in CFoutput field

2009-03-18 Thread Adrian Lynch
Order your query by eName then do something like this: #yourQuery.eName# #yourQuery.aTitle# #yourQuery.cCategory# You'll need to tweak it to fit in your table layout mind. Adrian > -Original Message- > From: BobSharp [mailto:b

RE: Images/Videos of exact size

2009-03-18 Thread Adrian Lynch
Sorry, should have clarified, file size rather than dimensions. Ta. Adrian > -Original Message- > From: Adrian Lynch [mailto:cont...@adrianlynch.co.uk] > Sent: 18 March 2009 13:01 > To: cf-talk > Subject: Images/Videos of exact size > > > I need to test out a

Images/Videos of exact size

2009-03-18 Thread Adrian Lynch
I need to test out an uploader, specifically the size limitations. I've made text files of the exact sizes needed but I was wondering about doing the same with images. Does anyone know how I can create JPGs and/or MPGs/AVIs/MOVs of a specific size? I'm guessing I need to take one and pad it with

RE: scheduled tasks and performance, whats the impact on the server?

2009-03-18 Thread Adrian Lynch
It's got to depend on what's going on in them surely? Adrian > -Original Message- > From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] > Sent: 18 March 2009 11:46 > To: cf-talk > Subject: scheduled tasks and performance, whats the impact on the > server? > > > A quick question re s

RE: ColdFusion 8 Certification

2009-03-18 Thread Adrian Lynch
Ben said he's not doing a CF8 version of the book. 9 will be the next one. Adrian > -Original Message- > From: N K [mailto:neetukais...@gmail.com] > Sent: 17 March 2009 20:13 > To: cf-talk > Subject: ColdFusion 8 Certification > > > Hi All, > > It would be helpful if you all could giv

RE: Time-our on compute intensice page

2009-03-17 Thread Adrian Lynch
Put in your page. Adrian > -Original Message- > From: Ron Gruner [mailto:webmas...@gruner.com] > Sent: 17 March 2009 10:50 > To: cf-talk > Subject: Time-our on compute intensice page > > > I'm executing a compute-intensive page that has 500 iterations which > generates an "exceeded al

RE: Anybody have exerience with KickAssVPS.com?

2009-03-16 Thread Adrian Lynch
Doing any PDF or image creation/manipulation? If so how are you finding it for speed? Adrian > -Original Message- > From: Rick Faircloth [mailto:r...@whitestonemedia.com] > Sent: 16 March 2009 16:04 > To: cf-talk > Subject: RE: Anybody have exerience with KickAssVPS.com? > > > I've kin

RE: Sort database records as a human not a computer.

2009-03-16 Thread Adrian Lynch
If you'd like to keep things simple, create a new column and enter the title as you'd like it to be ordered by. Would love to hear if someone has an idea about this also. Adrian > -Original Message- > From: Ian Skinner [mailto:h...@ilsweb.com] > Sent: 16 March 2009 14:27 > To: cf-talk >

RE: Coldfusion + FFmpeg

2009-03-12 Thread Adrian Lynch
You'll be lucky to find one I reckon. What about Railo hosting, they use ffmpeg under the hood for cfvideo? Adrian > -Original Message- > From: Bryon Westmoreland [mailto:westmorela...@gmail.com] > Sent: 13 March 2009 01:41 > To: cf-talk > Subject: Re: Coldfusion + FFmpeg > > > Does an

RE: What *exactly* does cgi.server_name return.

2009-03-12 Thread Adrian Lynch
calpip-devsite/index.cfmcalpip-devsite calpip.cdpr.ca.gov/index.cfmcalpip.cdpr.ca.gov calpip-devsite.inisde.cdpr.ca.gov/index.cfm calpip-devsite.inisde.cdpr.ca.gov 10.104.106.113/index.cfm10.104.106.113 134

RE: IOException while sending message

2009-03-12 Thread Adrian Lynch
Permissions have changed? Run out of disk space? Adrian > -Original Message- > From: Richard White [mailto:rich...@j7is.co.uk] > Sent: 12 March 2009 13:26 > To: cf-talk > Subject: IOException while sending message > > > hi > > our cf emails were getting sent fine but they are now they

  1   2   3   4   5   6   7   8   9   10   >