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 to share photos of your group with the world? 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 395 - 424 of 4156   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
395
The following items was added to Zend.com in the past 7 days. Building a Time Management Billing System using PHP By Patrick Delin [02.JAN.2002] This tutorial...
natureloversparadise
naturelovers...
Offline Send Email
Jan 2, 2002
3:57 pm
396
I am trying to figure out how to extract my fusedocs from applications files. I was thinking of just using ereg() to do it, but it doesn't seem to work, so I...
tca_ky
Offline Send Email
Jan 7, 2002
3:16 pm
397
Well, I'm not a master of regular expressions, but I don't understand ... <?php // Extract Fusedoc $file = '<?php /* <fusedoc fuse="XXX.php"> <someTags/> ...
Ferdinand Beyer
fbeyer@...
Send Email
Jan 7, 2002
3:58 pm
398
I guess that makes me not even a newbie at regexp then! :) Thanks for your help...that will work perfectly from what I can see :) I think I need lessons in not...
tca_ky
Offline Send Email
Jan 7, 2002
6:15 pm
399
http://www.synthis.com/communities/fusebox/index.html...
kristof_polleunis
kristof_poll...
Offline Send Email
Jan 8, 2002
2:37 pm
400
Reason why I'm asking is because I want to have this: http://www.zend.com/zend/tut/tutsweatpart1.php#Heading4 kind of structure (scroll down, plz) for my...
kristof_polleunis
kristof_poll...
Offline Send Email
Jan 8, 2002
2:40 pm
401
Okay, I am not speaking from personal experience, because I don't really have any, and I have never used a templating engine, per se. I have read about ...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
3:33 pm
402
In the _dsp files, can someone execute *any* CF or PHP? That's a security risk. It's one we live with in our dev environment because everyone is trusted, but...
Michael Kimsal
mgkimsal
Offline Send Email
Jan 8, 2002
3:41 pm
403
Okay, I'll buy that. Since it has been a while since I wrote Fusebox in a team environment larger than two people, that was not in the fore of my mind. I also...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
3:59 pm
404
I am trying to come up with: a) an understanding of securing parts of a fusebox application to require validation b) a method of implementing the above. So far...
tca_ky
Offline Send Email
Jan 8, 2002
4:19 pm
405
... I'm not necessarily arguing FOR it, but giving a reason why some would choose it. Personally, we don't use that approach in our projects, but it's good to...
Michael Kimsal
mgkimsal
Offline Send Email
Jan 8, 2002
4:28 pm
406
Hi Keith, Being new to PHP I'm interested in the same things myself, although I've been following advice from the lead guys like Hal Helms and Steve Nelson ...
SPENCER, Chris
cspencer@...
Send Email
Jan 8, 2002
4:54 pm
407
Chris, In some ways doing fusebox in CF is much easier...the custom tags and such. Though I think David has done a brilliant job with his port of FB to php!...
tca_ky
Offline Send Email
Jan 8, 2002
5:50 pm
408
The basic reason is that I ALWAYS disable register_globals. (I wrote an article about why and how I do this here: ...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
6:43 pm
409
... Dang, more untested waters-- this is part of the more-developed ColdFusion side of Fusebox. I have not yet seen (or built) a version of Test Harness for ...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
6:54 pm
410
Hi all FWIW, you might want to consider using the new PHP 4.1.x array names. My host hasn't upgraded yet so I've put this at the top of my app to make it...
Ross Keatinge
tetranz
Offline Send Email
Jan 8, 2002
7:03 pm
411
... Aha! I knew there was more to it! SO if you have both register_globals and track_vars disabled, how do you access the post, get, cookie and session vars?...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
7:48 pm
412
I don't know but I suspect that they are not available at all then. ... __________________________________________________ Do You Yahoo!? Send FREE video...
Ross Keatinge
tetranz
Offline Send Email
Jan 8, 2002
8:22 pm
413
Hey, we've got some smarties on this list! I was wondering if anyone knows how to do a simple count of current sessions on a site. I have seen sites that say...
David Huyck
davidhuyck
Online Now Send Email
Jan 8, 2002
8:30 pm
414
They ARE available. Post vars in $HTTP_POST_VARS array, get vars in $HTTP_GET_VARS array.. Guess what does $HTTP_COOKIE_VARS array contain? Session vars are...
Mindaugas Pelionis
kewlariuz
Offline Send Email
Jan 8, 2002
8:36 pm
415
Umm .... I'll give that some thought. Some of the comments at http://www.php.net/manual/en/ref.session.php are interesting. One of them says this: "When using...
Ross Keatinge
tetranz
Offline Send Email
Jan 8, 2002
8:43 pm
416
I'm pretty sure they don't use PHP-native session code. They have their own database-based session classes or libraries. These classes save a cookie with...
Mindaugas Pelionis
kewlariuz
Offline Send Email
Jan 8, 2002
8:43 pm
417
David was asking how you get these variables if register_globals and track_vars are both off. These arrays would not be available then. Ross ... ...
Ross Keatinge
tetranz
Offline Send Email
Jan 8, 2002
8:46 pm
418
I forgot to mention that database-based session code is quite a bit slower than native. But anyway, IMO it's feature set makes it worth a bit slower ...
Mindaugas Pelionis
kewlariuz
Offline Send Email
Jan 8, 2002
8:47 pm
419
i've been incorporating phplib into my php/fusebox projects to handle user/session functions, and to retrieve a list of active sessions you only need to query...
Bob
maxbobby2001
Offline Send Email
Jan 8, 2002
8:51 pm
420
Sorry, I might have missed that track_vars are off. But even if it disables $HTTP_*whatever*_VARS, you can still access $GLOBALS['REQUEST_URI'] , analyze it...
Mindaugas Pelionis
kewlariuz
Offline Send Email
Jan 8, 2002
9:07 pm
421
I do not know about using it with smarty, But I use php Fusebox and Template Power for www.hatebis.com Regards Eko ... From: "kristof_polleunis"...
Boy Next Door
ekobudi@...
Send Email
Jan 9, 2002
9:48 am
422
Hi gang, I've just completed a very tiny fusebox 3 app. It all works fine locally but when I upload it to my host (one of those free php hosts) I get a series...
Vaughan Evans
lists@...
Send Email
Jan 10, 2002
1:24 am
423
__________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/...
Jerry Leonard
gcarlyle22
Offline Send Email
Jan 10, 2002
1:25 am
424
The function not found is probably a case of you using the $ symbol in front of the function call. I do that ALL THE TIME :-P Phil ... From: "Vaughan Evans"...
Phillip Harrington
philsown
Offline Send Email
Jan 10, 2002
1:29 am
Messages 395 - 424 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