I have been making a major effort to keep my circuits easy to read, and streamlined. Basically I have a fuse that is pretty large, because I need to use ...
The short answer is fusebox cannot DO a variable action. A DO tag has to have a text value, due to the way the parser works. Phil _____ From: Owen Cole...
Hah here's some simplification ... I've tested and verified that I can use variables in <include> and am going with that now... Not exactly the same effect as...
When I first thought about your example, it seems like a logical enough. Then I realized that the XML directions tell the parser how to create parsed files,...
Basically, that's what I ended up with Geoff. I had been following an MVC example where all the queries were contained in their own circuit... After further...
If you're using MySQL, you might also look into the REPLACE INTO statement. It works a lot like an INSERT INTO statement, except it will decide to insert or...
I am pretty much creating a CMS... For various projects it has been much easier for me to utilize an existing open-source package than to code my own from...
Excellent question. You are looking for single sign-on capabilities. This will almost always have to be a custom-coded solution as each application handles...
Hey guys, One of my co-workers just sent this vulnerability to me. It looks like this was a PHP Fusebox 3 problem, but the problem persists in PHP Fusebox 4....
Don't ask me, heh... I've always just written my own tools as Fusebox circuits, and dropped them in as needed. That said, I would imagine any external library...
That's really funny, actually, because just yesterday I was reviewing that exact same code in my head and wondering if it wasn't a potential major hole. Thanks...
Can anybody tell me why it is (or could be) dangerous or harmful? Not in general, but in this specific (FB3/FB4) case. The Fusebox error never appears as a...
Consider the case where an attacker inserts javascript code into a URL to read all of the user's cookies from whatever domain they're on, and then send those...
I agree that injection attacks need to be handled, but that goes for regular sites as well as Fusebox. Even if the core files are 'fixed' so that a fuseaction...
Hey guys, It was bound to happen. The site is growing so large and we're adding so many fuses that we're going to have to split the application up into sub...
... Which file is the application file? The circuits file? I haven't completely thought it through, but it seems to me the circuits file should be the only one...
Hey Ryan, Sharing circuits amongst multiple fuseboxes is ridiculously easy, so long as the different apps are on the same server and the same drive. Just use a...
Hi, I'm planning using class on fusebox, and the class is should be declare on the global preprocess. First, i prepare the fusebox.xml like this: <classes> ...
Add the "returnvariable" attribute to the <invoke/> tag, that will collect the results of the invokation into a variable that can be manipulated or simply...
Hi all, Here is an alpha version (pasted as end of email) of a breadcrumbs plugin. It relies on several assumptions: * the use of the nonstandard "hint"...
Hey Mike, You're probably going to get a few different opinions on your question. Mine is that you should go ahead and make a separate fuseaction for each of...
I agree with Ryan, putting your static pages into the fusebox will be a good idea, and won't put any more overhead onto your site since the xml for each...
My php source is below... so how do i code it in XML to run like the php code below: ============================================= $Login = new Login(); ...
pheeww.. 2 hours of shift my mouse left and right... can anybody validate this? <fuseaction name="AuthenticateLogin"> <instantiate object="User" class="Login"...
This is how I would do it: <fuseaction name="AuthenticateLogin"> <instantiate object="Login" class="Login"/> <if condition="$attributes['submit']"> <true> <set...