I just discovered that an old site I made eons ago with PHP Fusebox 3 is returning (downloading... Where would you like to save?) index.php as pure source code...
Sounds like apache doesn't know php should be executed not returned. I'd check httpd.conf. Ron ... From: "Geoffrey Hoffman" <geoffrey.hoffman@...> Date:...
Yes, that is the same behavior I am getting, except on the same server I have other PHP and PHP Fusebox 4.x sites running without any issues at all. On Thu,...
Depending on how apache is set up with php, you may need to enclose php code with brackets like this - <?php ... ?> rather than <? ... ?> This has thrown me a...
As I recall, that behavior is controlled by the php.ini file. Ron ... From: Dan <datrill@...> To: PHP-fusebox@yahoogroups.com Sent: Friday, June 13,...
Just a quick note to let you all know that I've added PHP information into the documentation for the circuit.xml syntax in the Wiki documentation on...
Sorry for the delayed response... The problem I was having allowed injection through the url. I had a variable that was passed through the url that would be ...
One way I like to loop is over an associative array with foreach(). I can't seem to get this working. I have moved up to FB5 and am using a workaround by using...
... as pure ... why or ... I've tripped across something like this in FB5. When I see it, I usually have a really bad php error. I solve it by placing die() ...
Fusebox5 has support for additional versions of loop. The one you're interested is below: <loop item="key" collection="arrayWithoutTheDollarSign">...</loop> ...
as a bit of additional information... for those who need nested foreach() type loops: <loop item="key1" collection="array_name_without_dollar_sign"> <loop...
Hi Nowell, thanks for the offer! First thing to do is head over to http://trac.fuseboxframework.org and download the FB5.5.1 core files for ColdFusion from the...
I've committed a dev version of the core files to trac.fuseboxframework.org, it's in the "phpframework/branches/dev" section of the SVN repository. It's going...
I've seen PHP fusebox generate php code to the browser before, but I don't recall preciesely what fixes it and I'm a bit sidetracked and backlogged with work...
I'm using ApacheFriends' XAMPP for Linux right now, the default install with PHP5 and EAccelerator turned off. I have a duel boot, I suppose I should try it on...
I've committed the recent changes to the /dev repository on trac.fuseboxframework.org. I haven't really put it through its paces yet but I was able to get both...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the PHP-fusebox group. File :...
PHP-fusebox@yahoogrou...
Aug 4, 2008 7:09 pm
4118
Okay, I figured out what was causing the corrupted app_ data file. It was the use of PHP5 keywords in the class files, such as private $protectedVar; and...
Has anyone used the new test core files for any of their applications? I'm pretty sure that I'm not that perfect, that it works exactly right this soon out of...
I'll upgrade a test website I keep just for such emergencies and let you know what I come up with. BTW, the core files for 5.5.1 PHP have a lot of comments...
I used the existing XML UDFs because the core files reference the xmlChildren, xmlAttributes, etc throughout them for loading in the XML. If the SimpleXML is...
Mike, That's good about the sample app. I read the 5.5.1 new features doc and was wondering how the classes should be written in Php when they act as...
For us it'll be $myFusebox->__do(), but it does work, which is cool. You can see how to create your circuit classes/methods if you download the FB5.5.1...
No, with noXML there is no fusebox.xml at all, and fusebox.appinit or fusebox.init start too far into the request to be useful for setting fusebox parameters....
Mike, Is it possible in FB 5.5 now to specifiy a custom location for the parsed directory. I'd love to be able to mount it as tmpfs and keep it in /tmp. - Mike...
Yes, as parameters in fusebox.xml (or the new FUSEBOX_PARAMETERS array in index.php): <parameter name="parsePath" value="/tmp/tmpfs/"/> You can do the same...