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 3361 - 3392 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3361
In our application, the admin directory is password protected using htaccess in the Apache server ... if one enters an URL such as myapp.com/admin/index.php,...
Michael Peters
veloopity
Offline Send Email
Dec 2, 2005
11:39 am
3362
Hi Michael, Create and include/do an act_ file at the top of your admin fuseactions based on http://us3.php.net/features.http-auth Scroll down to the example...
Geoffrey Hoffman
m2guru
Offline Send Email
Dec 2, 2005
1:24 pm
3363
... Well, its displaying the page because the visitor is not accessing files under the url myapp.com/admin/. What you need to do is write a plugin for Fusebox...
Damien McKenna
d_mc_kenna
Online Now Send Email
Dec 2, 2005
3:11 pm
3364
Does anyone have a link to an introductory article to fusebox 3 and/or 4? Also, any questions about the devnotes app I posted recently: ...
G. T. Stresen-Reuter
tedmasterweb
Online Now Send Email
Dec 13, 2005
9:56 am
3365
Hi Ted, Sean Corfield has a collection of resources for Fusebox (albeit, with a ColdFusion focus) at the bottom of his dedicated page. They include articles on...
Roger Lancefield
rlancefield
Offline Send Email
Dec 13, 2005
11:48 am
3366
I have been making a major effort to keep my circuits easy to read, and streamlined. Basically I have a fuse that is pretty large, because I need to use ...
Owen Cole
tgknight
Offline Send Email
Jan 11, 2006
7:39 pm
3367
The short answer is fusebox cannot DO a variable action. A DO tag has to have a text value, due to the way the parser works. Phil _____ From: Owen Cole...
Phillip Harrington
philsown
Offline Send Email
Jan 11, 2006
7:43 pm
3368
*sigh* thanks. Back to the drawing board... Owen...
Owen Cole
tgknight
Offline Send Email
Jan 11, 2006
7:47 pm
3369
No problem. My generic advice: Simplify simplify simplify! _____ From: Owen Cole [mailto:owenc@...] Sent: Wednesday, January 11, 2006 12:49 PM To:...
Phillip Harrington
philsown
Offline Send Email
Jan 11, 2006
7:53 pm
3370
Hah here's some simplification ... I've tested and verified that I can use variables in <include> and am going with that now... Not exactly the same effect as...
Owen Cole
tgknight
Offline Send Email
Jan 11, 2006
8:15 pm
3371
When I first thought about your example, it seems like a logical enough. Then I realized that the XML directions tell the parser how to create parsed files,...
Geoffrey Hoffman
m2guru
Offline Send Email
Jan 12, 2006
6:42 am
3372
Basically, that's what I ended up with Geoff. I had been following an MVC example where all the queries were contained in their own circuit... After further...
Owen Cole
tgknight
Offline Send Email
Jan 12, 2006
2:04 pm
3373
If you're using MySQL, you might also look into the REPLACE INTO statement. It works a lot like an INSERT INTO statement, except it will decide to insert or...
Andrew Fabian
anddee2k
Offline Send Email
Jan 12, 2006
2:37 pm
3374
I am pretty much creating a CMS... For various projects it has been much easier for me to utilize an existing open-source package than to code my own from...
Owen Cole
tgknight
Offline Send Email
Jan 12, 2006
11:34 pm
3375
Excellent question. You are looking for single sign-on capabilities. This will almost always have to be a custom-coded solution as each application handles...
G. T. Stresen-Reuter
tedmasterweb
Online Now Send Email
Jan 13, 2006
12:05 pm
3376
Hey guys, One of my co-workers just sent this vulnerability to me. It looks like this was a PHP Fusebox 3 problem, but the problem persists in PHP Fusebox 4....
Ryan Hagan
ryan_hagan
Online Now Send Email
Jan 17, 2006
7:55 pm
3377
Don't ask me, heh... I've always just written my own tools as Fusebox circuits, and dropped them in as needed. That said, I would imagine any external library...
Mike
starkraving2002
Online Now Send Email
Jan 17, 2006
8:21 pm
3378
That's really funny, actually, because just yesterday I was reviewing that exact same code in my head and wondering if it wasn't a potential major hole. Thanks...
G. T. Stresen-Reuter
tedmasterweb
Online Now Send Email
Jan 18, 2006
11:04 am
3379
... yes, the problem apparently persists in Fusebox 4, but I can't find it in the Fusebox files ... where is it exactly? -Michael...
Michael Peters
veloopity
Offline Send Email
Jan 18, 2006
12:24 pm
3380
Can anybody tell me why it is (or could be) dangerous or harmful? Not in general, but in this specific (FB3/FB4) case. The Fusebox error never appears as a...
Mindaugas Pelionis
kewlariuz
Offline Send Email
Jan 18, 2006
1:06 pm
3381
Consider the case where an attacker inserts javascript code into a URL to read all of the user's cookies from whatever domain they're on, and then send those...
Andrew Fabian
anddee2k
Offline Send Email
Jan 18, 2006
2:00 pm
3382
It's in the fusebox4.runtime.php4.php file: fusebox4.runtime.php4.php (ln: 289) OLD: $attributes["fuseaction"] = ...
Ryan Hagan
ryan_hagan
Online Now Send Email
Jan 18, 2006
2:31 pm
3383
I agree that injection attacks need to be handled, but that goes for regular sites as well as Fusebox. Even if the core files are 'fixed' so that a fuseaction...
Mike
starkraving2002
Online Now Send Email
Jan 18, 2006
7:33 pm
3385
Hey guys, It was bound to happen. The site is growing so large and we're adding so many fuses that we're going to have to split the application up into sub...
Ryan Hagan
ryan_hagan
Online Now Send Email
Jan 30, 2006
5:17 pm
3386
... Which file is the application file? The circuits file? I haven't completely thought it through, but it seems to me the circuits file should be the only one...
Derek Scruggs
derekscruggs
Offline Send Email
Jan 30, 2006
5:47 pm
3387
Hey Ryan, Sharing circuits amongst multiple fuseboxes is ridiculously easy, so long as the different apps are on the same server and the same drive. Just use a...
Mike
starkraving2002
Online Now Send Email
Jan 30, 2006
5:48 pm
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
Online Now Send Email
Feb 12, 2006
1:19 pm
Messages 3361 - 3392 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