... I just think the opposite...... XML makes it more cleaner to configure and to apply circuits in a very clean way. Besides that, you exactly know now, wich...
Agreed. Additionally, FB3 got me accustomed to designing my app's logic through switch statements, and now FB4 makes it more intuitive with XML. It's also...
The XML has to be a flat text file, not dynamically generated... if you tried to do that you would have to keep your fusebox.xml in development mode, and you...
Hello, I'm beginning with PHP-Fusebox (I come from the Lasso-Fusebox World). I'am a beginner in PHP too ... I need some exemples FB3/PHP to learn. I've you...
Dear PHP Professionals, We are a PHP Development Centre at Bangalore, India and have Web Developer positions available with our company. Job Position - Web...
Hi everyone I'm trying to use the new version of Fusebox, but I'm getting errors when I try to run it. I get an error trying to write the parsed files (Could...
... Hi August, Actually this can be a very common error.....:-( It tells you that Fusebox 4 can't write to the parsed/ directory. This directory should be...
I adjusted the parsed directory's permissions in IIS and it fixed the problem. Mike ... __________________________________ Do you Yahoo!? Yahoo! Mail is new...
Dear All... I Have problem to sending (POST) (i used fsockopen) an HTML/XML tag using PHP... Example : POST 127.0.0.1 HTTP/1.1 Accept: */* Accept-Language:...
use a PHP function called "stripslashes". http://www.php.net/manual/en/function.stripslashes.php stripslashes( $_POST['par1'] ) should give you what you want....
I POST the data to another web server, so i cant use stripslashes in their web server. But it SOLVED : Content-Type: application/octet-stream Thanks Ryan. ... ...
Hey guys, I'm having a problem and maybe it's just because I've been staring at the screen for too long, but another perspective might help out here. I'm ...
... 1 and 2 I also thought of. However, 3 didn't even occur to me, and sure enough I had an unescaped & in one of my circuits. Boy is my face red. The...
It's language specific, CF throws an error if you don't escape the &. I know that CF5 FB4 throws an error if the xml isn't valid, i suppose it could be...
We'd have to completely rewrite the XML parser in the fusebox loader. Doable, but time consuming. Possibly there's an open source validator written in PHP...
... I throw parse errors for badly formed XML in Mach-II: if (!$this->parseString($xml, feof($this->xmlFile))) { $error =& MachII::throwError( array( 'lineNo'...
does anyone know of a program that will allow me to place images of any size into a directory and then have them automatically resized to the requirements of...
Image Magick is pretty good for this sort of thing. Its fairly easy to call it from PHP as a command line utility. http://www.imagemagick.org/ Cheers Ross ... ...
I've attached a class that I've used with some success for resizeing images. I use this class with this system: http://www.tedmasterweb.com/postcards/ Ted...
I recommend GD Lib: http://www.boutell.com/gd/ I believe most PHP hosts have this graphics library already installed, but I could be wrong. There's an article...
Has everyone had a chance to go to the SF site and download the latest core files? I'd like to give JCQ a tested and "approved" set for inclusion on the...
Hey Mike, Thanks for the reminder... I've been meaning to check out 4.1 and finally had a sec. I'm still heavy into PHPFBX3 so it may take me a while to digest...