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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 3498 - 3528 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3498
Geoff, Try deleting the "$pPath." from the index.php file. PHP is surprisingly good about knowing where to look for files when using relative paths (as is the...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
May 1, 2006
12:31 pm
3499
That was the only thing I didn't try. lol....
Geoffrey Hoffman
m2guru
Offline Send Email
May 1, 2006
4:15 pm
3500
Hey Ted, Rather than deleting the $pPath var from the relative path, is there some change I should make in it so that it's more capable of handling every...
Mike
starkraving2002
Online Now Send Email
May 2, 2006
6:11 am
3501
Alright, here's an update: The alpha core for FB5 was released to the members of the Fusebox5 Yahoo! Group a while ago, which has a larger membership than the ...
Mike
starkraving2002
Online Now Send Email
May 2, 2006
6:31 am
3502
... Well, i may be wrong about the conclusion that that is the problem too... I just know that deleting it seems to have allowed me to get to the login page...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
May 2, 2006
10:13 am
3503
In a nutshell, I have a WAMP where I have myapp myapp/fbx myapp/modules therefore in fusebox.xml every path to circuits starts with ../modules/ When you run...
Geoffrey Hoffman
m2guru
Offline Send Email
May 2, 2006
6:24 pm
3504
I'll try to recreate it myself first. All my tests have been to fuseboxes where the fusebox.xml is the root of the app, and circuits nested within. Looks like...
Mike
starkraving2002
Online Now Send Email
May 2, 2006
6:54 pm
3505
Sounds good. On a somewhat unrelated note, is there a PLATFORM_PATH_SEPARATOR variable already in Fusebox somewhere? I figured there must be. Anyway it would...
Geoffrey Hoffman
m2guru
Offline Send Email
May 2, 2006
8:16 pm
3506
in PHP there is the constant DIRECTORY_SEPARATOR and if I'm not mistaken, some FB apps (possibly the core files as well) make use of $slash (or was that...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
May 2, 2006
10:21 pm
3507
... You made that up :p But, in FB you can access $application['fusebox']['osdelimiter'] Not sure how important that is though; according to the docs PHP will ...
Mike
starkraving2002
Online Now Send Email
May 2, 2006
10:28 pm
3508
Hi all, any body know or have a sample FB4 for company profile such as about,services,client, news,gallery,contact or cms fusebox :) ? thank you....
Dave Muhammad
dave@...
Send Email
May 3, 2006
5:24 am
3509
Hey guys, I'm posting this here because this morning I needed something quick in order to work around a host that wasn't willing to give me 0777 access to the...
Mike
starkraving2002
Online Now Send Email
May 4, 2006
7:50 pm
3510
When I hit a page with the following code, and then hit reload several times, my cookie still has plenty of data in it. I have a var_dump($_COOKIE) at the...
Geoffrey Hoffman
m2guru
Offline Send Email
May 5, 2006
11:35 pm
3511
For what it's worth, I figured out my problem... here's a fix in case anyone is listening: the trick was: $K ."[". $M ."]" not $K[$M] for the cookie name! ...
Geoffrey Hoffman
m2guru
Offline Send Email
May 6, 2006
12:07 am
3512
Just ran across this: http://ca3.php.net/manual/en/ref.shmop.php It appears that it requires PHP to be compiled with --enable-shmop. I just checked on my...
Mike
starkraving2002
Online Now Send Email
May 6, 2006
3:30 pm
3513
Hi Ted, The way it's done in ColdFusion is to cache it on the server, not in the session at all. In CF with #application.fusebox#, the variable 'fusebox' is...
Mike
starkraving2002
Online Now Send Email
May 7, 2006
4:25 am
3514
Hi all, Before we put these up publicly as 'official' core files, we'd like some feedback on performance, as well as acid tests for any possible problems that...
Mike
starkraving2002
Online Now Send Email
May 7, 2006
6:28 pm
3516
... wrote: ^^ Banned!...
Mike
starkraving2002
Online Now Send Email
May 16, 2006
7:03 am
3517
Following up here, has anyone tried these new core files? Feedback needed... Mike www.fusebuilder.net ... ...
Mike
starkraving2002
Online Now Send Email
May 16, 2006
5:31 pm
3518
Arrrg.... Mike... I wish I could say I have, but I've been so damn busy I haven't had time to brush my teeth let alone try out the new files... I'll see if I...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
May 16, 2006
8:28 pm
3519
I wish I could, but unfortunately your point # 3c you mention will break my application's security and menu system.. My current app is going into production in...
Owen Cole
tgknight
Offline Send Email
May 16, 2006
8:35 pm
3520
Please excuse my lagging behind here, but... Is that alleged vulnerability fix in the runtime core file in this update? Changing $attributes["fuseaction"] = ...
Christopher Watson
skygxproject
Offline Send Email
May 16, 2006
8:43 pm
3521
Hi Christopher, Yes, the message text in the exceptions thrown by the core files have all the html escaped in them. Mike www.fusebuilder.net ... update? ... ...
Mike
starkraving2002
Online Now Send Email
May 16, 2006
8:47 pm
3522
Hi Owen, This should be easy to work around, in your security code you just have to make sure you require_once() the circuit file before running any logic that...
Mike
starkraving2002
Online Now Send Email
May 16, 2006
8:56 pm
3523
Hi Mike, Well yes, if you recall I am using a modified version of your permissions script, so it all occurs in fusebox.init.php :) I think I understand what...
Owen Cole
tgknight
Offline Send Email
May 16, 2006
9:52 pm
3524
... Unfortunately it's not quite that easy from fusebox.init, because it's included in the request before $myFusebox is created. It's also included before...
Mike
starkraving2002
Online Now Send Email
May 17, 2006
6:50 pm
3525
... Right I should have realized this from the fact that $myFusebox isn't used in the permissions script. ... Ok I see, I hope my questions aren't redundant,...
Owen Cole
tgknight
Offline Send Email
May 17, 2006
8:01 pm
3526
... name of ... In the main $application datafile, the ['circuits'] array will exist but will be empty. I'll see what happens if I put in just the children as...
Mike
starkraving2002
Online Now Send Email
May 17, 2006
8:38 pm
3527
On sourceforge there are two modules in CVS: phpfb41 and "co -P phpfb4_1". I'm assuming we want the first one, phpfb41. Please advise. Ted...
G. T. Stresen-Reuter
tedmasterweb
Offline Send Email
May 19, 2006
12:19 pm
3528
Hey, guys i have a few question regarding best usage of fusebox, please read my semantics below...because its complicated a little.. single...
Adrianyong
h_tere2000
Offline Send Email
May 24, 2006
4:03 am
Messages 3498 - 3528 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