RE: [PHP-DEV] ini question

2002-09-20 Thread David Viner
thanks... i got this working properly. dave -Original Message- From: David Viner [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 9:05 AM To: Php-Dev@lists. php. net Subject: RE: [PHP-DEV] ini question Here is my modified php_init_handler from mod_php4.c static void

RE: [PHP-DEV] ini question

2002-09-20 Thread David Viner
] Sent: Thursday, September 19, 2002 6:25 PM To: David Viner Cc: Php-Dev@lists. php. net Subject: RE: [PHP-DEV] ini question > I am sure that you are correct, Rasmus, and apache is calling it twice, but > what I don't understand is, why are the messages not identical? Because we check

RE: [PHP-DEV] ini question

2002-09-19 Thread Rasmus Lerdorf
> I am sure that you are correct, Rasmus, and apache is calling it twice, but > what I don't understand is, why are the messages not identical? Because we check for it? Sorry, I didn't actually read through your code examples, but I bet if you trace back you will find that the apache_php_initial

RE: [PHP-DEV] ini question

2002-09-19 Thread David Viner
same "php_ini_handler: starting to run" not printed the second time? And, why does the parser no longer call the lexer? I am sure that you are correct, Rasmus, and apache is calling it twice, but what I don't understand is, why are the messages not identical? dave -Original Mes

RE: [PHP-DEV] ini question

2002-09-19 Thread Rasmus Lerdorf
Apache calls the module startup hook twice. On Thu, 19 Sep 2002, David Viner wrote: > After some further tweaking and fprintf-ing, it appears that the second > round of parser print-outs somehow do not rely upon the lexer in > zend_ini_scanner.l. So I am completely unsure of what is going on. >

RE: [PHP-DEV] ini question

2002-09-19 Thread David Viner
s why it happens a second time. thanks dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 4:35 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-DEV] ini question Can you provide some context? Devon Original Messag

RE: [PHP-DEV] ini question

2002-09-19 Thread [EMAIL PROTECTED]
Can you provide some context? Devon Original Message: - From: David Viner [EMAIL PROTECTED] Date: Thu, 19 Sep 2002 16:16:18 -0700 To: [EMAIL PROTECTED] Subject: RE: [PHP-DEV] ini question After some further tweaking and fprintf-ing, it appears that the second round of parser

RE: [PHP-DEV] ini question

2002-09-19 Thread David Viner
After some further tweaking and fprintf-ing, it appears that the second round of parser print-outs somehow do not rely upon the lexer in zend_ini_scanner.l. So I am completely unsure of what is going on. Is there any documentation that I should read to help me understand this? (I own and have ex