Re: directory masking

2009-01-02 Thread David Low
Well you can do that with frames/iframes or AJAX navigation, or
something like that, if I understand you correctly - but you would
only ever have one public URL.  Depending on your ambitions within
search engines (and cross-browser support) it could be done.  For a
public-facing site I wouldn't ever recommend it, but I guess it's up
to your client as long as he knows the potential pitfalls.

David

2009/1/2  :
> Thankyou for the assistance .  I am currently using that type of redirect 
> system inside of my application.  What the client wants is for the user to 
> see the url in the url bar only.  No directory names. No page names. Nothing 
> beyond the '.com' ind the web address.
>
> Any ideas?
>
> william
>
> William Seiter (mobile)
> --
> Web Developer / ColdFusion Programmer
>
> -Original Message-
> From: "David Low" 
> To: "cf-talk" 
> Sent: 1/2/2009 7:36 AM
> Subject: Re: directory masking
>
> William,
>
> For the second part of your question (URL rewriting) there are two
> ways you can do it.
>
> Firstly you can redirect _all_ requests (including 404s) to a default
> page - let's say index.cfm - and let that page decide what to do with
> the request, based on the URL passed in.  For example if the URL is
> /directory/1/2/3/ then you could parse your way through that URL.
>
> What the URL rewrite does is send the request to the web server in a
> different way.  I don't use ISAPI rewrite since I've got Apache
> running (mod_rewrite being the equivalent) but most of the time it
> works something like this:
>
> Public-facing URL: http://david.low.me.uk/category/railo/
>
> URL rewritten and sent to web server behind the scenes:
> http://david.low.me.uk/index.cfm?category=railo
>
> It can be done a lot more complicated than that, but that's the basic
> idea.  URLs are rewritten based on a set of rules supplied.
>
> Hope that's of some use...
>
> David
>
>
> 2009/1/2 William Seiter :
>> Thank you very much, I will use your suggestions today for the 404 issues
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317335
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: directory masking

2009-01-02 Thread David Low
William,

For the second part of your question (URL rewriting) there are two
ways you can do it.

Firstly you can redirect _all_ requests (including 404s) to a default
page - let's say index.cfm - and let that page decide what to do with
the request, based on the URL passed in.  For example if the URL is
/directory/1/2/3/ then you could parse your way through that URL.

What the URL rewrite does is send the request to the web server in a
different way.  I don't use ISAPI rewrite since I've got Apache
running (mod_rewrite being the equivalent) but most of the time it
works something like this:

Public-facing URL: http://david.low.me.uk/category/railo/

URL rewritten and sent to web server behind the scenes:
http://david.low.me.uk/index.cfm?category=railo

It can be done a lot more complicated than that, but that's the basic
idea.  URLs are rewritten based on a set of rules supplied.

Hope that's of some use...

David


2009/1/2 William Seiter :
> Thank you very much, I will use your suggestions today for the 404 issues.
>
> Can anyone give any ideas on the directory masking?
>
> William
>
> -Original Message-
> From: Chuck [mailto:h...@coldfusionguru.com]
> Sent: Thursday, January 01, 2009 5:51 PM
> To: cf-talk
> Subject: RE: directory masking
>
> Yes, I have done this before.
>
> You want to go into IIS and change the file that the 404 errors are pointing
> to.
>
> In IIS:
>
> Right click on the website you want and go to properties.  The go to the
> Custom Errors Tab.  Scroll down in the errors and you want to change 404,
> 404;2 and 404;3.  Select one and click the edit button.  Next change the
> Message type to URL and in the URL textbox you want to put a relative URL to
> the site, like this "/404Handler.cfm" with no quotes.  Make this change for
> all 3 and you are good to go.
>
> Chuck
>
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317332
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Express?

2008-12-29 Thread David Low
http://telemat.open.ac.uk/webapps/

2008/12/29 Raymond Camden :
> Got a URL for Open University's courses?
>
> On Sun, Dec 28, 2008 at 11:25 PM, BobSharp  wrote:
>> I'm doing a series of Open University short courses,
>> and being introduced to CF with this version.
>>
>>
>> It also came with the SAMs Teach Yourself  ColdFusion Express in 24 hrs.
>>
>>
>>
>> - Original Message -
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317207
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ColdFusion Express?

2008-12-29 Thread David Low
I'm a very happy SQLYog user, even upgraded to the Enterprise version
to use some of the additional functionality...

2008/12/29 Charlie Griefer :
> Sorry, it's been about 10 years since I've touched MySQL.  However, I'm
> pretty sure there are GUI front ends available.
> http://dev.mysql.com/downloads/gui-tools/5.0.html
>
> SQLyog - http://www.webyog.com/en/
> navicat - http://mysql.navicat.com/
>
> I'm sure someone with mySQL experience (more recent than a decade) can chime
> in with reviews/recommendations.  those were just from a quick google search
> and vague recollections of hearing about those tools in the past.
>
> On Mon, Dec 29, 2008 at 1:31 AM, BobSharp  wrote:
>
>> Thanks for the advice.   Will check with OU about using CF-8.
>>
>> Any advice for someone needing to learn MySQL ?
>> It's supposed to be "easy",  but it's DOS-window appearance is
>> depressing(!)
>>
>>
>>
>>
>> - Original Message -
>> From: "Charlie Griefer" 
>> To: "cf-talk" 
>> Sent: Monday, December 29, 2008 5:29 AM
>> Subject: Re: ColdFusion Express?
>>
>>
>> > That version, as has been pointed out, is quite a number of years old.
>> > You
>> > might be better off downloading the developer's edition of the latest
>> > version (CF 8) from Adobe's site.  It's free and fully functional (only
>> > limitation is that it can only be accessed by 2 external IP addresses...
>> > but
>> > developing and testing locally is no different than using the full
>> > commercial version).
>> >
>> > On Sun, Dec 28, 2008 at 9:25 PM, BobSharp  wrote:
>> >
>> >> I'm doing a series of Open University short courses,
>> >> and being introduced to CF with this version.
>> >>
>> >>
>> >> It also came with the SAMs Teach Yourself  ColdFusion Express in 24 hrs.
>> >>
>> >>
>> >>
>> >> - Original Message -
>> >> From: "Don L" 
>> >> To: "cf-talk" 
>> >> Sent: Sunday, December 28, 2008 11:19 PM
>> >> Subject: ColdFusion Express?
>> >>
>> >>
>> >> > One of the last few threads mentioned about ColdFusion Express?  Last
>> >> > heard was like four or five years ago, have I been sleeping all these
>> >> > years?  Or is it something sort of Adobe's interesting secret?  Or
>> does
>> >> > the thread refer to the same old express?
>> >> >
>> >> > Enlight me please.
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317203
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Variable within a variable

2008-12-27 Thread David Low
Maya,

When you're setting up your initial variable, can't you do something
like 

 - then you're combining the variables before you use them...

David


2008/12/27 Maya MacDonald :
> Seb,
>
> Thank you for the reply.
>
> I am not quite sure I am following how I would include this as a flat file?
>
> Thanks,
> Devin
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317150
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Official ColdFusion IDE announced

2008-11-18 Thread David Low
Most people don't use cfeclipse - from a recent tour of developer
interviews (quite a wide field from all over the UK), not one person
used it - few had even heard of it.

Most of them either used Dreamweaver of some edition, Homesite or some
generic text editors!

2008/11/18 Michael Dinowitz <[EMAIL PROTECTED]>:
> I don't think most people are using cfeclipse. It's not a very comfortable 
> environment for a lot of people, myself included. I'd love to see statistics, 
> but I'm betting less than a third of the community is on it.
> Free is nice, but comfort is better.
>
>>If it costs more than $0 I'll carry on using cfeclipse, as will most people I 
>>suspect.
>>
>>I wonder just how much the "commercial" release is going to cost?  I
>>can't see spending more than $50 for a new IDE.
>>
>>
>>Matthew Williams
>>Geodesic GraFX
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315471
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Railo 3 -> Open Source with JBoss

2008-06-06 Thread David Low
2008/6/7 Adam Haskell <[EMAIL PROTECTED]>:
>  I also take issue with the quote of "has to go open source" which implies
> that is the only way for these alternative engines to survive and that is
> simply not true. Both companies came to a conclusion that Open source is a
> viable business solution and are taking that step. It is an awesome step and
> should be encouraging, maybe some folks and blow life into Smith Project, or
> maybe Smith can merge with one of the big 2? This is a great annoucement,
> and for the first time ever there are now more open source CFML engines than
> closed source CFML engines. Pretty freaking sweet.

I think it's great news for the CFML community in general, that one of
the engines will be so readily available.  However I disagree on the
comments about Smith; it's more likely to me that Smith would cease to
exist.  Its primary reason for existing was the fact it's open source,
but it was always the least-compatible 'alternative' engine and
possibly the slowest to develop.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307021
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: VMWare Open BlueDragon image made available

2008-05-12 Thread David Low
2008/5/12 Tom Chiverton <[EMAIL PROTECTED]>:
>
>  I wouldn't expect anyone to use the OpenBD provided VM image in production, 
> so
>  I think the answers might be a bit moot.

People with smaller budgets - might well be tempted to use it for
internal apps, intranets, etc - so the smaller the footprint, the
better.

IMHO this would be a great way for someone with CFML skills but little
knowledge of systems and servers, to get something up and running in
production very quickly.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305078
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: top file extensions on the nt

2008-02-06 Thread David Low
Tom Chiverton wrote:
> You do know you can have CFML templates with .html extensions, right ? Or any 
> other extension, for that matter.

To be fair, that could also be said of any other non-HTML extension in 
the list.  However it also misses out the fact many sites don't use 
extensions at all, with mod_rewrite URLs and that kind of thing.

> It doesn't mean anything.

Agree on that.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298315
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: POI, Excel and row limitations

2008-01-14 Thread David Low
Rick Root wrote:
> But Excel seems to open delimited text files of greater than 65536
> rows with no problem.

Depends on the version.  Prior verions would open a file bigger than 
65536 but would cut everything off after the 65536th row (and wouldn't 
actually throw any error or dialog to say where the other data is).

