I'm familiar with ColdFusion FB3, and am try to do a new projec tin PHP FB3. I'm using MVC (as taught by Hal Helms). The initial page goes to a dsp, which...
Hello, Over the last year I have been working on several projects and personal work developing session management services, security group based permissions,...
I had this problem too. I found ADODB and loaded it at the root of my fusebox application. Each class instance has its own memory space so you don't have to ...
Hi everyone:) I've been out of the PHP loop for some time, as I'm eagerly anticipating the release of Fusebox 4. Still, over the past couple of months I've...
... What are you defining as a "service"? I have written a bunch of classes/libraries to do various things... I have my own session handling class. ... I am...
... That's very interesting. I just made a OOPHP form element library of my own that does all the design stuff without knowledge of validation, etc. Wonder if...
... allows all the elements to self- ... boxes must have data). Very cool. I've been pretty happy with oohforms, but this is one thing it lacks. I probably...
I guess this just goes to show there are a million ways to approach something. I deliberately didn't impose any formatting on the generated elements since I...
... That was one of the key things I wanted from the outset, since some of the forms we generate are 5 or 6 columns wide by 15-25 rows deep, and these types of...
Any body interested in using "Cache Circuit" here is the Source code Links: http://www.haltebis.com/index.php?fuseaction=filemanager.main&path=modules%2Fcache/...
Boy Next Door
ekobudi@...
Jul 6, 2003 9:36 am
2058
hello. in index.php i have done: require_once('common/SearchEngineSafe.php'); above everything else. my confusion lies with the httpd.conf or .htaccess file...
... I think I've tried 999,000 of them ;) ... That's a smart way to do it. ... That's more elegant than how I'm doing it to be sure. ... <snip> ... can you...
... I probably phrased it in a misleading way :) Example: <input type="textbox" name="a_tb" value="" /> Assuming the above element is submited via post to a...
... Is this a feature or a bug? ;) And to think all this time I've been parsing the name of the get variable: e.g. <input name="scc_dynamicrow_0_1999" > ...
Hi All, I'm trying to run multiple applications off a single instance of my Fusebox app i.e. without having to make multiple copies of the directory tree. The ...
David, ... Yes, it appears to be working. Its not throwing a 500 and will actually do the rewrite removing the index.php string from the URL. However, the ...
Alan, ... It seems as if /index.php/fuseaction/ does get inserted, as a URL like the following actually works: http://www.timrandle.com/home.map However, the...
I'm interested in learning more about Model View Controller with Fusebox. I took a look at Hal Helms' article at http://www.halhelms.com/writings/MVC.htm, but...
You may want to take a look at CF FB4 anyway. It allows calls to multiple fuseactions w/ each page request, "allowing you to easily use an MVC design pattern...
Ok I am using module within multiple fuseactions/circuits. 1) When I call a module function from the root of my application within a layout file the layout...
] 2) When I attempt to call module from within a circuit below the root ] circuit. The Layout at the root is lost and everything (the fuseaction ] content) and...
Hi Robert, if you specify "suppressLayout"=>true, your Layout won't display regardless of using Module() or calling the circuit directly. Marc Aragnou ...
I usually check for a these few things when using mod_rewrite. Got it working ok so far. 1_ Make sure you have Options FollowSymLinks in your apache conf file...
] It seems as if /index.php/fuseaction/ does get inserted, as a URL like the ] following actually works: http://www.timrandle.com/home.map ] ] However, the...
] 1_ Make sure you have Options FollowSymLinks in your apache conf file for ] the website root directory. (that did sort out my code 500 errors) I thought this...
hey I'm no Apache expert either :) I'm running Apache 1.3.27 which is not exactly new but I had the same 500 error codes and doing this fixed. I did a bit of...
While we're on the mod_rewrite topic another problem I found in my logs that I had to work around: I now explicitly write the full URL in redirections like so:...
... I don't have access to the apache conf file so I'm using the .htaccess file in the root dir. This will achieve the same effect, right? In any case, I have...
I include the Options like so: <Directory /server_document_root/> ... Options FollowSymLinks </Directory> The base tag is in you lay_MainLayout.php file or...