I've committed the recent changes to the /dev repository on trac.fuseboxframework.org. I haven't really put it through its paces yet but I was able to get both...
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...
Aug 4, 2008 7:09 pm
4118
Okay, I figured out what was causing the corrupted app_ data file. It was the use of PHP5 keywords in the class files, such as private $protectedVar; and...
Has anyone used the new test core files for any of their applications? I'm pretty sure that I'm not that perfect, that it works exactly right this soon out of...
I'll upgrade a test website I keep just for such emergencies and let you know what I come up with. BTW, the core files for 5.5.1 PHP have a lot of comments...
I used the existing XML UDFs because the core files reference the xmlChildren, xmlAttributes, etc throughout them for loading in the XML. If the SimpleXML is...
Mike, That's good about the sample app. I read the 5.5.1 new features doc and was wondering how the classes should be written in Php when they act as...
For us it'll be $myFusebox->__do(), but it does work, which is cool. You can see how to create your circuit classes/methods if you download the FB5.5.1...
No, with noXML there is no fusebox.xml at all, and fusebox.appinit or fusebox.init start too far into the request to be useful for setting fusebox parameters....
Mike, Is it possible in FB 5.5 now to specifiy a custom location for the parsed directory. I'd love to be able to mount it as tmpfs and keep it in /tmp. - Mike...
Yes, as parameters in fusebox.xml (or the new FUSEBOX_PARAMETERS array in index.php): <parameter name="parsePath" value="/tmp/tmpfs/"/> You can do the same...
In looking at parsed files, when I <include template="dsp_helloworld"/> it is included. Every time, even if it was already included before. In some cases this...
I thought I was using Fusebox 4.1 but now I am not sure: When I do this in "circuit_A" : <include template="act_file" circuit="circuit_B" /> I get the...
Yes, I get that too when I was sure I was using FB 4.1 from SVN. Annoying, but I just worked around it the usual way by adding wrapper fuseactions to call as...
I dunno. I thought that it was one of the last features added, but I didn't dig into finding out whether it was part of the spec or not. Seems like it ought to...
<include circuit=""/> was a feature that was inadvertently added in FB4.1, for both PHP and CF, but only inside a <fuseaction> block. If you tried to do that...
<prefuseaction callsuper="true">...</prefuseaction> <postfuseaction callsuper="true">...</postfuseaction> With the prefuseaction, the parent's prefuseaction is...
Greetings, What are the options of the type attribute for the class tag. The fusebox documentation mentions several CF types (java, COM, CORBA). I have...
To my knowledge, it merely represents a PHP class file. For example, in my apps I have a custom class that extends PHPMailer for sending email. I define...
Hello anyone still listening on the PHP Fusebox list... I have it on good authority that PHP Fusebox is not dead, although the list traffic has been nil for...
Hi Geoff, thanks for updating your site! Don't know if there's any room for it in your sample app but one of the best enhancements to PHP Fusebox with version...
BTW, I added some extra text regarding the <appinit> globalfuseaction on the Wiki. <appinit> and fusebox.appinit.php aren't like regular programming points in...
Mike, Regarding the <parameter> tag... help me out here. I recall that in Fusebox4, you'd use the field names from a db query as variable names inside a loop;...
Hi Geoff, answers inline: ... The <parameter/> tag when used as a child inside <include> or <do> allows you to temporarily create a variable or override the...
... allows you to temporarily create a variable or override the value of an ... Wow, I get it. Thanks a lot for the clarification. I've updated the PHP Fusebox...
If you remember that "development" mode does in fact mean that fusebox.load and fusebox.parse are both set to 'true' for every request, what you were...