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...
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...
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@...
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...
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...
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 ...
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...
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...
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...
... 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...
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@...
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!...
... 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 ...
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...
... 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?...
I don't know but I suspect that they are not available at all then. ... __________________________________________________ Do You Yahoo!? Send FREE video...
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...
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...
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...
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...
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 ...
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...
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...
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@...
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@...
Jan 10, 2002 1:24 am
423
__________________________________________________ Do You Yahoo!? Send FREE video emails in Yahoo! Mail! http://promo.yahoo.com/videomail/...
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"...