Re: [PHP] php_flag enable_dl

2005-07-28 Thread Justin Mazzi
php_admin_value enable_dl 1 does the trick. Thanks! Jochem Maas wrote: Justin Mazzi wrote: Can anyone tell me why this adding that to a vhost in apache 1 series does not work? The docs says you can use enable_dl per vhost. kinda guesswork, try one of: php_flag enable_dl 1 php_value

Re: [PHP] application-wide shared data/object

2005-07-28 Thread Justin Mazzi
http://eaccelerator.net/HomeUk Will keep scripts cached in memory etc. Maybe this is along the lines of what you are looking for. Aiguo Fei wrote: Thanks your insightful comments. Clearly scalability is a concern for large scale applications. One has to be discreet with it if such a facility i

[PHP] php_flag enable_dl

2005-07-28 Thread Justin Mazzi
Can anyone tell me why this adding that to a vhost in apache 1 series does not work? The docs says you can use enable_dl per vhost. -Justin Mazzi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Class within a class

2003-02-10 Thread Justin Mazzi
I have made a Mysql database class. I wanted to know how I could use that class in another class without using extend. For example: include 'db.php'; $db = new db(); ...some php code... class blah { var $test = 1; function blah() { .. $db->

RE: [PHP] Object In a class

2003-02-10 Thread Justin Mazzi
How you can you use an object that is already an instance? -Original Message- From: John Wells [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 09, 2003 4:21 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Object In a class Justin Mazzi said: > Can anyone tell me

[PHP] Object In a class

2003-02-09 Thread Justin Mazzi
Can anyone tell me how to use an object within an object. Example class blah { var $test; var $test2; function test() { $this->do(); } } then you want to use that class in a new one. class blah2 { var $test; var $test2;