You *think* you were the only one accesssing it.  ;)  The problem you
describe (corrupted memory structures) is exactly the symptom of
multi-threaded access to a non-production Fusebox app.  Why I didn't
mention that up front, I can't say, guess I just assumed (and when you
assume...).

The problem is that in development mode, the whole memory structure is
rebuilt from scratch (after being deleted) each request.  If a request
builds it's version, and then during processing the next request
thrashes it, you get lots of weird errors.  That's what you were
seeing.

cheers,
barneyb

On 7/13/07, Phillip M. Vector <[EMAIL PROTECTED]> wrote:
> Got it fixed by putting it from development to production.
>
> I didn't think it really mattered due to either it's on the local
> machine or on a live server if I was the only one accessing it and I
> didn't mind waiting the longer time while it compiles.
>
> I guess it does matter. :) Thanks for the help. :)
>
> Phillip M. Vector wrote:
> > Yup. It's loading the correct files.
> >
> > and yeah, with identical code, the only thing I can figure is the server
> > somehow blocking something.
> >
> > Barney Boisvert wrote:
> >> Sounds like it's looking for the main circuit inside it's internal
> >> data structures, and not finding it.  How that could happen with
> >> identical code, I'm not sure.  You've double checked that all the
> >> files you think you're using are the ones that are actually being
> >> used?
> >>
> >> On 7/13/07, Phillip M. Vector <[EMAIL PROTECTED]> wrote:
> >>> I did the structDelete and that fixed the main error. Thank you. :)
> >>>
> >>> Now, if you are up to it, is another error I'm now getting (again, I'm
> >>> not getting it in the local server).
> >>>
> >>> "Element Main is undefined in a CFML structure referenced as part of an
> >>> expression."
> >>>
> >>> Can you explain this in laymens terms? :)
> >>>
> >>> I believe the code doing this is..
> >>>
> >>>         <frameset cols="215,0,*" frameborder="no" border="0" 
> >>> framespacing="0">
> >>>                 <frameset rows="*,18" frameborder="no" border="0" 
> >>> framespacing="0">
> >>>                 <frame name="Navigation" src="#self#Main.Menu" 
> >>> scrolling=Auto noresize>
> >>>                 <frame name="StockTicker" src="#self#Main.Ticker" 
> >>> scrolling=No noresize>
> >>>                 </frameset>
> >>>           <frame name="Music" src="#self#Main.Music" scrolling="No" 
> >>> noresize>
> >>>           <frame name="Main Window" src="#self#Main.Welcome" noresize>
> >>>         </frameset>
> >>>
> >>> with self being = "index.cfm?fuseaction="
> >>>
> >>>
> >>> Barney Boisvert wrote:
> >>>> Are you reloading the fusebox when you deploy?  Or you might try
> >>>> putting structDelete(application, "fusebox", false) in index.cfm,
> >>>> running it once, and then removing it, just to ensure you've got a
> >>>> pristine memory state.
> >>>>
> >>>> cheers,
> >>>> barneyb
> >>>>
> >>>> On 7/13/07, Phillip M. Vector <[EMAIL PROTECTED]> wrote:
> >>>>> The parameter is there. Also, the core files are a direct copy from my
> >>>>> local. So logically, it should work.
> >>>>>
> >>>>>
> >>
> >
> >
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:283759
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to