Hello, As you know already, Mike, I *was* affected by the fusebox.xml problem in RC3. I have updated my core files to use RC4, moved my fusebox.xml.php back to...
... Phil, This is the exact situation I am dealing with recently. Let me explain an alternate method I have used. Each model fuse checks the status of a...
Thanks to Phil(!!)'s nack of finding errors, I've patched up a couple more, one in fusebox5 changes the relative paths for including fusebox.init and...
I do all my error testing in a single act_verify file. Any errors are captured to $errors["fieldname"] The act file sets $ok = false if count($errors) > 0 The...
That's pretty much exactly how I do my form validation as well. Just a couple of things that I like to do differently: 1 - Before act_verify I'd set 'ok' to...
Thank you both Geoffrey and Mike. I like Geoffrey's use an an array to store the content variable in. I don't know why I didn't think of that. Very tidy. I use...
I have decided to begin building an exception handler for my site and see if that cuts down on the work of the system described in my earlier post (Re:...
Hey all, I'm a php programmer who had to learn Coldfusion. In the process I discovered fusebox and loved it. Now I'm trying to move back into php but I'm...
... For a start, what version of Fusebox? You really should be working with FB4 or 5. You can do redirects all within the circuit.xml file, e.g.: <fuseaction...
... Is that PHP Fusebox or CF Fusebox? Zac, You can run and download the source for a PHP Fusebox 4 site I made here: http://scratch.salientdigital.com ...
... Uh. CFML. Sorry, I forgot to check for CFML snippets, I mainly wanted to demonstrate the core logic. -- Damien McKenna - Husband, father, geek. ...
Thanks for teaching me some CF! Mine is __really__ rusty. I recently saw the syntax {$something} used in PHP outside of Fusebox and was suprised that it...
... LOL, no probs, maybe I'll include some PHP next time ;-) ... RTfunnyM :) There are lots of neat little tricks in PHP that I wish other languages had, that...
It does help actually, but it also raises another question I have of where do I find information on the various directives that can be placed inside the...
Hi Zac, The wiki is and excellent resource, and you can get the XML Grammar here: http://fbx4.salientdigital.com/tiki-index.php?page=XMLGrammar I use SET, DO,...
Gavin, Where can I get FB5 for php? On fusebox.org the latest version of fusebox for php is 4.1. Also one of the things I like about 4.1 is that it's ...
FB5 should be available as downloadable files from the Yahoo! group page. It's compatible and works great - thanks to Mike's heroic efforts! From the...
Thanks Gavin! The latest core files have been renamed from RC5 to GR0 and sent to Sean Corfield as "official" core files. Once they're available there I'll let...
Hello All! For those who haven't been following my trials and tribulations I've been trying to get into fusebox because it is lightweight and but still very ...
Hi Zac, thanks for contributing this! Out of interest, what could have been done differently in the skeleton app to make it easier for you to get started? The...
Hey everybody, Now that I've got a working skeleton application I'm about to start climbing the wall into the realm of usefull stuff. The first thing I've...
I recommend making a user circuit and putting add-->insert, edit-->update, remove-->delete in the user circuit with all related dsp_ act_ and qry_ Another way...
Just thought I'd ask the list if anyone's gotten the IE 7 updater. Anyone have any CSS related IE 7 links they'd like to share? My Flash 8 just auto-updated to...
I sometimes think there's confusion about MVC. In my opinion, fusebox.xml and circuit.xml ARE the controller, because they Control the flow of the program. The...
I think I understand what you are saying. So rather than having a single circuit control the database (the model), one control the various dsp file (the view)...
In my applications I will have one or more public circuit that acts as the Controller, which groups fuseactions into sets of functionality as imagined by the...
On 12/22/06, G. T. Stresen-Reuter <tedmasterweb@...> wrote, in essence (edited): In my opinion, fusebox.xml and circuit.xml ARE the controller, because ......