> Can excel not handle actual worksheets with > 65536 rows?  Or is the
> Java POI interface somehow limiting the worksheets it creates to that
> number of rows?

The latest version of Excel was meant to fix the 65536 thing but 
apparently it didn't work until they released a patch, thinking from 
memory?  I don't use Excel these days so can't quite remember the story.

Certainly used to have that 65536 limit.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296529
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adobe ColdFusion IDE survey

2008-01-10 Thread David Low
Cutter (CFRelated) wrote:
> It's funny that you mention this. I've been using Eclipse/CFEclipse for 
> a few years now, and have rarely, if ever, had a problem. Yet the guy 
> next to me had horrific experiences out of the gate, until he did a 
> complete reinstall. He's not a fan of Eclipse at all, and I think that's 
> part of why.

That's basically the same story; I set it up OK, but other people seemed 
to hit trouble, whether with JVMs or plugins not working right. 
Upgrading plugins seemed to be a big bugbear.

> On another, similar note: yesterday I did an install of CFE using Pulse, 
> adding in Subversive, UML2, and a few other things. Crazy easy to do. 
> I'll be happy when they're listing more projects, and I can see it as 
> another delivery method for Adobe for Flex and for the CF extensions.

Have to say that's new to me, giving it a try right now.  I'll pass it 
on to the Eclipse detractors too!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296352
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Adobe ColdFusion IDE survey

2008-01-10 Thread David Low
Dawson, Michael wrote:
> I'm not a fan of the visual interface of Eclipse.  It looks as if the
> authors either didn't take the time, didn't care or purposely avoided
> making Eclipse look like a native Windows application.
> 
> There is little, or no, use of common Windows icons for Open, Save,
> Print, Search, etc.
> 
> The visual aspect of an application does have some influence.

It's not a native Windows application, but I can see your point.  It 
doesn't bother me personally but I know it has bothered others enough to 
keep them working in Dreamweaver or Homesite.

That might not please some of the purists on these lists but everyone 
has their own preference.

One last point - I have used Eclipse for a while and consider it my 
day-to-day IDE, but have never managed to persuade a colleague to 
convert.  Most people I've spoken to just think Eclipse (not CFEclipse, 
I might add) is a buggy time-waster which invariably seems to crash too 
often.  If you've used Homesite for 7 or 8 years with great stability 
then there's no compelling real reason to change.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:296342
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Case Sensitivity

2007-10-04 Thread David Low
Tim Ashworth wrote:
> I was under the impression that coldfusion was entirely case insensitive
> regardless of if it is on a windows or linux OS.  So I'm quite happily
> writing everything in lower case and camel case, but my colleague is
> convinced that this is wrong.  Whilst I appreciate that it's a good idea to
> stick to a convention and not be too sloppy I have to confess I'm getting a
> bit fed up checking case when I'm sure it's not an issue.  I have done some
> tests and it all *seems* case insensitive, but I'd appreciate some back-up
> from a more experienced CF developer.

I've seen people have big problems with case sensitivity on Linux, when 
they didn't capitalise the 'A' in 'Application.cfm' and so on.

Other than for file operations though, it shouldn't matter within the 
CFML itself.

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290152
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Map .htm to ColdFusion

2007-09-06 Thread David Low
Jim McAtee wrote:
> So, I may have to edit this file by hand?  What's the procedure - stop CF, 
> edit file, restart CF?

Yep, AFAIK.

> Can anyone confirm whether this is necessary to process .htm files with 
> CF8?

The application server won't be expecting to serve .htm files, so it 
will presumably throw a wobbler when asked to?

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287898
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Java Script Value to CF Value

2007-09-04 Thread David Low
Yep, that's possible - if you're using CF8 there are tags/functions to 
do this, if not you could use Rick Root's excellent ImageCFC or Alagad 
Image Component.

For info, Railo has a very handy attribute which lets you get image 
dimensions directly from a  tag.


Robert Harrison wrote:
> ALTERNATE METHOD:
> 
> I can read the file using CFFILE. 
> 
> If it is an image file is there some way I can get the width and height?
> 
> 
> 
> 
> Robert B. Harrison
> Director of Interactive services
> Austin & Williams
> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
> T : 631.231.6600 Ext. 119 
> F : 631.434.7022
> www.austin-williams.com
> 
> Great advertising can't be either/or... It must be &.
> 
> 
> 
> 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287694
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Java Script Value to CF Value

2007-09-04 Thread David Low
But that is for passing CF values into Javascript, isn't it?  Robert is 
trying to get a client-side JS value (which is defined once an image has 
loaded) into the server-side CF code.  Can't be done in that way.

Robert, what is it you're trying to do in general, aside from the 
snippet of code you gave?

Dan Vega wrote:
> Robert,
> Look at the docs for toScript(), this function will help you out.
> 
> Dan
> 
> On 9/4/07, Robert Harrison <[EMAIL PROTECTED]> wrote:
>> I have a value I'm retrieving from Java Script.  I need to set it to a CF
>> value. What is the correct syntax. Below does not work, but it makes the
>> point on what I'm trying to do. How do I do this correctly?
>>
>>
>>
>> > language='javascript'>document.write(document.images[0].height)>
>>
>>
>>
>> Thanks,
>>
>>
>>
>>
>>
>> Robert B. Harrison
>> Director of Interactive services
>> Austin & Williams
>> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
>> T : 631.231.6600 Ext. 119
>>
>> F : 631.434.7022
>> www.austin-williams.com
>>
>> Great advertising can't be either/or... It must be &.
>>
>>
>>
>>
> 
> 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287689
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Java Script Value to CF Value

2007-09-04 Thread David Low
But that is for passing CF values into Javascript, isn't it?  Robert is 
trying to get a client-side JS value (which is defined once an image has 
loaded) into the server-side CF code.  Can't be done in that way.

Robert, what is it you're trying to do in general, aside from the 
snippet of code you gave?


Dan Vega wrote:
> Robert,
> Look at the docs for toScript(), this function will help you out.
> 
> Dan
> 
> On 9/4/07, Robert Harrison <[EMAIL PROTECTED]> wrote:
>> I have a value I'm retrieving from Java Script.  I need to set it to a CF
>> value. What is the correct syntax. Below does not work, but it makes the
>> point on what I'm trying to do. How do I do this correctly?
>>
>>
>>
>> > language='javascript'>document.write(document.images[0].height)>
>>
>>
>>
>> Thanks,
>>
>>
>>
>>
>>
>> Robert B. Harrison
>> Director of Interactive services
>> Austin & Williams
>> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
>> T : 631.231.6600 Ext. 119
>>
>> F : 631.434.7022
>> www.austin-williams.com
>>
>> Great advertising can't be either/or... It must be &.
>>
>>
>>
>>
> 
> 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287688
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Java Script Value to CF Value

2007-09-04 Thread David Low
That script won't work, as the CF code will already be executed before 
the client-side Javascript does anything.  CF might be able to write to 
Javascript but can't read it.

Robert Harrison wrote:
> I have a value I'm retrieving from Java Script.  I need to set it to a CF
> value. What is the correct syntax. Below does not work, but it makes the
> point on what I'm trying to do. How do I do this correctly?
> 
>  
> 
>  language='javascript'>document.write(document.images[0].height)>
> 
>  
> 
> Thanks,
> 
>  
> 
>  
> 
> Robert B. Harrison
> Director of Interactive services
> Austin & Williams
> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
> T : 631.231.6600 Ext. 119 
> 
> F : 631.434.7022
> www.austin-williams.com
> 
> Great advertising can't be either/or... It must be &.
> 
> 
> 
> 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287684
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Text Field Auto-Fill

2007-09-04 Thread David Low
Peter,

Just out of interest, do you have any javascript at the head of the 
page, or included in some way?  Looks like there are functions being 
called but the code doesn't show where they are running from...


Peter Tanswell wrote:
> Hi there
> 
> I have a site which I put together in a few hours.
> 
> I have one piece of code which works on another site but for some reason isnt 
> working on this site and I cant see why?
> 
>  method="post" >
> 
>   
>  value="Enter e-mail address" onfocus="ClearSubEmail(true)" 
> onblur="ClearSubEmail(false)" />
>  alt="Subscribe to receive the presentation" title="Subscribe to receive the 
> presentation" />
>   
> 
>   
>   
> 
> Basically I'm expecting that is someone clicks on the field they will clear 
> the field so they can enter their email address - but for some reason the 
> field is not being cleared.
> 
> Many thanks in advance 
> 
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287677
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Railo 2 Released

2007-08-28 Thread David Low
Sean Corfield wrote:
> Hmm, I've never needed to use a C++ tag with CFML. I think I've only
> used one Java CFX tag ever.
> 
> What sort of "killer" C++ CFX tags are you folks using?

I'd go along with that - I've often found myself removing CFX tags which 
were purely in use as a 'quick fix'.  Such as one which verifies an 
email address - and a nice UDF (then later a CFC) did the job.

There was one showstopper CFX which was tied to a banking application 
but it was later converted to Java.  Is there still a big market for 
commercial CFX tags?

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287275
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Railo 2 Released

2007-08-26 Thread David Low
That's not true about the 6.1 compatibility.

The new version has basically been benchmarked against CF 7.02, which 
was the current version when the bulk of Railo 2 was developed.  Some 
features have been extended or improved beyond the CF 7 spec.

This final release also adds some features added in CF 8...

http://dev.railo.ch/en/index.cfm?treeID=106

NB: I don't work for Railo, just interested in a fair argument! :-)


