Hi Guys, I have created a PHP Fusebox based search form that uses a POST method, when a user searches for a subject they are redirected to a results page. On...
Hi, Do you need to use POST? Use GET as your form method instead. If it's only search parametres you are passing this is a better way to ensure the user and...
As Gavin said, the only way to get the back button to work is to put everything you need in the URL. Alternatively, it is not ideal but you can cache a copy of...
How many of you would be affected negatively if the next version of the Fusebox core (FB5.5, still in beta in CF) was written with exclusive support for PHP5...
I would not be negatively affected. My host handles it as a fast cgi. Not the greatest, but workable. Because of the object oriented nature of FB5.5 it NEEDs...
Most hosts I deal with allow you to use Apache's AddHandler directive to change which extensions are "run" using different versions of PHP. So, I'm all for PHP...
Definitely go 5, http://gophp5.org/ I'll offer what I can, I'm not a hardcore PHP programmer but have used Fusebox for years now and would like to be involved;...
Enter your vote today! A new poll has been created for the PHP-fusebox group: Should Fusebox 5.5 be written exclusively for PHP5.x, or should it continue to...
PHP-fusebox@yahoogrou...
Jul 7, 2007 8:35 pm
4029
If you had on over to http://us2.php.net/ , you will see a post dated 13th of July stating that php4 development will be discontinued after the end of the year...
If it is in fact a full implementation of the PHP language then it should work. Just make sure that you have write access to the /parsed folder. Just like CF...
I've been storing my sample fusebox 4 app online for a few years now at scratch.salientdigital.com. Still works (fully). You try and be nice, and look what it...
Nice. That should be a good wake up call to all of us that no matter how big or how small your project is you should NEVER trust the user. Sad but true....
Now that we've standardized on PHP5 I've been researching some of the extensions that are out there that might be useful in future versions of Fusebox. APC is...
Hey Cesar, If you are brand new to fusebox, I recommend downloading my sample app from scratch.salientdigital.com It's a real site I made with PHP Fusebox 4...
Hi, I've been getting this error when one of my FB apps is under significant load: Fatal error: Call to a member function reload() on a non-object in /{path ...
Hi Mike, I had to drop this for a while since April, but now I'm back into it and the custom namespace is both appropriate and looks nice. Also, I wanted to...
Hi Mike, The code you mentioned before, $custom = $myFusebox->getCurrentCircuit()->getCustomAttributes("gatto"); Is not working for me. I did a trace in...
Hey Mike, The "official" version of the FB5 core files for PHP still has some bugs in it. One of those bugs is that getCurrentCircuit() doesn't actually return...
Hi Mike, Sorry, the work around did not work. I'm still getting the empty array back from the function call. I've double-checked my circuit.xml for the ...
The following PHP-fusebox poll is now closed. Here are the final results: POLL QUESTION: Should Fusebox 5.5 be written exclusively for PHP5.x, or should it...
PHP-fusebox@yahoogrou...
Aug 22, 2007 7:40 am
4043
This should work: <!-- circuit 'test' --> <circuit access="public" xmlns:custom="any/path/unimportant/" custom:foo="bar"> <fuseaction name="testing"...
Hi Mike, That worked. I figured out why mine was not: the code was being called in a layout circuit, so naturally the array was empty since that util circuit...
... xmlns:custom="any/path/unimportant/" custom:foo="bar"> ... custom:attr1="foo" custom:attr2="bar"> Whoa. Dudes. I hate not knowing stuff. Where do I go to...
I used URL rewriting extensively in the past since Fusebox 3. I used to modify the .htaccess file on the server for a given domain. I would recommend not using...