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...
... This will throw a warning. If you have your error_reporting() value set high (I always set mine to E_ALL for dev purposes) then you'll see lots of errors...
... Nope, if you don't put a name in, the parser will create a temporary variable name, using $fb_[#########] where the ######### is a uid. You end up with a...
Yeah, i think your right. It makes more sense to put those unreusable php code into a act_authenticationLogin file. I'll do that. Meanwhile, i did learn a lot...
A late response, but it might help. ... One idea on this would be to use a shared database table for the session data, maybe write/extend your own session...
Hey guys (particularly Mike), I was playing with another PHP package (PHPTAL, a simple, XHTML-based template language, based on Zope ZPT) recently, and was...
Great idea! Here's what I got when I tried "pear upgrade pear": pear upgrade pear downloading PEAR-1.4.6.tgz ... Starting to download PEAR-1.4.6.tgz (277,103...
Hey Ted, I know the feeling. I've run into a very similar experience. Then I found this command: pear upgrade-all but sometimes even that doesn't work, so...
... Absolutely, I certainly hope my feedback didn't sound sarcastic. It wasn't intended to be, at all. I really believe anything that can be done to improve...
Thanks for your response in this... I would like to share what I am going with... Currently I am using the Snoopy class from sourceforge, and have extended it...
Hi Andy, that certainly does sound easy. That would only get you as far as the Core Root for each project though. Your Web/App Root would still have to be...
Hi Mike, ... That's a valid point. I'd consider that more of a security feature of fusebox though - removing the application from the web root, rather than a...
Hi Mike, ... That's a valid point. I'd consider that more of a security feature of fusebox though - removing the application from the web root, rather than a...
I actually ran into the same thing myself while testing thing whole idea out. When I ran 'pear upgrade pear', I got the same error message saying that...
something else you may want to keep in mind, whilst its nice to have all the software packages you use in a central location, when working with multiple...
Pretty cool. I got it installed and reviewed the examples. I wonder how hard it would be to translate the querysim to work with ADODB (a database abstraction...
You raise a good point - using a central package may not be for everyone. I think that putting minor version numbers in the package name would deviate from...
Hey all, Had an idea here that I think will work. I think it will be possible to preserve the entire $application['fusebox'] structure, as well as load...
Hey guys, We have finally launched our application which we have been working on for nearly 1.5 years. The entire application is written in PHP Fusebox with a...