RE: [PHP] Cache engines in a multi-tenant environment (a bit long)

2009-03-03 Thread Damon Miller
Thanks very much for your response. I was surprised at APC's behavior (thinking that files in different directories would be treated as different entities) but I couldn't explain the behavior I was seeing otherwise. However, that may be a function of APC specifically and not all PHP cache

[PHP] Cache engines in a multi-tenant environment (a bit long)

2009-03-03 Thread Damon Miller
m imagining a simple list of directories that instructs the cache engine to keep their caches separate. This might even be implemented by incorporating the directory name into the key used for lookups, but frankly I haven't spent much time looking at APC's code (nor have I looked at XC

[PHP] PHP Sessions - One Server, Many Terminals

2004-03-16 Thread Damon Abilock
How do I get my script to recognize that it is being accessed by different terminals, even though it is really only one physical computer (the server that all of these terminals have a view into)? Is there any other solution? Cheers, Damon -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Still error messages!!

2004-01-28 Thread Damon Hill
, instead of posting it to a list for help. That way you cut down on the number of email messages I receive and also learn something in the process. Now, echo it to the screen and see what it says :-) M Damon Hill Senior Technical Lead IFWorld, Inc. www.ifworld.com Go Hogs! "People demand fr

RE: [PHP] Passing POST variables w/out a FORM submit

2003-11-13 Thread Damon Hill
Ok, after looking over the code to do the POST manually on your website Chris, I think I haven't been clear on what needs to happen. I apologize. A web browser executes the following code: http://..com/~damon/stvalerydown s/docs/ww w/flash/platMap.php?getPlatList

[PHP] Passing POST variables w/out a FORM submit

2003-11-13 Thread Damon Hill
and acreage. I have the PHP script written, however, I am not privy to how to create the POST or GET response without a FORM. If there is some way to accomplish this, please let me know. Thanks in advance for the help. Cheers, M Damon Hill Senior Technical Lead IFWORLD, Inc. www.ifworld.com

[PHP] creating a POST response to pass arguments to another file

2003-11-13 Thread Damon Hill
flash. I have no control over the flash code as I am coming in as a third party for it. However, I have written the PHP script, but just need to know how to construct the GET or POST response to send back to the flash movie. Thanks in advance. M Damon Hill Senior Technical Lead IFWORLD, Inc

[PHP] Re: register_globals won't turn off!

2003-09-27 Thread Damon Kohler
Ok. I'll get around to that sometime. But I think to start, I'll use that code from php|a that unregisters globals and such. Guess that is a smart thing to do. Never know when it's gonna fail like that. Thanks for your help all, Damon "Greg Beaver" <[EMAIL PROTE

[PHP] Re: register_globals won't turn off!

2003-09-27 Thread Damon Kohler
I added the error_reporting line and it doesn't seem to make any difference actually. No warnings or notices. Yes, I can recompile PHP. Damon "Greg Beaver" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > if you append ?test=foo to the url yo

[PHP] Re: register_globals won't turn off!

2003-09-27 Thread Damon Kohler
Don't know anything about an auto_prepend_file. There is no .htaccess file. Beside, phpinfo says register_globals is off both globaly and localy. Damon "Greg Beaver" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi Damon, > > Do you have an auto_

Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
I don't think so... You have something particular in mind? You can check out the page itself at http://my.innermetrix.cc/test.php Damon "Robert Cummings" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Are you using third party code that might be doing the

[PHP] Re: register_globals won't turn off!

2003-09-27 Thread Damon Kohler
I changed the code to the snippet below. It displays register globals off. Damon "; $register_globals = (bool) ini_get('register_gobals'); print "register globals: " . ($register_globals ? "on" : "off"); phpinfo(); ?> "Jon Kr

Re: [PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
No, it's not cached. I can type in anything to the input and it'll show up. As in, if I type "test" into the form, it prints test. Then if I type "hello world" it'll print hello world. So I'm pretty sure caching isn't the problem. Damon "Cris

[PHP] register_globals won't turn off!

2003-09-27 Thread Damon Kohler
espite the fact it's printing $test and not $_POST['test']. This is copy pasted from the results: register_argc_argv Off Off register_globals Off Off I'm completely stumped. Thanks in advance, Damon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] how do I strip out data from a url?

2003-04-04 Thread Damon
Hi, I have a realatively easy problem that I need help on. I want to take a 10-digit number out of a referring url and put it in a variable. Eg. www.jimmy.com/mypage/xyz0123456789xyz/index.php I just need the 10-digit number from this string. Thanks! Damon -- PHP General Mailing List