RE: Error with IE7 and CF8 ajax.js

2008-08-25 Thread Andrew Scott
It sounds like to me, that you need to use the on the calling page with the layout tag. Seems strange I know, but trust me you'll thank me for it. -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 9015 8628 Mobile: 0404 998 273 -Original Message- From: Dav

Re: PID errors - much simpler

2008-08-25 Thread Azadi Saryev
until i applied the recently updated cfimage hotfix i had experienced exactly the same behaviour. cf8 server would crash and restart when trying to do imagewrite after the image object has been manipulated in some way (resize, scale, add text, etc). so yes, try the updated hotfix: http://www.adobe.

Re: PID errors - much simpler

2008-08-25 Thread Cutter (CFRelated)
I was thinking that, if he was using cfimage (and heavily), that this new hotfix from last week might be worth trying. Doesn't reference that activity directly, but file locks could cause thread lock issues, which might indirectly bounce CF. http://kb.adobe.com/selfservice/viewContent.do?extern

Re: Coldfusion 8 on Linux Installation ( Linus ver. ie. Aspire One laptop )

2008-08-25 Thread Don L
>Anyone else? thoughts or opinions? > >>> Have you tried 'bare minimum' cf8 installation? Though I'm not sure if it would make a difference for cf8's RAM requirement. ~| Adobe® ColdFusion® 8 software 8 is the most important an

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
I'll probably go back to your approach, Charlie. I was working on that...looping the list from the shooter formfield...but figured something was wrong because my values were being combined in the HTML output. I was certain that should work, but the problem I didn't notice at the time was the nes

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
The problem turned out to be nested cfoutput's... And the solution for the insert query for the dynamic checkboxes that I've got working is: (The page submits back to itself, hence the session variables...)

Re: PID errors - much simpler

2008-08-25 Thread James Holmes
Because the OP says they "get the crash once in every ~10,000 attempts" which is probably the limit at which the hotspot compiler decided to compile the given class to native code. After the auto restart the same code works fine. It's a classic sign of this problem. On Tue, Aug 26, 2008 at 9:46 AM

Re: What am I missing???