Rick Faircloth wrote:
> If they cut the price by about 50%, I might be interested.
> I just can't see paying "at least" for Railo Pro, which only
> compares to CFML 6.1, for what I would pay for the full pro
> version of CF 8 from Adobe... the original.
> 
> Say, I'd be paying at least as much, if not more considering the
> number of websites I host, for a CFML engine two versions out of date,
> and forfeiting may of the features of CF 8 from Adobe.
> 
> I don't understand why anyone would go this route.  Again, if the
> price were considerably less that CF 8 from Adobe, then maybe I could
> see going this way...
> 
> Rick
> 
> 
> -Original Message-
> From: David Low [mailto:[EMAIL PROTECTED] 
> Sent: Saturday, August 25, 2007 5:51 PM
> To: CF-Talk
> Subject: Railo 2 Released
> 
> Railo released their 2.0 edition today.  I've been testing stuff against 
> the release candidates for a few months now and love it...
> 
> http://www.railo.ch/en/index.cfm
> 
> 
> 
> 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287138
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Railo 2 Released

2007-08-25 Thread David Low
Railo released their 2.0 edition today.  I've been testing stuff against 
the release candidates for a few months now and love it...

http://www.railo.ch/en/index.cfm

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287129
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Railo and CF8 speed contest

2007-07-27 Thread David Low
Actually it has (I had comment pre-moderation turned on, without 
realising) - Damon, I've left you an email too.

[EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
> I posted this but it hasn't been published:
> 
> =
> It’s hardly fair to post a set of performance benchmarks without full open 
> disclosure, including everything needed to reproduce the test results. 
> 
> Please post all this and I can promise you the CF team will respond (I run 
> it).
> 
> Thanks!
> 
> Damon
> ==
> 
> 

~|
ColdFusion 8 beta - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284729
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SOT: Eclipse Plugins

2007-07-12 Thread David Low
Seconded.

Doug Arthur wrote:
> It does. I'm on Eclipse 3.3 and using Aptana.
> 
> -Original Message-
> From: Tom Chiverton [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, July 12, 2007 12:17 PM
> To: CF-Talk
> Subject: Re: SOT: Eclipse Plugins
> 
> On Thursday 12 Jul 2007, Larry Lyons wrote:
>> Check out the Aptana plugin for eclipse (http://www.aptana.com). 
> 
> Doesn't work on Eclipse 3.3 ?
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:283612
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT - Gap when making element invisible

2007-07-02 Thread David Low
Put the  tags inside the spans?

On 7/2/07, Adrian Lynch <[EMAIL PROTECTED]> wrote:
> I have three spans:
>
> 1
> 2
> 3
>
> Which gives me output:
>
> 1
> 2
> 3
>
> If I make the middle one invisible with script:
>
> document.getElementById("span_2").style.visibility = "hidden";
>
> It leaves a gap like so:
>
> 1
>
> 3
>
> How would I make that gap close up leaving me with:
>
> 1
> 3
>
> Adrian Lynch
>
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:282705
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: configuring Apache to use multiple JRun Application Servers

2007-06-19 Thread David Low
I'm assuming you set up CF8 with the JRun "multiple server" 
installation?  Memory's a bit hazy here but IIRC, Apache is set up to 
handle all requests for .cfm (and other ColdFusion) files, regardless of 
where they live.

That might well be why CF8 worked without editing web.xml or similar, 
it's just set up out of the box...

AJ Mercer wrote:
> Thanks Tom.
> 
> I Think this is what Gert from Railo was saying too
> in web-inf I have to edit web.xml and add the mapping
> but I didn't have to do this for CF - I think the wsconfig must do this; or
> maybe it is the CF install itself
> 
> On 6/19/07, Tom Chiverton <[EMAIL PROTECTED]> wrote:
>> On Tuesday 19 Jun 2007, AJ Mercer wrote:
>>> What am I missing?
>> At a guess, the mapping for '/' in the application is different to your
>> DocumentRoot setting in Apache ?
>>
>> --
>> Tom Chiverton
>> Helping to carefully seize proactive designs
>> on: http://thefalken.livejournal.com
>>
>> 
>>
>> This email is sent for and on behalf of Halliwells LLP.
>>
>> Halliwells LLP is a limited liability partnership registered in England
>> and Wales under registered number OC307980 whose registered office address
>> is at St James's Court Brown Street Manchester M2 2JF.  A list of members is
>> available for inspection at the registered office. Any reference to a
>> partner in relation to Halliwells LLP means a member of Halliwells LLP.
>> Regulated by the Law Society.
>>
>> CONFIDENTIALITY
>>
>> This email is intended only for the use of the addressee named above and
>> may be confidential or legally privileged.  If you are not the addressee you
>> must not read it and must not use any information contained in nor copy it
>> nor inform any person other than Halliwells LLP or the addressee of its
>> existence or contents.  If you have received this email in error please
>> delete it and notify Halliwells LLP IT Department on 0870 365 8008.
>>
>> For more information about Halliwells LLP visit www.halliwells.com.
>>
>>
>>
> 
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:281542
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: I love CF but it's not fair

2007-06-12 Thread David Low
Russ wrote:
> Maybe someone should make a free/open source CF server.  That would probably
> get more people using it.  Of course once you've invested this much time
> into developing a product like that, it's hard not to start charging for it.
> (Didn't CF5 and BlueDragon start out as free products?)

There are free and cheap engines out there.

Someone mentioned Smith already, there's also Railo's community edition 
(and their other editions are very reasonable too).

BD has a free edition too - I don't recall CF5 ever being free though, 
unless it was some kind of upgrade promotion when Macromedia launched it 
post-Allaire?

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:280868
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: sun downloads?

2007-05-26 Thread David Low
Same for me too - been like that all day.

Bobby Hartsfield wrote:
> Wrong link...
> http://developers.sun.com/downloads/top.jsp
> 
> I was after JRE6 but NONE of the downloads work for me.
> 
> ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
> 
> 
> 
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:279339
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


OT: RE: Is this bad form?

2007-05-18 Thread David Low
Probably, but it certainly goes on.

IMHO, it's bad form for sites such as newspapers and blogs to have "Digg
This!" links at the bottom of every story too.  If one of their readers
uses Digg regularly and likes the article, they will know what to do,
without prompting.

> -Original Message-
> From: Christopher Jordan [mailto:[EMAIL PROTECTED] 
> Sent: 18 May 2007 15:38
> To: CF-Talk
> Subject: OT:Is this bad form?
> 
> Hi folks,
> 
> Is it considered bad form for the author of an article to ask 
> folks to digg that article 
> 
> for him?
> 
> Thanks,
> Chris
> 
> --
> http://www.cjordan.us
> 
> 
> 
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278601
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: upgrade JRE version and latest vista..

2007-05-03 Thread David Low
> From: ramesh deva [mailto:[EMAIL PROTECTED] 
> Sent: 03 May 2007 16:03
> To: CF-Talk
> Subject: upgrade JRE version and latest vista..
> 
> I appreciate your advises or comments..
>
>
> Serial Number 
>  CED700-52460-07253-x

My first advice would be to avoid posting your serial number on a public
mailing list :-)


--------
David Low
Senior Developer and Data Manager
MyHousePrice.com
3 Wellgreen Lane
STIRLING, FK8 2BS

tel: +44 (0) 1786 472 186
fax: +44 (0) 1786 472 109
email: [EMAIL PROTECTED]
web: www.MyHousePrice.co.uk

MyHousePrice.com
Every House Sold, Every Price Paid


This email is intended only for the person, persons, entity, or entities to 
which it is addressed. It does not necessarily represent the views of 
MyHousePrice.com Ltd.

This email may contain confidential and/or privileged materials. In the case of 
confidential and/or privileged materials, any review, retransmission, 
dissemination or other use, including the taking of any action in reliance upon 
these materials, by persons or entities other than the intended recipient may 
be the subject of legal action.

If you have received this email in error please contact the sender and delete 
the material from your computer.

Internet e-mails are not necessarily secure. MyHousePrice.com Ltd does not 
accept responsibility for changes made to this message after it was sent.

Many thanks.
 


~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276922
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Opensource Web Analytics

2007-04-12 Thread David Low
> From: Dwayne Cole [mailto:[EMAIL PROTECTED] 
> Sent: 12 April 2007 10:01
> To: CF-Talk
> Subject: Opensource Web Analytics
> 
> I'm looking for a free or low cost web analytics tool that I 
> can use on a few sites I host.  Does anyone here have any 
> recommendations? 

If you're looking for something live, Google Analytics is probably best.
If you want to process logs offline, try Analog from www.analog.cx -
fast and accurate, IMHO.


--------
David Low
Senior Developer and Data Manager
MyHousePrice.com
3 Wellgreen Lane
STIRLING, FK8 2BS

tel: +44 (0) 1786 472 186
fax: +44 (0) 1786 472 109
email: [EMAIL PROTECTED]
web: www.MyHousePrice.co.uk

MyHousePrice.com
Every House Sold, Every Price Paid


This email is intended only for the person, persons, entity, or entities to 
which it is addressed. It does not necessarily represent the views of 
MyHousePrice.com Ltd.

This email may contain confidential and/or privileged materials. In the case of 
confidential and/or privileged materials, any review, retransmission, 
dissemination or other use, including the taking of any action in reliance upon 
these materials, by persons or entities other than the intended recipient may 
be the subject of legal action.

If you have received this email in error please contact the sender and delete 
the material from your computer.

Internet e-mails are not necessarily secure. MyHousePrice.com Ltd does not 
accept responsibility for changes made to this message after it was sent.

Many thanks.
 


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275056
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


BD7

2007-03-30 Thread David Low
BlueDragon 7 has been released today...
http://www.newatlanta.com/products/bluedragon/index.cfm



David Low
Senior Developer and Data Manager
MyHousePrice.com
3 Wellgreen Lane
STIRLING, FK8 2BS

tel: +44 (0) 1786 472 186
fax: +44 (0) 1786 472 109
email: [EMAIL PROTECTED]
web: www.MyHousePrice.co.uk

MyHousePrice.com
Every House Sold, Every Price Paid


This email is intended only for the person, persons, entity, or entities to 
which it is addressed. It does not necessarily represent the views of 
MyHousePrice.com Ltd.

This email may contain confidential and/or privileged materials. In the case of 
confidential and/or privileged materials, any review, retransmission, 
dissemination or other use, including the taking of any action in reliance upon 
these materials, by persons or entities other than the intended recipient may 
be the subject of legal action.

If you have received this email in error please contact the sender and delete 
the material from your computer.

Internet e-mails are not necessarily secure. MyHousePrice.com Ltd does not 
accept responsibility for changes made to this message after it was sent.

Many thanks.
 


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:274191
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Mysql YEAR(DateField) problems with cfqueryparam

2007-02-21 Thread David Low
http://computing-dictionary.thefreedictionary.com/wank 

> -Original Message-
> From: James Holmes [mailto:[EMAIL PROTECTED] 
> Sent: 21 February 2007 13:50
> To: CF-Talk
> Subject: Re: Mysql YEAR(DateField) problems with cfqueryparam
> 
> They use it as a surname...
> 
> On 2/21/07, Will Swain <[EMAIL PROTECTED]> wrote:
> > What does it mean IN the US? :)
> >
> > -Original Message-
> > From: James Holmes [mailto:[EMAIL PROTECTED]
> > Sent: 21 February 2007 11:22
> > To: CF-Talk
> > Subject: Re: Mysql YEAR(DateField) problems with cfqueryparam
> >
> > You do know what that word means outside of the US right?
> >
> > On 2/21/07, Dinner <[EMAIL PROTECTED]> wrote:
> > > Years of wanking...
> 
> --
> mxAjax / CFAjax docs and other useful articles:
> http://www.bifrost.com.au/blog/
> 
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270296
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BD + Apache Troubles

2007-02-05 Thread David Low
Thanks Mark -

I did just that, and after such a long post, a restart of BD did the
trick straight away.  Just some strange caching!

Cheers

David 

> -Original Message-
> From: Mark Flewellen [mailto:[EMAIL PROTECTED] 
> Sent: 05 February 2007 19:10
> To: CF-Talk
> Subject: Re: BD + Apache Troubles
> 
> You may want to post this to the Blue Dragon Mailing List 
> unless someone on this list knows the answer, I have heard of 
> this problem before, and can't remember the solution, but 
> have seen it pop up on the Blue Dragon Mailing List a couple 
> of times, so it may pay to search through there message 
> archives on their self-help part of their website.
> 
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268723
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


OT: BD + Apache Troubles

2007-02-05 Thread David Low
I've got two extremely strange problems with Apache just now, just
wondered if anyone had seen anything like them before.

I have a server with many virtual hosts - however two or three of them
are behaving very strangely.  The virtual sites are served from users'
home directories.

Firstly I have a site which is working absolutely perfectly - EXCEPT the
"index.cfm" file.  For some strange reason, instead of serving the
site's own index.cfm, Apache (or BD) is trying to serve the default
index.cfm from the default Apache directory.

For illustration, the site is in
/home/david/websites/www.thissite.com/website/

But is trying to serve index.cfm from 
/var/www/html (which is the default directory set up in Apache).

All other files in the site serve as they should - it's utterly bizarre.
BD debugging shows the correct CGI path_info for the file, but the
"cf_template_path" variable shows /var/www/html. 

Most bizarrely, even changing the filename to "index2.cfm" makes it
serve properly.  The file has no redirects or anything like that.  Other
CF sites in the same folder, set up in the same way, serve absolutely
fine.


Secondly, but similar, I have two other sites which aren't behaving
properly at all.  Again, they serve correctly for the most part, but
have a nagging problem.

For illustration, the site is in
/home/martin/websites/www.thissite.com/website

And if you navigate to 'www.thissite.com' then it serves fine.  However
despite having a ServerAlias of 'thissite.com', it refuses to serve the
site from that address.  In this case, the CGI path_info seems to
change, depending which URL has been typed in.  With 'www.thissite.com',
the cf_template_path is "/home/martin/websites/www.thissite.com/" but if
the URL is plain old "thissite.com" then the cf_template_path is
"/home/martin/websites/thissite.com" which doesn't exist.

I've never come across anything like this before - the environment is
Apache 2.052 on CentOS 4 with BD JX 6.2 and many other sites are working
fine - these are just pure exceptions.  I've tried changing the
ownership of the site directory, changing permissions to 777, everything
- I even set up the sites as the only virtual site in Apache and nothing
worked.

Any pointers or help would be greatly appreciated!

David



David Low
Senior Developer and Data Manager
MyHousePrice.com
3 Wellgreen Lane
STIRLING, FK8 2BS

tel: +44 (0) 1786 472 186
fax: +44 (0) 1786 472 109
email: [EMAIL PROTECTED]
web: www.MyHousePrice.co.uk

MyHousePrice.com
Every House Sold, Every Price Paid


This email is intended only for the person, persons, entity, or entities to 
which it is addressed. It does not necessarily represent the views of 
MyHousePrice.com Ltd.

This email may contain confidential and/or privileged materials. In the case of 
confidential and/or privileged materials, any review, retransmission, 
dissemination or other use, including the taking of any action in reliance upon 
these materials, by persons or entities other than the intended recipient may 
be the subject of legal action.

If you have received this email in error please contact the sender and delete 
the material from your computer.

Internet e-mails are not necessarily secure. MyHousePrice.com Ltd does not 
accept responsibility for changes made to this message after it was sent.

Many thanks.
 


~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:268633
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Batch optimize images

2007-01-18 Thread David Low
IrfanView usually did the trick for me (on the PC) but I'm sure Google's
Picasa will do it too. 

> -Original Message-
> From: Doug Brown [mailto:[EMAIL PROTECTED] 
> Sent: 18 January 2007 13:29
> To: CF-Talk
> Subject: OT: Batch optimize images
> 
> Does anyone know of a program that will allow you to batch 
> optimize images? What I need to do is reduce the file size of 
> some images that are currently in gif format. I would like to 
> convert them to jpg format with a quality of say 60. 
> 
> 
> 
> 
> Doug B.
> 
> 

~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Sorta OT: iframe in a form doesn't pass values?

2006-12-20 Thread David Low
Well you could with some JS at the point of completion or submission,
just like you could if the form was spread over a frameset.  It's not
very elegant and a bit messy, but not impossible. 

David

> -Original Message-
> From: Rick Root [mailto:[EMAIL PROTECTED] 
> Sent: 20 December 2006 15:32
> To: CF-Talk
> Subject: Re: Sorta OT: iframe in a form doesn't pass values?
> 
> an Iframe is a completely different web page.   You're not 
> submitting them.
> You can't use an iframe for that.
> 
> Try cfinclude.
> 
> Rick
> 
> 
> 
> On 12/20/06, Les Mizzell <[EMAIL PROTECTED]> wrote:
> >
> > I've got a CFFORM on a page that contains a huge scrolling list of 
> > checkboxes contained inside an iframe
> >
> > 
> >Tons of stuff to fill out here
> >
> >   
> >
> >Tons more stuff here
> > 
> > 
> >
> > Selected values from within an iframe don't get submitted 
> along with 
> > the other form values?
> >
> > How do you - if you can - pas these?
> >
> > 
> 
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:264580
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Employee Satisfaction

2006-11-22 Thread David Low
> From: Snake [mailto:[EMAIL PROTECTED] 
> Sent: 21 November 2006 16:26
> To: CF-Talk
> Subject: RE: Employee Satisfaction
> 
> I actually have found that being too friendly with your staff 
> doesn't work very well. People generally don't want to be 
> mates with their boss and wont relax with you, and if you do 
> get too chummy, your authority tends to go out the window.

It totally depends on the boss.  Two of my best gaffers would happily go
out on Friday night, pay for most of the drinks, and get blind drunk
with everyone else - and also be prepared to take the drunken flak that
came their way by the end of the night.  It requires a thick skin and
two faces to some extent, but it can work really well.

Sometimes staff need to be allowed to vent their frustrations away from
the office - it can be a "reward" just to do that at times.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:261368
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Installing BD 7 beta on MacTel

2006-11-17 Thread David Low
Hi Jason,

Thanks for that - I did actually create the symlinks as per the FAQ but
it's still not happy to run.  I'll maybe set it back to where it was
originally and try the instructions again, just in case.

David

> From: Jason T. Slack [mailto:[EMAIL PROTECTED] 
> Sent: 17 November 2006 13:37
> To: CF-Talk
> Subject: Re: Installing BD 7 beta on MacTel
> 
> Hi David,
> 
> I reported the same installer troubles to NewAtlanta also.
> 
> I was really hoping for 7.0 to work and solve some issues that I have.
> 
> As far as the JVM issue, I was able to get it to recognize 
> JVM 1.4.2 by creating a symlink.
> 
> The instructions for this can be found at New Atlanta Support 
> in the FAQ under Installation.
> 
> -jason
> 
> On Nov 17, 2006, at 6:57 AM, David Low wrote:
> 
> > Hi folks,
> >
> > I've tried in vain to install the BlueDragon 7 beta on my Macboook 
> > Pro.
> > Followed the installation instructions to the letter, but 
> it only ever 
> > seems to drop the uninstaller into the Bluedragon 
> application folder, 
> > and gives up after that.
> >
> > I'll post the installation log on here (also posted this to the BD 
> > interest list but haven't had a response as yet).
> >
> > To be honest I was actually hoping to install BD JX 6.2 on the Mac, 
> > but have never been able to get it to recognise 1.42 as the default 
> > Java on that particular machine, again despite following the FAQ 
> > instructions.
> > Any advice on that score would be appreciated too!
> >
> > Thanks
> >
> > David
> >
> > 
> >
> > Installation log:
> >
> > 
> > Install Begin: Thu Nov 16 20:57:20 GMT 2006
> > Install End:   Thu Nov 16 20:57:32 GMT 2006
> >
> > Created with Zero G's InstallAnywhere 7.1 Enterprise Build 2892
> >
> >
> > Summary
> > ---
> >
> > Installation: Successful with errors.
> >
> > 16 SUCCESSES
> > 0 WARNINGS
> > 3 NONFATAL ERRORS
> > 0 FATAL ERRORS
> >
> > Action Notes:
> >
> > None.
> >
> > Install Log Detail:
> >
> > Install Action:   InstallAnywhere Variables
> > Status: SUCCESSFUL
> >
> > Install Action:
> > Status: SUCCESSFUL
> >
> >
> > Custom Action:
> > com.newatlanta.bluedragon.installer.IACustomCode
> > Status: ERROR
> > Additional Notes: ERROR - class
> > com.newatlanta.bluedragon.installer.IACustomCode unavailable.
> >
> >
> > Install Action:   InstallAnywhere Variables
> > Status: SUCCESSFUL
> >
> > Check Disk Space: /Applications/BlueDragon_Server_JX
> > Status: SUCCESSFUL
> > Additional Notes: NOTE - Required Disk
> > Space: 1,299,563; Free Disk Space: 23,688,818,688
> >
> > Install Directory:/Applications/BlueDragon_Server_JX/
> > Status: SUCCESSFUL
> >
> >
> > Custom Action:
> > com.newatlanta.bluedragon.installer.IACustomCode
> > Status: ERROR
> > Additional Notes: ERROR - class
> > com.newatlanta.bluedragon.installer.IACustomCode unavailable.
> >
> > Install File:
> > /Applications/BlueDragon_Server_JX/BlueDragonLicense.txt
> > Status: SUCCESSFUL
> >
> > Install Directory:/Applications/BlueDragon_Server_JX/ 
> > uninstall/
> > Status: SUCCESSFUL
> >
> > Install Uninstaller:  BlueDragon Server JX 7.0 (Install All
> > Uninstaller Components)
> > Status: SUCCESSFUL
> >
> > Install Uninstaller:  BlueDragon Server JX 7.0 (Install All
> > Uninstaller Components)
> > Status: SUCCESSFUL
> >
> >
> > Install Action:   InstallAnywhere Variables
> > Status: SUCCESSFUL
> >
> >
> > Custom Action:
> > com.newatlanta.bluedragon.installer.IACustomCode
> > Status: ERROR
> > Additional Notes: ERROR - class
> > com.newatlanta.bluedragon.installer.IACustomCode unavailable.
> >
> > Execute Command:
> > /System/Library/StartupItems/BlueDragonServer/BlueDragonServer
> > Status: SUCCESSFUL
> >
> > 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260845
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Installing BD 7 beta on MacTel

2006-11-17 Thread David Low
Hi folks,

I've tried in vain to install the BlueDragon 7 beta on my Macboook Pro.
Followed the installation instructions to the letter, but it only ever
seems to drop the uninstaller into the Bluedragon application folder,
and gives up after that.

I'll post the installation log on here (also posted this to the BD
interest list but haven't had a response as yet).

To be honest I was actually hoping to install BD JX 6.2 on the Mac, but
have never been able to get it to recognise 1.42 as the default Java on
that particular machine, again despite following the FAQ instructions.
Any advice on that score would be appreciated too!

Thanks

David



Installation log:


Install Begin: Thu Nov 16 20:57:20 GMT 2006
Install End:   Thu Nov 16 20:57:32 GMT 2006

Created with Zero G's InstallAnywhere 7.1 Enterprise Build 2892


Summary
---

Installation: Successful with errors.

16 SUCCESSES
0 WARNINGS
3 NONFATAL ERRORS
0 FATAL ERRORS

Action Notes:

None.

Install Log Detail:

Install Action:   InstallAnywhere Variables
Status: SUCCESSFUL

Install Action:
Status: SUCCESSFUL


Custom Action:
com.newatlanta.bluedragon.installer.IACustomCode
Status: ERROR
Additional Notes: ERROR - class
com.newatlanta.bluedragon.installer.IACustomCode unavailable.


Install Action:   InstallAnywhere Variables
Status: SUCCESSFUL

Check Disk Space: /Applications/BlueDragon_Server_JX
Status: SUCCESSFUL
Additional Notes: NOTE - Required Disk
Space: 1,299,563; Free Disk Space: 23,688,818,688

Install Directory:/Applications/BlueDragon_Server_JX/
Status: SUCCESSFUL


Custom Action:
com.newatlanta.bluedragon.installer.IACustomCode
Status: ERROR
Additional Notes: ERROR - class
com.newatlanta.bluedragon.installer.IACustomCode unavailable.

Install File:
/Applications/BlueDragon_Server_JX/BlueDragonLicense.txt
Status: SUCCESSFUL

Install Directory:/Applications/BlueDragon_Server_JX/uninstall/
Status: SUCCESSFUL

Install Uninstaller:  BlueDragon Server JX 7.0 (Install All
Uninstaller Components)
Status: SUCCESSFUL

Install Uninstaller:  BlueDragon Server JX 7.0 (Install All
Uninstaller Components)
Status: SUCCESSFUL


Install Action:   InstallAnywhere Variables
Status: SUCCESSFUL


Custom Action:
com.newatlanta.bluedragon.installer.IACustomCode
Status: ERROR
Additional Notes: ERROR - class
com.newatlanta.bluedragon.installer.IACustomCode unavailable.

Execute Command:
/System/Library/StartupItems/BlueDragonServer/BlueDragonServer
Status: SUCCESSFUL

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: ColdFusion blogging software?

2006-11-17 Thread David Low
To be honest my preference has always been Wordpress back-end and a
customised CF front-end.  However I'm in the middle of converting a
Wordpress blog to BlogCFC (which I've not used since it grew to v5) and
it's looking good to be honest.

The difference between BlogCFC and Wordpress in terms of admin tools is
the plugin structure - the sheer volume of Wordpress users means there
will always be more plugins available for specific things, and more
likelihood that you will find a ready-made plugin for something you
need.  

Having said that, if you have a specific wish for a CF-based blog then
you can presumably find your way around CF code and make your own
BlogCFC add-ons, tidy up the admin, etc.  This was something I had to do
in the past, rebuilding the interface so it was fully semantic mark-up
(in a very early version).  Let Ray know what you've done and see if
there's anything which might warrant being added to the next BlogCFC
release.

David

> -Original Message-
> From: Ryan Stille [mailto:[EMAIL PROTECTED] 
> Sent: 16 November 2006 20:09
> To: CF-Talk
> Subject: ColdFusion blogging software?
> 
> I'm interested in starting a blog, and was wondering what 
> some good options are as far as ColdFusion blogging software. 
>  I've played with BlogCFC a bit, and was a little 
> underwhelmed with the administration tools.  I've used 
> WordPress (a php package) in the past and I guess I'm kind of 
> spoiled from that.  I might end up using WordPress again but 
> if there's a good CF blog out there I'd rather use that.
> 
> What else is out there?  I've heard a lot about MachBlog, but 
> when I went to the site I found that its not even available 
> for download yet.
> 
> Thanks,
> -Ryan
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260832
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Search Engine Friendly URLS

2006-11-16 Thread David Low
I'd go along with the 404 error suggestion - I've implemented this too,
it works really well.

You need to create a custom 404 error on the web server (this is pretty
straightforward but needs access to the server config, whichever version
you use).  The 404 page then queries against a table of 'known pages' or
such like, and cfincludes the correct page without any need for
redirection or URL rewriting.

However outside of CF, you can use url rewriting (mod_rewrite or ISAPI
rewrite) to achieve this with far less overhead.  The request would be
soething like www.domain.com/nice-url-here, and would end up being
passed to the application server under the bonnet as
www.domain.com/myfile.cfm?page=nice-url-here or whatever you choose.

There should be numerous tutorials on the web for doing this...

David


> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED] 
> Sent: 16 November 2006 13:41
> To: CF-Talk
> Subject: RE: Search Engine Friendly URLS
> 
> Ivan,
> 
> I do this via a 404 error:
> 
> http://www.bennadel.com/index.cfm?dax=blog:286.view 
> 
> Currently though, I create the URL manually though:
> 
> 
> 
>  Href="domain.com/news/#REReplace( qNews.title, "[^\w]+", "-", "ALL"
> )#.htm"
> >#qNews.title#
> 
> 
> 
> So, no auto-created URLs, but I can catch pretty urls.
> 
> ..
> Ben Nadel
> Certified Advanced ColdFusion MX7 Developer www.bennadel.com
>  
> Need ColdFusion Help?
> www.bennadel.com/ask-ben/
> 
> -Original Message-
> From: Ian Vaughan [mailto:[EMAIL PROTECTED]
> Sent: Thursday, November 16, 2006 4:26 AM
> To: CF-Talk
> Subject: Search Engine Friendly URLS
> 
> Hi
> 
> Using Coldfusion is it possible to convert the following
> 
> domain.com/news/prdetail.cfm?id=2084
> 
> To Search Engine Friendly URL such as
> 
> domain.com/news/example_news_story
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260649
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Good Linux books

2006-10-31 Thread David Low
> From: Munson, Jacob [mailto:[EMAIL PROTECTED]
> Sent: 31 October 2006 16:17
> To: CF-Talk
> Subject: RE: Good Linux books
> 
> I'd agree, mainly because windows is a resource hog.  Why does Linux
> shared web hosting almos always cost less than Windows?  Because you
can
> stuff a lot more sites on a Linux server than a Windows server with
> identical hardware.  At least, that's what I've been told.

Of course the cost of the relevant Windows licensing would slightly
affect it too.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258571
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: date format problem

2006-10-31 Thread David Low
In what format are the original dates you're passing to the dateformat
function - entered via a form, coming from a database, or some other
way?

> -Original Message-
> From: Richard White [mailto:[EMAIL PROTECTED]
> Sent: 31 October 2006 14:52
> To: CF-Talk
> Subject: Re: date format problem
> 
> can i ask how other people get around the dateformat, or any
suggesstions
> on how i can get around it, as i am finding more and more that the
> dateformat function just doesnt work. it switches between formatting
my
> dates from dd/mm/ and mm/dd/ even though i specify a format of
> dd/mm/
> 
> i would really appreciate any help as i am a bit stuck and alot of my
> application is based around dates
> 
> thanks very much for any help
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258564
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Insert Data CFC

2006-10-30 Thread David Low
> From: Matthew Irwin [mailto:[EMAIL PROTECTED]
> Sent: 30 October 2006 10:36
> To: CF-Talk
> Subject: Insert Data CFC
> 
> I have a cfc that I invoke to show the price of an item. Can I use the
> same cfc to place the price in a table.

Yep, just place the query in a separate function.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258414
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Developer Edition - Remote IP

2006-10-25 Thread David Low
Tried that, still blocked the second person from accessing.  Nobody else
has accessed the machine remotely...

> -Original Message-
> From: Andy Allan [mailto:[EMAIL PROTECTED]
> Sent: 25 October 2006 15:53
> To: CF-Talk
> Subject: Re: Developer Edition - Remote IP
> 
> Restart CF.
> 
> On 25/10/06, David Low <[EMAIL PROTECTED]> wrote:
> > We've got a genuine need to try and change the remote IP which has
been
> > set up for a developer edition of CFMX (6.1).  Having trawled the
> > settings and registry, I can't find any trace of the IP which was
> > accidentally used.
> >
> > Any ideas if it's possible to change this, once a remote IP has
> > connected to the dev machine?  Without needing a reinstall, that is.
> >
> > David
> >
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258005
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Developer Edition - Remote IP

2006-10-25 Thread David Low
We've got a genuine need to try and change the remote IP which has been
set up for a developer edition of CFMX (6.1).  Having trawled the
settings and registry, I can't find any trace of the IP which was
accidentally used.

Any ideas if it's possible to change this, once a remote IP has
connected to the dev machine?  Without needing a reinstall, that is.

David


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257998
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Documents within CFDocument

2006-10-23 Thread David Low
iText libraries could probably do it, with a wee home-made Java class.

> -Original Message-
> From: Henry Wright [mailto:[EMAIL PROTECTED]
> Sent: 23 October 2006 11:21
> To: CF-Talk
> Subject: Re: Documents within CFDocument
> 
> How can you get Acrobat or ActivePDF to do it on a webpage?
> 
> 
>  CFDocument can't do that.  Acrobat can do it.  *MAYBE* ActivePDF..
but
> >
> > not CFDocument.
> >
> > Rick
> >
> > Henry Wright wrote:
> > > I have been working with CFDocument for a while now and I am quite
> > happy with the way it works. There is one final thing that I am now
> > failing to accomplish. Creating a document within a document or
> > creating a document with thumbnail sections split by contents, e.g
> > >
> > > left hand margin containing thumbnails that are linked to each
part
> > of the document, split by chapters.
> > >
> > > Any ideas? I have seen it done somewhere, but would love to know
how
> > to code it.
> > >
> > >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257727
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Rate your favorite coldfusion framework

2006-10-20 Thread David Low
It comes free with every copy of CF.

> -Original Message-
> From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED]
> Sent: 20 October 2006 14:23
> To: CF-Talk
> Subject: Re: Rate your favorite coldfusion framework
> 
> Where can i download that one ?? ;)
> 
> On 20/10/06, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
> >
> > Agreed 110%
> >
> > -Original Message-
> > From: Casey Dougall [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 20, 2006 8:40 AM
> > To: CF-Talk
> > Subject: Re: Rate your favorite coldfusion framework
> >
> > This is an easy one! How about none!
> >
> > Casey
> >
> > --
> > No virus found in this outgoing message.
> > Checked by AVG Free Edition.
> > Version: 7.1.408 / Virus Database: 268.13.6/486 - Release Date:
> 10/19/2006
> >
> >
> >
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257576
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Coldfusion Portal application

2006-10-18 Thread David Low
The beauty of CF has always been that you could do this very quickly
yourself, without having to rely on buggy open-source projects which do
more than most people would ever need, need some horrible PHP hacking to
work properly, and look the same as 1001 other sites.

There have been some CF versions of things like Nuke in the past but
they've never really taken off.

> -Original Message-
> From: Ali Majdzadeh [mailto:[EMAIL PROTECTED]
> Sent: 18 October 2006 11:03
> To: CF-Talk
> Subject: Coldfusion Portal application
> 
> Hi: There are many many portals made with PHP or .Net with many
features
> but coldfusion portals look very basic. Is there any advanced CF
protal
> out there? Or does any company/programmer team work on a CF portal
that
> can compete with others?


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257141
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF blog application

2006-10-17 Thread David Low
Personally I prefer a combination of some customized CF code and
Wordpress.  I use WP for the back-end, since it's absolutely excellent -
but think that my own CF skin is far easier to maintain at the
front-end.

You'd need to have PHP available on the server as well as CF though.

> -Original Message-
> From: Russ [mailto:[EMAIL PROTECTED]
> Sent: 17 October 2006 15:33
> To: CF-Talk
> Subject: RE: CF blog application
> 
> Ray's Blog is great, but it seems very basic.  (No offense Ray).  I'm
sure
> it was done to keep it bug free.
> 
> If you want some extra bells and whistles, try Rick Root's BlogCFM
> (www.blogcfm.org).  Brought to you by the same guy who brought you
> ImageCFC.
> 
> 
> I'm actually evaluation a blog package as well for an app we're
building
> now.  The reason I like Rick's stuff is that he has embedded html
editors
> which are part of the requirements.
> 
> Does anyone have any feedback blogCFC vs blogCFM?
> 
> Russ
> 
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, October 17, 2006 9:58 AM
> > To: CF-Talk
> > Subject: Re: CF blog application
> >
> > If you do use MS Access, do not use the "with Unicode" driver.
> > Although it's best to just not use MS Access at all. :)
> >
> > On 10/17/06, Nick Tong - TalkWebSolutions.co.uk <[EMAIL PROTECTED]>
> > wrote:
> > > +1 for blogcfc
> > >
> > > On 17/10/06, Tom King <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Ray Camdens BlogCFC
> > > > :)
> > > >
> > > > On 17 Oct 2006, at 12:40, Ali Majdzadeh wrote:
> > > >
> > > > > Hi: I need a blog application in cfm with ms-access or ms-sql
(for
> > > > > personal use). Do you know a good one?
> > > > > thanks
> > > > > Benign
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257016
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: video hosting?

2006-10-16 Thread David Low
> From: Jim Wright [mailto:[EMAIL PROTECTED]
> Sent: 16 October 2006 15:02
> To: CF-Talk
> Subject: Re: video hosting?
> 
> I asked some questions about video a while back, so you might want to
> look at the answers I got:
> http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:44847
> http://www.houseoffusion.com/groups/CF-Talk/thread.cfm/threadid:44848
> 
> I looked at playstream.com, but we finally just decided to set up a
> regular hosting account at a host that I knew had good pipes and
> reasonable prices (pair.com).  We pointed a subdomain at that hosting
> account and pulled any videos (all wmv) from there.

Thanks Jim, I'll take a look.

I have a good hosting service in the UK with a very good bandwidth
allowance which would cover all the videos.  However I need them to be
streamed properly (Windows Media or preferably Flash) rather than
progressive download.  Tried to get a couple of quotes from Macromedia's
preferred Flash video partners and got no replies!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256899
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: video hosting?

2006-10-16 Thread David Low
Can I join in with this request?  Just set up a video streaming site,
and had a lot of problems streaming higher-res vids (low-res worked fine
though).

Currently using Streamhoster - their service is fine but the performance
could be better.


> -Original Message-
> From: Ray Champagne [mailto:[EMAIL PROTECTED]
> Sent: 16 October 2006 14:39
> To: CF-Talk
> Subject: video hosting?
> 
> We have a client who is asking us our advice for hosting of a site
that
> will
> be streaming a lot of video.  Basically, the site is going to host
virtual
> tours for Real Estate.  His requirements are that the host has enough
> bandwidth to handle a lot of video requests, and have a large pipe so
that
> the video streams out as fast as possible.  I never deal with video,
so
> I'm
> hoping someone out here might have some relevant experience.
> 
> 
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: download as pdf

2006-10-12 Thread David Low
I've done this in 6.1 with the use of iText classes - took a couple of
days but was well worth it.

Good blog post on the subject at:
http://cephas.net/blog/2004/03/14/using-itext-pdf-coldfusion/


> -Original Message-
> From: Ali Majdzadeh [mailto:[EMAIL PROTECTED]
> Sent: 12 October 2006 12:55
> To: CF-Talk
> Subject: download as pdf
> 
> Is it possible to generate pdf file in CFMX (6)?
> I have a form that users should fill and print and post. I wonder if
it is
> possible that they fill it in a .cfm form and then download it as pdf
and
> print it.
> If it is not possible in cf6 I can change my hosting and buy a cf7 but
> another problem is the fromat of the pdf file completely predictable.
I
> mean the form that should be printed and posted should have special
format
> (fornt and lines) and the specific number of fields should be in each
page
> of printed page. So is it possible to make that?
> Thanks
> benign
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256497
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IDE's

2006-10-11 Thread David Low
HS 5.5 is an upgrade from + (was HS+ not a freebie with Dreamweaver MX?)

> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: 11 October 2006 15:35
> To: CF-Talk
> Subject: RE: IDE's
> 
> I am not sure... I think 5.5 might be an upgrade from +... But I use
the
> name interchangeably.
> 
> ..
> Ben Nadel
> Certified Advanced ColdFusion Developer
> www.bennadel.com
> 
> 
> -Original Message-
> From: Rick Faircloth [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 11, 2006 10:25 AM
> To: CF-Talk
> Subject: RE: IDE's
> 
> I've been using HomeSite 5.5 for years for tweaking code...(I'm a
visual
> designer / developer, so I work through a visual interface primarily),
> but I've heard others refer to HomeSite "Plus" so often, I wonder if
> that's a completely different (or later) version of HomeSite 5.5...
> 
> Rick
> 
> 
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 11, 2006 9:40 AM
> To: CF-Talk
> Subject: RE: IDE's
> 
> > I will probably get slammed for this, but I have been using
> > HomeSite+ for ever and it is the best ColdFusion editor that
> > I have ever worked with... Ever! I have tried Dreamweaver, Eclipse,
> > and a bunch of other stuff out there, but they just can't hold a
light
> 
> > to HomeSite+ for its speed, ease of use, and most excellent extended
> > Find/Replace. Plus I just feel that the interface is cleaner and
more
> > responsive.
> 
> I know everyone here hates Dreamweaver, but its find and replace is
far
> better than that of Homesite+.
> 
> 
> 
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:256309
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFHTTP over HTTPS

2006-10-03 Thread David Low
Happened to me once on a project where the site being grabbed by CFHTTP
had a very slight change in its certificate - so that it no longer
matched the domain (browsing directly produced a challenge alert).  Had
to manually set up the certificate as you did here, and it worked fine
after that.

> -Original Message-
> From: Snake [mailto:[EMAIL PROTECTED]
> Sent: 03 October 2006 10:43
> To: CF-Talk
> Subject: RE: CFHTTP over HTTPS
> 
> I have now imported the cert into the JVM keystore and it now works
fine.
> So I have no idea how it was working before.
> 
> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: 03 October 2006 10:16
> To: CF-Talk
> Subject: Re: CFHTTP over HTTPS
> 
> I have only ever seen it break when you get a challenge from the cert,
> such
> as when it is not from a CA etc.
> 
> 
> 
> 
> 
> "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 for the exclusive use
of
> the
> intended recipient(s).  If you are not the intended recipient(s)
please
> note
> that any form of distribution, copying or use of this communication or
the
> information in it is strictly prohibited and may be unlawful.  If you
have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed
Exhibitions."
> Visit our website at http://www.reedexpo.com
> 
> -Original Message-
> From: James Holmes
> To: CF-Talk
> Sent: Tue Oct 03 10:10:50 2006
> Subject: Re: CFHTTP over HTTPS
> 
> If the cert expires, an error message is generated as it's technically
not
> valid.
> 
> What happens if you manually browse to the URL with https://...?
> 
> On 10/3/06, Snake <[EMAIL PROTECTED]> wrote:
> > How would this stop CFHTTP working?
> >
> >
> > -Original Message-
> > From: James Holmes [mailto:[EMAIL PROTECTED]
> > Sent: 03 October 2006 09:32
> > To: CF-Talk
> > Subject: Re: CFHTTP over HTTPS
> >
> > Perhaps the SSL cert expired?
> 
> --
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:255132
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfajax

2006-10-02 Thread David Low
You need to look for "Mappings", that should work for you.

> -Original Message-
> From: Richard White [mailto:[EMAIL PROTECTED]
> Sent: 02 October 2006 16:04
> To: CF-Talk
> Subject: cfajax
> 
> i am wondering if anyone uses cfajax.
> 
> I am having problems installing it. i use the colfdfusion mx7
developer
> edition with a built in web server
> 
> it says that i need to set up a virtual directory on my web server. i
have
> gone to the cf admininstrator and cant find where i can add a virtual
> directory
> 
> thanks for any help
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254997
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CF vs. .NET presentations?

2006-09-29 Thread David Low
You'd have to update that a bit - Windows Server 2003 was 'upcoming'
about four years ago :-)

> -Original Message-
> From: Doug Brown [mailto:[EMAIL PROTECTED]
> Sent: 29 September 2006 13:18
> To: CF-Talk
> Subject: Re: CF vs. .NET presentations?
> 
> Coldfusion
> 
> Web Server Support
> Supports IIS, Sun ONE, Netscape IPlanet, and Apache.
> 
> Operating System Support
> Supports Windows, Linux, Solaris, and HP-UX.
> 
> ..Net
> 
> Web Server Support
> Supports IIS and Covalent's commercial version of Apache 2.0.
> 
> Operating System Support
> Currently supports Microsoft Windows(r) 2000, Windows XP, and the
> forthcoming
> Windows Server 2003.
> 
> That all you need!!
> - Original Message -
> From: "Peter Boughton" <[EMAIL PROTECTED]>
> To: "CF-Talk" 
> Sent: Friday, September 29, 2006 6:00 AM
> Subject: Re: CF vs. .NET presentations?
> 
> 
> > This has never failed to work for me:
> > Slide 1: .NET is a pile of poo!
> > Slide 2: CF is wonderful!!!
> > The End.
> >
> > ;)
> >
> >
> > Alternatively, you could go for the "both" option, with
BlueDragon.NET
> > http://www.newatlanta.com/products/bluedragon/index.cfm
> >
> >
> >
> >
> >
> > > Hi,
> > >
> > > Have any of you done a presentation to justify using CF over .NET?
A
> > > friend of mine just got a big contract, but the owner wants it to
be
> > > done in .NET.  My friend is trying to convince him to let him do
it in
> > > CF.  If you have done a similar presentation, would you please
give us
> > > some pointers?  Thanks.
> > >
> > Johnny
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254719
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfset hyperlink

2006-09-26 Thread David Low
You need to escape your quote marks - the  statement is
terminating too early.

> -Original Message-
> From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
> Sent: 26 September 2006 16:17
> To: CF-Talk
> Subject: cfset hyperlink
> 
> All,
> 
> I thought this would be simple, but it's not working.  I want to
> set a varaible with a string that contains a hyperlink in it.
> 
> http://www.site.com";>http://www.site.com">
> 
> Thoughts?
> 
> D
> 
> D
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:254225
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: NFL Player Stats Service

2006-09-22 Thread David Low
> From: Tom Chiverton [mailto:[EMAIL PROTECTED]
> Sent: 22 September 2006 14:59
> To: CF-Talk
> Subject: Re: NFL Player Stats Service
> 
> You could have gone and seen it yourself. Or your friend could have.
> 

I wouldn't dispute that.

The biggest nonsense of all is fixture lists in the UK - they're 'owned'
by a third party which in turn pays the football leagues a royalty.  No
site is allowed to show more than 1 fixture ahead of the current date,
without a license - and they protect the rights very strongly.

However surely once the fixtures are published, they're in the public
domain?  It's not like they're going to change too often.  Cup draws are
free to use, because they nearly always get drawn in public.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253840
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: NFL Player Stats Service

2006-09-22 Thread David Low
> From: Tom Chiverton [mailto:[EMAIL PROTECTED]
> Sent: 22 September 2006 12:02
> To: CF-Talk
> Subject: Re: NFL Player Stats Service
> 
> It's on their web site, freely accessable, no ?
> Tough - you are free to do what you want with it.

You'd have a hard job proving that one in court, I suspect.  

Some data is so obviously 'open source' that you could scrape it with no 
problem.  I was once asked for nearly £20k to have football league tables 
supplied, via SQL Server, from the Press Association.  However since these are 
calculated based on freely-available results, there's very little stopping you 
from scraping them and saying you did the calculations yourself.

However there aren't many places that can tell you the colour of shirt for 
every team that kicked the ball last in every football game in the UK each week 
(as the Press Association provides to bookmakers) so if you nicked something 
like that from a site, they'd know fine if you had a license to use it or not.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253820
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: How to get these query results - Take 2

2006-09-20 Thread David Low
The test page works OK with a "www." added:

http://www.fclounge.cfdeveloper.co.uk/test.cfm

> -Original Message-
> From: Matt Williams [mailto:[EMAIL PROTECTED]
> Sent: 20 September 2006 14:59
> To: CF-Talk
> Subject: Re: How to get these query results - Take 2
> 
> Rich, you are right in that I want the event with the furthest/newest
> date to show first. But if there is another date associated with that
> newest event, it should also show under its title. Your solution looks
> like it will work. I'll give it a try and let you know.
> 
> I am hoping to find a "bit more clever" solution too as this is
> actually an OO-style app where I hope to have a CFC return the query
> results for me. I suppose I could just build a new query with QueryNew
> instead of the output as you show.
> 
> BTW, your test.cfm page wouldn't load for me. Server not found error.
> 
> Thanks,
> Matt
> 
> On 9/20/06, RichL <[EMAIL PROTECTED]> wrote:
> > Matt
> >
> > You can try the following. It seems to work... my gut feeling tells
me
> > there may be an easier way with less queries but I can't think of
> > anything right now. You may want to consider caching queries for
speed
> > depending on how much the data is changing.
> >
> > 
> >  > cachedwithin="#createTimeSpan(0,1,0,0)#" result="a">
> > select *
> > from tblEventName evName
> > inner join tblEventDate evDate
> > on evName.eventID = evDate.eventID
> > 
> >
> > 
> >  > cachedwithin="#createTimeSpan(0,1,0,0)#" result="b">
> > select eventname,tbleventdate.eventid, max(eventdate) as
> tempdate
> > from tbleventdate
> > inner join tbleventname
> > on tbleventdate.eventid = tbleventname.eventid
> > group by eventname, tbleventdate.eventid
> > order by max(eventdate) desc, tbleventdate.eventid
> > 
> >
> > 
> > 
> > 
> > 
> > 
> >
> > 
> > 
> >
> > #eventname#
> >
> >  ->
> > 
> > select eventDate
> > from getAllEvents
> > where eventID = #eventID#
> > order by eventDate desc
> > 
> >
> > 
> > 
> > #dateformat(eventDate,"m/dd/")#
> > 
> >
> > 
> >
> > You can see the results here which I think is where you are trying
to
> get to? :
> >
> > http://fclounge.cfdeveloper.co.uk/test.cfm
> >
> > My feeling is that there is something a bit more clever can be done
> > with SQL/grouping but this may give you something to work with ?
> >
> > Rich
> >
> > On 9/20/06, Matt Williams <[EMAIL PROTECTED]> wrote:
> > > I'm gonna try this again as while I slept last night my previous
post
> > > turned into a discussion of SQL best practices and did not give
the
> > > answer needed. But that's probably because I didn't explain well
> > > enough. Ordering by EventID will not work. Nor will ordering by
date.
> > > Maybe a little more data will help.
> > >
> > > EventID, EventName
> > > 1 | TestEventOne
> > > 2 | TestEventTwo
> > > 3 | AThirdEvent
> > >
> > > EventID | EventDates
> > > 1 | 9/10/2006
> > > 1 | 9/20/2006
> > > 2 | 9/15/2006
> > > 3 | 9/30/2006
> > >
> > > 
> > > AThirdEvent
> > >  9/30/2006
> > >
> > > TestEventOne
> > >  9/20/2006
> > >  9/10/2006
> > >
> > > TestEventTwo
> > >  9/15/2006
> > >
> > > If you order by EventID, you would get 1, 2, 3. If you ordered by
Date
> > > DESC, you would get
> > > 3
> > > 1
> > > 2
> > > 1
> > > But I want the TestEventOne outputs to be together. GroupBy won't
do
> > > it because you've ordered by date.
> > >
> > > This probably isn't possible without at least two queries, or at
least
> > > some QofQ usage. I just can't seem to get my head around the
solution
> > > though.
> > >
> > > --
> > > Matt Williams
> > > "It's the question that drives us."
> > >
> > >
> >
> >
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253605
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Reliability

2006-09-15 Thread David Low
My last workplace had 2 CF servers (Windows, hardware load-balanced),
with traffic of around 1m query-generated page views per day.  A lot of
the leg-work was performed by MS SQL in the background, but the CF
servers held up very well.  They only really needed a restart if the
traffic went absolutely crazy, and half the time it was IIS causing
trouble rather than CF.


> -Original Message-
> From: Brad Wood [mailto:[EMAIL PROTECTED]
> Sent: 15 September 2006 14:56
> To: CF-Talk
> Subject: RE: Reliability
> 
> One of our websites is hardware load balanced across 5 Linux servers
and
> we process about 80,000 page hits and half a million queries a day.  I
> don't really know how that compares to most places though.  I'm sure
we
> could get away with leaving CF running (Heck Linux will run for many
> months without an OS restart), but we got ourselves in the habit a
> nightly CF restart out of cautiousness I guess.
> 
> ~Brad
> 
> -Original Message-
> From: Peterson, Chris [mailto:[EMAIL PROTECTED]
> Sent: Friday, September 15, 2006 8:43 AM
> To: CF-Talk
> Subject: RE: Reliability
> 
> The only time I ever bring down CF is on my dev box when I write
> something retarded.  My production server provides 5000 reports /
pages
> a day and will often go months without a hitch.
> 
> Chris
> 
> -Original Message-
> From: Brad Wood [mailto:[EMAIL PROTECTED]
> Sent: Friday, September 15, 2006 9:27 AM
> To: CF-Talk
> Subject: RE: Reliability
> 
> We restart CF services on each of our production servers every night.
> 
> Is that a common practice elsewhere?
> 
> ~Brad
> 
> -Original Message-
> From: Andy Matthews [mailto:[EMAIL PROTECTED]
> Sent: Friday, September 15, 2006 8:17 AM
> To: CF-Talk
> Subject: RE: Reliability
> 
> I'd be interested in hearing more about this topic too. Our two
> sysadmins curse CF all the time "because it's buggy and it crashes all
> the time and it sucks." I know that it CAN'T just be CF and I've asked
> our owner to bring in a consultant to tune our CF setup but he refuses
> saying "they know what they're doing, it's just bad code.".
> 
> There are plenty of cases where it IS bad code, but that can't be the
> only reason.
> 
>  andy matthews
> 
> 
> 
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:253250
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Free Coldfusion Hosting that lets me connect to MS Access Database

2006-09-08 Thread David Low
> From: Charlie Griefer [mailto:[EMAIL PROTECTED]
> Sent: 08 September 2006 15:52
> To: CF-Talk
> Subject: Re: Free Coldfusion Hosting that lets me connect to MS Access
> Database
> 
> well, the fact of the matter is that there is no free CF hosting
> (AFAIK).

Erm... http://www.cfdeveloper.co.uk might do the trick.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252553
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-08 Thread David Low
I'd go along with that - the maximum I've been able to start the service
with, was 1.3.  It depends on other settings as well.

> -Original Message-
> From: Snake [mailto:[EMAIL PROTECTED]
> Sent: 08 September 2006 09:35
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> I have generally read that you can't set it much over 1gb, maybe 1.2
or
> 1.3
> Obviously this requires tweaks elsewhere as I have tried using values
> greater than 1GB and JRUN will not start
> 
> -Original Message-
> From: Robertson-Ravo, Neil (RX)
> [mailto:[EMAIL PROTECTED]
> Sent: 08 September 2006 07:16
> To: CF-Talk
> Subject: Re: IIS 500 - Internal Server Error
> 
> Isn't the theoretical limit supposed to be 2GB with the actual limit
> somewhere in the region of 1.8? I know I have seen a JVM start with at
> least
> 1.5GB - could have been more, I can't remember.
> 
> 
> 
> 
> 
> 
> 
> "This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
> Richmond, Surrey, TW9 1DL, 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 for the exclusive use
of
> the
> intended recipient(s).  If you are not the intended recipient(s)
please
> note
> that any form of distribution, copying or use of this communication or
the
> information in it is strictly prohibited and may be unlawful.  If you
have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed
Exhibitions."
> Visit our website at http://www.reedexpo.com
> 
> -Original Message-
> From: Snake
> To: CF-Talk
> Sent: Thu Sep 07 21:13:07 2006
> Subject: RE: IIS 500 - Internal Server Error
> 
> Not forgetting that if this is a windows 32bit machine, you can only
give
> JVM 1GB ish of that 4gb And if your running with the default settings
then
> CF only has 512mb to play with.
> 
> Russ
> 
> -Original Message-
> From: Mark A Kruger [mailto:[EMAIL PROTECTED]
> Sent: 07 September 2006 20:33
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> Kevin,
> 
> No so unusual The JVM is controlled by the heap size and java.args
in
> your jvm.config file - NOT by the physical amount of memory on the
> machine..
> 
> -Mark
> 
> 
> -Original Message-
> From: Kevin Aebig [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 07, 2006 1:54 PM
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> java.lang.OutOfMemoryError after some string cleaning.
> 
> Which is kind of funny on a PowerEdge Quad with 4GB of RAM...?
> 
> !k
> 
> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 07, 2006 12:12 PM
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> Kevin,
> 
> What I would starting doing is putting
> 
> 
> 
> 
> Right after your application tag.. If that works (you see HERE on the
> browser page), then cut it out and move it farther down the page
> processing.
> 
> 
> Keep doing this until you no longer see HERE, but in fact see the 500
> error.
> Now you know that whatever is causeing the error is between the
current
> CFDUmp and wherever the last CFDUMP was.
> 
> 
> Ben Nadel
> www.bennadel.com
> Certified Advanced ColdFusion Developer
> 
> Need Help?
> www.bennadel.com/ask-ben/
> 
> 
> -Original Message-
> From: Kevin Aebig [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 07, 2006 2:06 PM
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> I looked through your posts and tried flushing the output to no avail.
> 
> I'm going to look over the page and the data for the 400th time, but
I'm
> not
> to optimistic at this point.
> 
> !k
> 
> -Original Message-
> From: Ben Nadel [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 07, 2006 11:47 AM
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> Just in case it is a 500 null error, here are some issues that I have
had
> to
> address:
> 
>
http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm
> 
>
http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm
> 
> These are all COLDFUSION errors ... Well actually MY errors in
ColdFusion
> to
> be fair :)
> 
> ..
> Ben Nadel
> www.bennadel.com
> Certified Advanced ColdFusion Developer
> 
> Need Help?
> www.bennadel.com/ask-ben/
> 
> 
> 
> -Original Message-
> From: Snake [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 07, 2006 1:35 PM
> To: CF-Talk
> Subject: RE: IIS 500 - Internal Server Error
> 
> I was having the same thing this week.
> A developer working off my dev server, kept getting  the internal
server
> error for one specific page, yet it worked fine for me all the time.
> 
> 
> -Original Message-
> From: Ben Nadel [mailt

RE: can you resolve this domain?

2006-09-06 Thread David Low
> From: Josh Nathanson [mailto:[EMAIL PROTECTED]
> Sent: 05 September 2006 22:43
> To: CF-Talk
> Subject: OT: can you resolve this domain?
> 
> http://www.igigi.com

Works on a BT leased line in Scotland - wish I hadn't opened the page in
the office though!


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252199
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Replying after the message

2006-09-06 Thread David Low
> From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
> Sent: 06 September 2006 13:01
> To: CF-Talk
> Subject: Re: Replying after the message
> 
> That isn't very convincing from somebody with a 15 line signature.

There's an RFC about that, too :-)


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252198
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Adding encryption algorithm to MX

2006-09-01 Thread David Low
Ditto what Leon says - in a previous project we needed to get encryption
into 6.1, so we used some standard Java classes to do it.  Wasn't that
difficult and came completely free.

David

> -Original Message-
> From: Leon Oosterwijk [mailto:[EMAIL PROTECTED]
> Sent: 01 September 2006 14:48
> To: CF-Talk
> Subject: RE: Adding encryption algorithm to MX
> 
> Doug,
> 
> Before we switched to MX7 we needed RSA, so we rolled our own wrapper
> around the Bouncy Castle Encryption library.  Email me off-list if
> you're interested.
> 
> Leon
> 
> 
> -Original Message-
> From: Doug Boude (rhymes with 'loud') [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 31, 2006 12:33 PM
> To: CF-Talk
> Subject: Adding encryption algorithm to MX
> 
> Hi all. I need to make the RSA encryption algorithm available within
CF
> in order to connect with a client using Single Sign On. The two
options
> I see at this point are:
> 
> 1. extend the encryption algorithms available to the Encrypt function;
> 2. purchase a custom tag and put it in place for use
> 
> I would like to solicit others' opinions about which way I ought to
> proceed and sources of third party products, based on the community's
> experience in this arena. The points and counterpoints I'm exploring
> right now are:
> 
>  - to extend the Encrypt function, I'll need to purchase and configure
a
> java security package. So far I've only found one, and they wanted 20
> grand for it. Anybody know of an RSA java package that doesn't cost
more
> than my Jeep?
> 
>  - I've found at least two custom tags that *look* like they'll do
what
> I need, each around $100. With such a price gap between a custom tag
and
> the security package, what functionality would I be missing by
choosing
> the cheaper route?
> 
>  - Anybody already been through this or a similar scenario, having to
> add to the algorithms available to CF and can share some of the
gotchas
> or shortcuts they discovered?
> 
> Thanks all.
> 
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:251754
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4