Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Kym Kovan
I would surmise that you have some sort of feedback loop happening. A recursive tag that lost the plot maybe? Have you tried looking at memory usage as the code normally runs? Kym K On 23/02/2011 10:57, Taco Fleur wrote: Hello Carl, thanks for that. I've been looking in the logs around the

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Taco Fleur
You would think that, but let's not forget that this has all been running for more than several months without changes on a Windows 2003/IIS6/CF8 machine. An infinite loop I can debug, but this is out of my league. On Wed, Feb 23, 2011 at 10:03 AM, Kym Kovan dev-li...@mbcomms.net.auwrote: I

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Paul Kukiel
Did you have specific JVM arguments on the CF8 box? Paul On 23/02/2011 11:12 AM, Taco Fleur wrote: You would think that, but let's not forget that this has all been running for more than several months without changes on a Windows 2003/IIS6/CF8 machine. An infinite loop I can debug, but

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Taco Fleur
No, that was all left as default. On Wed, Feb 23, 2011 at 10:45 AM, Paul Kukiel kuki...@gmail.com wrote: Did you have specific JVM arguments on the CF8 box? Paul On 23/02/2011 11:12 AM, Taco Fleur wrote: You would think that, but let's not forget that this has all been running for more

[cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Carl
“Java heap space” - sounds like JVM issue not withstanding a CFM CFC working poorly. It is fair to say on 64 bit the memory consumed by the heap and non heap for that matter is more than on 32 bit. Sometimes the error can mean the initial memory settings not necessarily the maximum. There are

[cfaussie] Way OT : chalet at the snow

2011-02-22 Thread Steve Onnis
This is way OT but thought i would put it out there. Does anyone have or know of someone who has a chalet at any of the snow resorts in victoria they would hire out for a weekend? Hoping for around 10-12 beds J -- You received this message because you are subscribed to the Google Groups

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Kym Kovan
On 23/02/2011 11:12, Taco Fleur wrote: You would think that, but let's not forget that this has all been running for more than several months without changes on a Windows 2003/IIS6/CF8 machine. and CF9 is subtly different. I think a look at memory usage is in order as if it is running out of

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Taco Fleur
Hi Carl, I don't really understand all of that, never really got down into the nitty gritty of whats behind CF. I compared my CF Admin settings with the old one and they are both the same. On Wed, Feb 23, 2011 at 10:49 AM, Carl ca...@tassweb.com.au wrote: “Java heap space” - sounds like JVM

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Zac Spitzer
how big is your database? do you have some queries which return a lot of data? sometimes CF doesn't recover very well after loading a large dataset into memory z On Wed, Feb 23, 2011 at 12:15 PM, Taco Fleur taco.fl...@clickfind.com.au wrote: Hi Carl, I don't really understand all of that,

[cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Carl
Hi Taco, Some logging would be good to know what happening or maybe you can just try this. 1) Take a backup copy of jvm.config (in CF\runtime\bin) 2) Edit jvm.config and set an initial setting and larger maximum eg: # Arguments to VM java.args=-server -Xms512m -Xmx1024m

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Taco Fleur
Thanks for that. Is this to set the minimum to 512 and max to 1024? If so, I actually started out with that and changed it back to 128 / 512 Just enabled server monitoring and server became unresponsive :-) Let's see if the log tells me anything. On Wed, Feb 23, 2011 at 11:22 AM, Carl

[cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Taco Fleur
Anyone using IIS7 URL Rewrite and then getting access to the original requested URL in CF? If so, how? I did a few tests with it and at first glance I don't get access to the original requested URL. I'm wanting to replace the 404 handler I use to get the nice pretty URLs.. -- Kind regards, Taco

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
I really don't know why people are still using the url rewrite stuff. You can do the same thing using the onMissingTemplate() method and handle it all from the cfml side, and it is cross platform From: Taco Fleur [mailto:taco.fl...@clickfind.com.au] Sent: Wednesday, 23 February 2011 12:33 PM

Re: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Taco Fleur
I'm trying to use it so that I don't get errors logged in CF... I would assume that using what you're suggesting is creating an error in the log? On Wed, Feb 23, 2011 at 11:38 AM, Steve Onnis st...@cfcentral.com.auwrote: I really don’t know why people are still using the url rewrite stuff. You

Re: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Kai Koenig
I tell you why - to let the HTTP server do what it can do best and avoid having your request get to CF in the first place if it's unnecessary. Mod_rewrite and Helicon ISAPI Rewrite are awesome and the RegExps one write are pretty much cross platform. IIS 7 built-in URL rewrite (obviously, it's

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
I have never seen it log cf errors unless the template actually errors From: Taco Fleur [mailto:taco.fl...@clickfind.com.au] Sent: Wednesday, 23 February 2011 12:45 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] IIS7 URL Rewrite / CF I'm trying to use it so that I don't get

