Could someone please explain how to submit a bug to Allaire?

BTW, I was given a pretty good work around from James Ang on the cold fusion
forum: use duplicate(variables.application) instead of just
duplicate(application).

It works for the example below, but I was able to break it as well, with a
slightly more complicated version.

It is strange- the query below is a small query with no rows and it breaks.
Jason says it only failed for him with large queries.  I have another
application that has several large queries and multiple levels of
structures, and dupliate works fine in it.  I didn't discover the bug until
I used duplicate for something simple.

-----Original Message-----
From: Jason Aden [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 01, 2001 2:45 PM
To: CF-Talk
Subject: RE: bug in duplicate() function crashes server


We've had this problem since duplicate() was released. It only occured with
large queries. We have had to used CFWDDX to copy queries from one variable
name to the other.

At the developer conference I asked a couple Allaire guys if they had come
accross the problem and they hadn't. Maybe they're not duplicating many
queries.

We submitted it to Allaire a few weeks ago and have not heard anything back
from them. The more people complaining about it, the more likely it is to be
corrected, so please send it as a bug (I've never personally submitted a
bug, so I couldn't tell you how to do it).

Jason

----
Jason Aden
Allaire Certified Developer
[EMAIL PROTECTED]
www.wwstudios.com

> -----Original Message-----
> From: Brad Howerter [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, February 01, 2001 2:51 PM
> To: CF-Talk
> Subject: bug in duplicate() function crashes server
>
>
> I've come up with some simple code that crashes my server (WIN/NT, using
> IIS, Cold Fusion version 4.5 SP2 with duplicate() bug hot fix
> [cfserver-duplicated-fix-win-ent-us.exe] already applied).    The hot fix
> for duplicate is for a different duplicate() bug.
>
> It's the query that causes duplicate() to crash the server.  Duplicate()
> works fine until I add the query to the code snippet.  I get
> errors like the
> ones below.
> I also have some structures where duplicate() works correctly, even though
> it does have queries. They're buried under sub-sub-sub structures, though,
> so maybe that's why. The simple code below crashes the server fairly
> consistently, although sometimes I have to run it twice before the cold
> fusion server crashes.
> How do you submit a bug?
>
> This bug was also posted as
> http://forums.allaire.com/devconf/Thread.cfm?Message_ID=634348,
> but I don't
> think any action was taken.
>
> I also saw it referenced in cf-talk:
> http://www.mail-archive.com/cf-talk@houseoffusion.com/msg39394.html, but
> again Alaire doesn't yet seem to have acknowledged it.
>
> ---- sample code -----------
> <html>
> <head>
>       <title>Untitled</title>
> </head>
>
> <cfif Not IsDefined("application.cust")>
>       <cfset application.cust = structnew()>
>       <cfset application.cust.abc = "abc">
>       <cfset application.cust.def = "def">
>       <cfset application.cust.qry = querynew("one,two,three")>
> </cfif>
>
> <cfset request.app = duplicate(application)>
> <body>
> <cfoutput>
>       request.cust = #request.app.cust.abc#, #request.app.cust.def#
> </cfoutput>
>
> </body>
> </html>
>
> ----error messages----------------
> Error Diagnostic Information An error has occurred while processing the
> expression:
> request.cfaDumpInited=CFTempOnlyForSetVariableNeverUseThisNameInYo
> urCFMLCode
> 122333444455555654321
>
> --------------------------------
> Error Diagnostic Information Request canceled or ignored by serverServer
> busy or unable to fulfill request. The server is unable to fulfill your
> request due to extremely high traffic or an unexpected internal error.
> Please attempt your request again (if you are repeatedly unsuccessful you
> should notify the site administrator). (Location Code: 26)
> --------------------------------
> Error Diagnostic Information unknown exception condition
> CFMLInterpreterImp::process ---
> ----------------------------------
>
> Error Diagnostic Information Error occurred for unknown cause.
> Normally the reason for this error is that a critical system
> resource (such
> as memory or disk space) has been expended. You should check the available
> disk space on all of your drives to make sure you have not run out. You
> should also make sure that you are not running out of memory by
> running the
> Performance Monitor and observing the effect of your application on free
> system memory.
> Another reason for this error may be that your ODBC driver is generating a
> general protection fault. To help verify that your driver is funtioning
> properly you should attempt to submit the query which is causing
> this error
> to the data source using another ODBC application (such as MS Access or MS
> Query).
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to