2008-08-25 Thread Charlie Griefer
accidentally hit 'send' :\ that should have read: form page: action page: INSERT INTO Registrations ( shooter_id , tournament_id ) VALUES ( ,

Re: What am I missing???

2008-08-25 Thread Charlie Griefer
why not name the checkboxes the same, which will result in a comma-delimited list. then you only have to check for one checkbox. INSERT INTO Registrations ( shooter_id , tournament_id ) VALUES (

Re: PID errors - much simpler

2008-08-25 Thread Brad Wood
James, if the JVM crashes, it will certainly create a hs_err_pid file, but how do you know that the OP's problem is related to hotspot optimization? The talkingtree post says nothing about image manipulation, and there has got to be more than one reason for a JVM crash. ~Brad - Original Me

RE: What am I missing???

2008-08-25 Thread Rick Faircloth
I thought I had tried that, but I had tried it with value="#shooter_id[currentRow]#". The 's around the value was causing the values to append because I was already using Nested 's... bad boy. But now I realize that I've got to figure out how to specify the names of the checkboxes which are che

Re: PID errors - much simpler

2008-08-25 Thread James Holmes
These crashes are related to JVM hotspot optimisation. http://www.talkingtree.com/blog/index.cfm/2004/5/21/hscrashlog0504 Try updating your JVM, if possible. On Tue, Aug 26, 2008 at 6:23 AM, James Wolfe <[EMAIL PROTECTED]> wrote: > OK, > > So it appears I went a little too specific with my previ

Re: What am I missing???

2008-08-25 Thread Azadi Saryev
Matt's suggestion should work, but it really shouldn;t be necessary... do you have your cfoutput inside a cfloop or the other way around? what if you properly scope both recordcount and shooter_id with a query name? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/

Re: PID errors - much simpler

2008-08-25 Thread Brad Wood
The original thread is here: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:57386 James said this about his crashes: "We have been getting "small" coldfusion crashes (where CF restarts automatically) periodically on a couple of our servers and I think I have linked it to the ima

Re: PID errors - much simpler

2008-08-25 Thread Cutter (CFRelated)
I guess I didn't see the original thread. What's the bit about image manipulation? Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Brad Wood wrote: > Yes, I've gotten them when JRUN had

Re: What am I missing???

2008-08-25 Thread Brad Wood
Not quite following that. Can you paste the exact HTML being produced. Also, dump the query to make sure the shooter_id column contains what you think it does. Are you by chance doing any nested loops or cfoutputs? ~Brad - Original Message - From: "Rick Faircloth" <[EMAIL PROTECTED]>

Re: What am I missing???

2008-08-25 Thread Matt Quackenbush
~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/mes

What am I missing???

2008-08-25 Thread Rick Faircloth
This should not be hard to do... I've got a form with some checkboxes that are dynamically created from a query. I use cfoutput query = "get_unregistered" to build the form. The checkboxes are build like this: I would expect that to translate into rendered HTML as: But the values for th

Re: CFC Best Practices

2008-08-25 Thread William Seiter
>I've tried using the result.identitycol trick with CF8 and MSSQL and for >me, it doesn't work. I just get an error. > Not that it is the best approach, but the result.identitycol trick is a little 'tricky' eg. if you cfdump queryname, you will see the identity col, BUT if you try to get t

Re: CFHTTP and SSL

2008-08-25 Thread Mike Chabot
Is your cert self-signed or was it purchased from a place like Thawte? When you view that URL in a Web browser do you get any errors whatsoever about the SSL cert, such as an expired warning or a domain mismatch warning? If you want to confirm for yourself that cfhttp works with https, you can al

Re: PID errors - much simpler

2008-08-25 Thread Brad Wood
Yes, I've gotten them when JRUN had a hard crash, but it was never related to image manipulation. ~Brad - Original Message - From: "James Wolfe" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, August 25, 2008 5:23 PM Subject: PID errors - much simpler > OK, > > So it appears I went a

passing array from coldfusion to .NET web service

2008-08-25 Thread james carberry
Having problem passing complex data (i.e. an array) to a web service authored in .NET that expects data of type "array". Code: passing array to web service == keep getting the famous error - Web service operation ProcessMember

CFHTTP and SSL

2008-08-25 Thread Chad Fraser
I have been trying to figure this one out for days. I need to know if cfhttp works with https for Cold Fusion ver 8.01. I've searched the internet with no definitive answers. Below I have included some code that should work but it is not. It works when I change the url to http instead of https

PID errors - much simpler

2008-08-25 Thread James Wolfe
OK, So it appears I went a little too specific with my previous question. Here is a simpler version: Does anyone have files that look like this: hs_err_pid.log ( can be any number) in the following folder: c:\coldfusion8\runtime\bin ~~~

Re: Coldfusion 8 on Linux Installation ( Linus ver. ie. Aspire One laptop )

2008-08-25 Thread Don
Anyone else? thoughts or opinions? >I looked at it and it seems to come with 512MB, now about a week ago I tried >to Install ColdFusion on one of my old desktops and it would not start till >i put 1.5GB of ram. The Jrun just gives memory errors so..., I know on Adobe >it says Minimum of 512MB b

Re: cfhttp and Google Search Appliance

2008-08-25 Thread Kevin Stone
Thanks for your help Dave. Yes, the URL is http://IP:8000/EnterpriseController I don't expect you to do my job for me, but I have included my initial script below. Does anything jump out as being wrong? My code is probably not the best since I am still learning coldfusion.

Re: CF/SVN SOT question

2008-08-25 Thread denstar
On Mon, Aug 25, 2008 at 1:47 PM, Eric Roberts wrote: > When I worked at Discovery Education, we had a system that would take code > from the dev server (as selected on a web based screen that listed the > entire directory with checkboxes), commit it, merge it to the test > repository and updat

Re: cftimer does not work

2008-08-25 Thread Raymond Camden
Check the IP restrictions for db output in the admin. On Fri, Aug 22, 2008 at 12:15 PM, Developer MediaDoc <[EMAIL PROTECTED]> wrote: > Hi all, > > CF 8.01 Standard > Windows 2003 > > I cannot get cftimer to display anything -- dont think it is even running. > ~~~

Re: cftimer does not work

2008-08-25 Thread Developer MediaDoc
Anyone else experiencing this behaviour? Thanks, Matts >Hi all, > >CF 8.01 Standard >Windows 2003 > >I cannot get cftimer to display anything -- dont think it is even running. > >I HAVE checked the following boxes in CFADMIN >Debug Output Settings> >- Enable Robust Exception Information (CHECKED

Re: cfexchangecalendar result limits

2008-08-25 Thread Chris Brandt
I should have been more specific -- I wasn't actually using a filter. When I DID look at the filters, then I saw the 'maxrows' name/value in there (where the default is 100). So, to solve the problem, just add a and you should be good. I can't seem to find a way to say 'all of the rows' ~

Re: cfexchangecalendar result limits

2008-08-25 Thread Chris Brandt
Nope, no maxrows defined. I just get the first 100 results matching the filter (and there are far more than 100 results that would match) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

RE: Speculation: McCain as Secretary of Defense in an Obama White House

2008-08-25 Thread Adam Churvis
Just like the series finale of West Wing? Respectfully, Adam Phillip Churvis President Productivity Enhancement > -Original Message- > From: Scott Stewart [mailto:[EMAIL PROTECTED] > Sent: Monday, August 25, 2008 3:56 PM > To: CF-Talk > Subject: Speculation: McCain as Secretary of Defen

Error with IE7 and CF8 ajax.js

2008-08-25 Thread Dave Hatz
I have been working on a project that uses the new AJAX components that come with CF8 for the past 2 weeks. I have been using FF3 and Firebug and all is going along just dandy. Turn it over to one of my QA people and they test it on IE7 and no go. They get the following error : Unknown runt

Re: Speculation: McCain as Secretary of Defense in an Obama White House

2008-08-25 Thread Scott Stewart
Ignore this, I chose the wrong list.. Mike, if you would please move this to the proper list /me slinks away feeling rather sheepish and silly... Scott Stewart wrote: > I'm purely speculating here: > > I have no clue who's going to win, but if Obama wins and extends an > offer of the Secret

Speculation: McCain as Secretary of Defense in an Obama White House

2008-08-25 Thread Scott Stewart
I'm purely speculating here: I have no clue who's going to win, but if Obama wins and extends an offer of the Secretary of Defense, or Secretary of State for that matter. Which IMO would be a pretty good idea. Do you think McCain would take it. discuss -- Scott Stewart ColdFusion Developer O

RE: CF/SVN SOT question

2008-08-25 Thread Eric Roberts
*grin* I know what you mean...give you a reason to do it ;-) When I worked at Discovery Education, we had a system that would take code from the dev server (as selected on a web based screen that listed the entire directory with checkboxes), commit it, merge it to the test repository and update t

Re: SQL injection attack on House of Fusion

2008-08-25 Thread denstar
On Wed, Aug 20, 2008 at 4:37 PM, Dave Watts wrote: > Your main concern is not the consumption of resources as a result of an > automated attack. That's just like any other denial of service attack, > basically. If you can filter it out successfully, that's good for you, but > you should be far

Re: CF/SVN SOT question

2008-08-25 Thread denstar
On Fri, Aug 22, 2008 at 9:53 PM, Eric Roberts wrote: > Thanks Den...I'll have to check that out. The only mods should be the ones > in dev. Test is a combo of testing and staging where we do final testing > before putting it live...so something like that should work. Well I'd be happy to share w

Re: SQL injection attack on House of Fusion

2008-08-25 Thread denstar
On Sun, Aug 17, 2008 at 10:43 AM, Jochem wrote: > denstar wrote: >> Or maybe you've got a simple solution, to how one would limit URL >> requests to only allowable values? > > I don't think simple solutions exist. The closest I have seen that still > was simple yet appeared to be somewhat effective

Re: CFC Best Practices

2008-08-25 Thread William Seiter
If you decide to go in this direction, I would suggest not just using the 'datetime' added column. create a truly unique identifier such as: "datetime (MMDDHHMMSS)+ user ip address (or username if logged in) plus a random sequence". This way you will know you can search on the unique and n

Re: CFC Best Practices

2008-08-25 Thread David G
What I'm thinking, from this thread and others I've read in the past, is that if keeping your code database-independent is priority. inserting some unique identifier and then querying for that in a second query might be the best option. Or do you folks find that you can't really stay uncou

Re: Flummoxed bya simple query

2008-08-25 Thread Tim Claremont
I worked around the problem by selecting everything from the table within my date range, and then using QoQ to get the field in question. This works just fine, but is far from optimal. I have rebooted the server, and the services, said three hail Mary's, you name it. The only thing that worked i

RE: cfexchangecalendar result limits

2008-08-25 Thread Dawson, Michael
I don't recall there being a 100-item limit with the CFEXCHANGE tags. You don't have a MAXROWS attribute set on a query of a query somewhere, do you? Mike -Original Message- From: Chris Brandt [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2008 12:47 PM To: CF-Talk Subject: cfexchan

cfexchangecalendar result limits

2008-08-25 Thread Chris Brandt
Is there any way to show more than 100 results from a cfexchangecalendar 'get' call? I can't find anywhere in the docs that describe that limit or how to bypass it. Thanks, Chris ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Alter table - modifying an Enum field in MYSQL

2008-08-25 Thread Developer MediaDoc
Wow, CF developer for too many years, and I've never come across that tag before... many thanks Azadi! Matts >cf by default will escape single quotes in the sql statement values by >doubling them. use #PreserveSingleQuotes(my_new_list)# function to >counter this. > >Azadi Saryev >Sabai-dee.com >

RE: cfinvoke webservice

2008-08-25 Thread Dave Watts
> Trying to invoke a webservice using CF but it keeps failing > due to some error. Is there a common problem related to this > error msg? > > Cannot perform web service invocation myMethodName. > The fault returned when invoking the web service operation is: > > AxisFault > faultCode: {http://

Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Michael Dinowitz
Its not a matter of unfairly singled out as I have made the same request to a number of people in the past. Conferences and hosting companies have been the main ones but they have not been alone. When I saw the post with its full feature list and then a "demo version", it yelled sales post to me. I

Re: Upgrading CF8 to use ExtJS 2.2

2008-08-25 Thread Gerald Guido
On Mon, Aug 25, 2008 at 12:26 PM, Cutter (CFRelated) < [EMAIL PROTECTED]> wrote: > If you want to use Ext 2.2, you have to write your implementation from > scratch (which you'll want to do, if you want more advanced functionality). > This is true... However, you might want to look at Justin Carte

Re: Upgrading CF8 to use ExtJS 2.2

2008-08-25 Thread Cutter (CFRelated)
You cannot upgrade the ExtJS library that is used by the CF8 Ajax components. Architecture of the Ext library was changed significantly between Ext 1.x and 2.x, and Adobe's Java implementation, which writes the javascript hooks for you when using the appropriate cf tags, would not work properly

PID errors (and cfImage or CFX_imageCR3)

2008-08-25 Thread James Wolfe
I have been working to debug some problems that my server has been getting intermittently and I wanted to know how common the problem is. We have been getting "small" coldfusion crashes (where CF restarts automatically) periodically on a couple of our servers and I think I have linked it to the

RE: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Dave Watts
> Well...either way, it seems that this instance of > "sharing/promoting/whatever" has certainly been unfairly > targeted and singled out with "Don't do this without talking > to me first" > when through the years there have been countless instances of > others who have promoted their offerings

Upgrading CF8 to use ExtJS 2.2

2008-08-25 Thread Dave Hatz
I am looking to upgrade the ExtJS library from 1.1 in CF8 to 2.2. I am looking for any details on how to upgrade ExtJS to 2.2 in CF8. Can someone please provide any details on where I can find this information? ~| Adobe® Col

Re: cflayout weird problem

2008-08-25 Thread BJ McShane
Dave, Thanks for the help. The code sample worked great. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: ht

RE: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Rick Faircloth
> GPL doesn't require that software not be sold. Well...either way, it seems that this instance of "sharing/promoting/whatever" has certainly been unfairly targeted and singled out with "Don't do this without talking to me first" when through the years there have been countless instances of others

Re: Alter table - modifying an Enum field in MYSQL

2008-08-25 Thread Azadi Saryev
cf by default will escape single quotes in the sql statement values by doubling them. use #PreserveSingleQuotes(my_new_list)# function to counter this. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Developer MediaDoc wrote: > Hi All, > > Have run across a VERY STRANGE behaviour in CF 8.0

Re: cfinvoke webservice

2008-08-25 Thread CF Developer
are you sure the method that you are calling exists in the CFC file? On 8/25/08, Bosky, Dave <[EMAIL PROTECTED]> wrote: > > Trying to invoke a webservice using CF but it keeps failing due to some > error. Is there a common problem related to this error msg? > > Cannot perform web service invocatio

cfinvoke webservice

2008-08-25 Thread Bosky, Dave
Trying to invoke a webservice using CF but it keeps failing due to some error. Is there a common problem related to this error msg? Cannot perform web service invocation myMethodName. The fault returned when invoking the web service operation is: AxisFault faultCode: {http://xml.apache.org/axis/

Alter table - modifying an Enum field in MYSQL

2008-08-25 Thread Developer MediaDoc
Hi All, Have run across a VERY STRANGE behaviour in CF 8.01 / mySQL 5.0 I've got a code snippet to modify vaules in an enum field in our database. ALTER TABLE the_table MODIFY the_field ENUM(#my_new_list#) NOT NULL; ; Results in an CF/mySQL error...

RE: House of Fusion Web Site Problem

2008-08-25 Thread Robert Harrison
No problem by me. I just saw it over the weekend and thought I'd mention it. That's definitely an HTML problem. 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

Re: House of Fusion Web Site Problem

2008-08-25 Thread Michael Dinowitz
It's on the list and it'll be looked at today. Unfortunately, we've been busy with a few things such as getting the first issue of the Flex Authority (http://www.flex-authority.com) out the door. Look for a full Nav redesign going into place with jquery. On Mon, Aug 25, 2008 at 9:50 AM, Andy Matth

RE: House of Fusion Web Site Problem

2008-08-25 Thread Andy Matthews
I brought this to the attention of HoF about 4 or 5 months ago and was told "it'll get fixed"... Now 4 or 5 months ago, you're posting the same thing. Maybe it'll get fixed before the end of the year. andy -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Monday

House of Fusion Web Site Problem

2008-08-25 Thread Robert Harrison
FYI: The House of Fusion web site has a problem with the drop down menus. In IE 7 on Vista and XP the menus are going underneath the page layer. Someone may want to look at this. Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 117

Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Dana Kowalski
This is really good. Thanks for sharing it. I honestly had no idea it existed. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;2739

RE: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Dave Watts
> I've always understood GPL3 to be "free" software. GPL doesn't require that software not be sold. It simply requires that you provide the source code when you do sell it. http://www.gnu.org/philosophy/selling.html Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software pr

Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Marius Milosav
I'm sorry Michael, you are right. Believe it or not my first impulse to contact you before hand. CfTalk is a rock solid list for CF development and should remain that way. Anybody who is interested in the first announcement please contact me of list. Thank you Marius -Original Message

Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Greg Luce
I've always understood GPL3 to be "free" software. I didn't think he was tring to sell anything. I was happy to see the post. I would also recommend posting it to riaforge Marius. Good work! Greg On Mon, Aug 25, 2008 at 12:07 AM, Michael Dinowitz < [EMAIL PROTECTED]> wrote: > Please clear any sy