RE: [cfaussie] IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
The request is going to go to the cf server anyway. You wont get a request to a .cfm file never get to the cf server is the page does not exist anyway so you may aswell catch it and handle it yourself. From: Kai Koenig [mailto:k...@koeni.de] Sent: Wednesday, 23 February 2011 12:59 PM To:

[cfaussie] Re: IIS7 URL Rewrite / CF

2011-02-22 Thread Justin Carter
When you use URL rewriting the request that gets through to the web server is the rewritten URL. You can't see the original URL unless you craft your URL rewriting to pass through the original URL as a parameter. e.g. in FarCry with friendly URLs we turn this: /some/path/to/a/page into this:

RE: [cfaussie] Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread charlie arehart
Taco, if you're still in need (after all the back and forth), I'll say that yes, this is the kind of think I do as an independent consultant, and I can work with you remotely and within that budget (because I do think I can solve it quickly). It's now 9:30pm my time in the US. Since I see you

RE: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread charlie arehart
Taco, there can be changes instead in the nature of requests coming into your server that can be at the root cause, or changes in things other than CF that you might never expect could impact it (though I realize you say no changes on the machine.) /charlie From: cfaussie@googlegroups.com

Re: [cfaussie] Re: IIS7 URL Rewrite / CF

2011-02-22 Thread Taco Fleur
Thanks, I think this will do the trick, excellent. Thanks On Wed, Feb 23, 2011 at 12:08 PM, Justin Carter justin.w.car...@gmail.comwrote: When you use URL rewriting the request that gets through to the web server is the rewritten URL. You can't see the original URL unless you craft your URL

RE: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread charlie arehart
Kym, I would warn anyone to think twice about your recommendation to Watch the memory tracking in the server monitor in CF admin and maybe you can get a clue. As much as I do love the CF Server Monitor for some things (and wrote a 4-part guide to using it, over 20 pages on the Adobe Dev Center,

RE: [cfaussie] Re: IIS7 URL Rewrite / CF

2011-02-22 Thread Steve Onnis
Where as using onMissingTemplate() you have access to it using ARGUMENTS.targetPage -Original Message- From: Justin Carter [mailto:justin.w.car...@gmail.com] Sent: Wednesday, 23 February 2011 1:09 PM To: cfaussie Subject: [cfaussie] Re: IIS7 URL Rewrite / CF When you use URL rewriting

Re: [cfaussie] Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Taco Fleur
OK, am back, you up for this now? You want to do skype chat? Google chat? PS. just to be sure, we agree a max of $200 for a solution Cheers Taco On Wed, Feb 23, 2011 at 12:29 PM, charlie arehart charlie_li...@carehart.org wrote: Taco, if you’re still in need (after all the back and forth),

RE: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread charlie arehart
I'd like to offer a caution about offering some suggested JVM arg changes in the form of the complete line as you have here, Carl. I realize you mean well, of course, and that you were conveying it as an example (since you say eg), but a casual user may just try to take them as is and drop them in

RE: [cfaussie] Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread charlie arehart
Yep. I'll drop you a note off-list. /charlie From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of Taco Fleur Sent: Tuesday, February 22, 2011 9:56 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some

Re: [cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Kym Kovan
On 23/02/2011 12:31, Taco Fleur wrote: Thanks for that. Is this to set the minimum to 512 and max to 1024? If so, I actually started out with that and changed it back to 128 / 512 Just enabled server monitoring and server became unresponsive :-) Let's see if the log tells me anything. This

[cfaussie] Re: Anyone able to troubleshoot CF9 / Win2008 / IIS7 for some pocket money?

2011-02-22 Thread Carl
Good advise much appreciated Charlie. Needle sharing yes that’s why I normally remember to say take a backup first so you got a clean copy you can revert to. Cheers, Carl. On Feb 23, 12:57 pm, charlie arehart charlie_li...@carehart.org wrote: I'd like to offer a caution about offering some