Fusebox is going to get a facelift and we need your help. Things are really starting to happen within Team Fusebox and one of the main goals is to start off...
Unless I misunderstand your question, yes you can. Just make sure the name of the POSTed fuseaction the same as the one defined in fusebox.XML. Eg. <input...
I'm using PHP Fusebox 4.1 on a site... I figured this would work... but it doesn't: <set name="content['title']" value="Company name | Product Name™"/> ...
Thanks Mike and Dan, Although I am used to living in a somewhat constant state of confusion, I'm still confused why & works and &trade; works....
It's to do with the way the XML file is parsed a single & or $ is read differently to an entity or an escaped character in much the same way as if you were...
Actually, this might be useful: http://www.w3schools.com/xml/xml_cdata.asp Especially the bit about illegal characters and "predefined entity references". Hope...
This format is needed when you are <set>ing an array. <set name="myarray" value="return array('Users', 'Groups', 'Locations');" evaluate="true" /> Otherwise it...
Has anyone gotten one of these: Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 524217 bytes) in fuseboxApplication.php on line...
... We had something similar happen, php specific involving php4_gd where we didn't delete our temporary images thus growing beyond our 16Meg memory limit per...
Makes me wonder if it would be possible to divide up the app_cacheddata file among the individual fuseactions, with only the called fuseactions present. The...
I was under the impression that FuseBox 5 does just this.. With FB4 I generate a menu using the $application array =) Shannon Carey wrote: Makes me wonder if...
Yeah, I'm with Bret on this one. I can't imagine that this is a Fusebox problem. The clue here is that PHP is trying to allocate 0.5 MB in one fell swoop....
... Well.. Something is going on. I know what I'm doing and this is just from a prototype. The files it dumps on disk are 181k for the _app file . It's not...
So why is the entire application object serialized anyways. It's huge. Why not write to disk only the current data values in the class and add an import...
As I stated in an earlier post, the fact that PHP serializes and unserializes all its data between requests is a philosophical design decision made by the...
I would be willing to bet that it is *NOT* the size of the application object. To give you some idea, our application files are 6MB and we're not having any...
... ok. so I wrote a script with this: <?php echo memory_get_usage() . "\n"; $start = microtime(); include('_app_winamp.php'); echo memory_get_usage() . "\n";...
... There are actual php profilers such as: php4-xdebug and php4-apd This can save you a line of time, specifically in profiling your application. For instance...
Chris, where were your ideas when I was first pondering how to transition from a structure that could be var_export()ed, to an object that needed to be...
I am sure what you say is true, but you know, always room for improvement right? I'm confused by what you say about many small files though. My suggestion...
I knew Mike could tell us what's up! That's very interesting. I haven't started using FB 5 yet because I haven't had a chance to start a new application. To...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the PHP-fusebox group. File :...
PHP-fusebox@yahoogrou...
Feb 24, 2007 12:43 am
3933
Hey I'm going to put this memory leak issue to bed. I haven't been able to replicate it today and so I have to say it was just an issue with my system and not...