Search the web
Sign In
New User? Sign Up
PHP-fusebox · Fusebox methodologies in PHP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3389 - 3418 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3389
Hi, I'm planning using class on fusebox, and the class is should be declare on the global preprocess. First, i prepare the fusebox.xml like this: <classes> ...
bambang priambodo
bapri_2000
Online Now Send Email
Feb 6, 2006
11:00 am
3390
Add the "returnvariable" attribute to the <invoke/> tag, that will collect the results of the invokation into a variable that can be manipulated or simply...
Mike
starkraving2002
Online Now Send Email
Feb 6, 2006
3:17 pm
3391
Hi all, Here is an alpha version (pasted as end of email) of a breadcrumbs plugin. It relies on several assumptions: * the use of the nonstandard "hint"...
Michael Omar Gatto
gatto_omar
Offline Send Email
Feb 12, 2006
5:23 am
3392
Hey Mike, You're probably going to get a few different opinions on your question. Mine is that you should go ahead and make a separate fuseaction for each of...
Ryan Hagan
ryan_hagan
Offline Send Email
Feb 12, 2006
1:19 pm
3393
I agree with Ryan, putting your static pages into the fusebox will be a good idea, and won't put any more overhead onto your site since the xml for each...
Mike
starkraving2002
Online Now Send Email
Feb 14, 2006
12:01 am
3394
My php source is below... so how do i code it in XML to run like the php code below: ============================================= $Login = new Login(); ...
h_tere2000
Offline Send Email
Feb 14, 2006
6:00 am
3395
pheeww.. 2 hours of shift my mouse left and right... can anybody validate this? <fuseaction name="AuthenticateLogin"> <instantiate object="User" class="Login"...
Adrianyong
h_tere2000
Offline Send Email
Feb 14, 2006
7:53 am
3396
For the translation of: if($_POST['submit']) { $submit = $_POST['submit']; } I think the circuit code should look more like: <if...
Andrew Fabian
anddee2k
Offline Send Email
Feb 14, 2006
2:29 pm
3397
This is how I would do it: <fuseaction name="AuthenticateLogin"> <instantiate object="Login" class="Login"/> <if condition="$attributes['submit']"> <true> <set...
Mike
starkraving2002
Online Now Send Email
Feb 14, 2006
3:36 pm
3398
... This will throw a warning. If you have your error_reporting() value set high (I always set mine to E_ALL for dev purposes) then you'll see lots of errors...
Damien McKenna
d_mc_kenna
Online Now Send Email
Feb 14, 2006
4:01 pm
3399
... Nope, if you don't put a name in, the parser will create a temporary variable name, using $fb_[#########] where the ######### is a uid. You end up with a...
Mike
starkraving2002
Online Now Send Email
Feb 14, 2006
6:13 pm
3400
Yeah, i think your right. It makes more sense to put those unreusable php code into a act_authenticationLogin file. I'll do that. Meanwhile, i did learn a lot...
Adrianyong
h_tere2000
Offline Send Email
Feb 15, 2006
12:59 am
3401
A late response, but it might help. ... One idea on this would be to use a shared database table for the session data, maybe write/extend your own session...
Damien McKenna
d_mc_kenna
Online Now Send Email
Feb 17, 2006
2:35 am
3402
Hey guys (particularly Mike), I was playing with another PHP package (PHPTAL, a simple, XHTML-based template language, based on Zope ZPT) recently, and was...
afabian
anddee2k
Offline Send Email
Feb 17, 2006
4:39 am
3403
Great idea! Here's what I got when I tried "pear upgrade pear": pear upgrade pear downloading PEAR-1.4.6.tgz ... Starting to download PEAR-1.4.6.tgz (277,103...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 17, 2006
10:13 am
3404
Hey Ted, I know the feeling. I've run into a very similar experience. Then I found this command: pear upgrade-all but sometimes even that doesn't work, so...
Ryan Hagan
ryan_hagan
Offline Send Email
Feb 17, 2006
1:17 pm
3405
... Absolutely, I certainly hope my feedback didn't sound sarcastic. It wasn't intended to be, at all. I really believe anything that can be done to improve...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 17, 2006
1:37 pm
3406
Thanks for your response in this... I would like to share what I am going with... Currently I am using the Snoopy class from sourceforge, and have extended it...
Owen Cole
tgknight
Offline Send Email
Feb 17, 2006
2:26 pm
3407
Hi Andy, that certainly does sound easy. That would only get you as far as the Core Root for each project though. Your Web/App Root would still have to be...
Mike
starkraving2002
Online Now Send Email
Feb 17, 2006
3:23 pm
3408
Hi Mike, ... That's a valid point. I'd consider that more of a security feature of fusebox though - removing the application from the web root, rather than a...
Andrew Fabian
anddee2k
Offline Send Email
Feb 17, 2006
4:11 pm
3409
Hi Mike, ... That's a valid point. I'd consider that more of a security feature of fusebox though - removing the application from the web root, rather than a...
Andrew Fabian
anddee2k
Offline Send Email
Feb 17, 2006
4:14 pm
3410
I actually ran into the same thing myself while testing thing whole idea out. When I ran 'pear upgrade pear', I got the same error message saying that...
Andrew Fabian
anddee2k
Offline Send Email
Feb 17, 2006
4:18 pm
3411
something else you may want to keep in mind, whilst its nice to have all the software packages you use in a central location, when working with multiple...
Mubashar (MUBS) Iqbal
iisbum
Offline Send Email
Feb 17, 2006
4:37 pm
3412
Pretty cool. I got it installed and reviewed the examples. I wonder how hard it would be to translate the querysim to work with ADODB (a database abstraction...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
Feb 17, 2006
5:09 pm
3413
You raise a good point - using a central package may not be for everyone. I think that putting minor version numbers in the package name would deviate from...
Andrew Fabian
anddee2k
Offline Send Email
Feb 17, 2006
5:18 pm
3414
Hey all, Had an idea here that I think will work. I think it will be possible to preserve the entire $application['fusebox'] structure, as well as load...
Mike
starkraving2002
Online Now Send Email
Feb 22, 2006
4:12 pm
3415
Good direction. How about app_{appname}_{circuit}.php? More thoughts later... Phil...
Phil Harrington
philsown
Offline Send Email
Feb 22, 2006
6:38 pm
3416
Hey guys, We have finally launched our application which we have been working on for nearly 1.5 years. The entire application is written in PHP Fusebox with a...
Ryan Hagan
ryan_hagan
Offline Send Email
Feb 22, 2006
11:08 pm
3417
I would love to try out the app, but it stops me at a page telling me that Konquerer (KDE 3.5) is an unsupported browser... - Mike Gatto...
Michael gatto
gatto_omar
Offline Send Email
Feb 22, 2006
11:22 pm
3418
Oh my. Egg on face. Oh, yeah. I guess I should have mentioned that the only supported browsers are Firefox, IE and Safari. I'm sorry!...
Ryan Hagan
ryan_hagan
Offline Send Email
Feb 22, 2006
11:27 pm
Messages 3389 - 3418 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help