Re: [PHP] Failing FastCGI PHP

2006-05-15 Thread Mike Milano
chris smith wrote: On 5/14/06, Frank de Bot <[EMAIL PROTECTED]> wrote: I'll start by compiling php with --enable-debug At the moment I get backtrace results like this: #0 0x48c7d95b in memcpy () from /usr/lib/libc_r.so.4 #1 0x8977280 in ?? () #2 0x10 in ?? () #3 0x894e500 in ?? () #4 0x89

[PHP] dynamic loading and build configurations

2006-03-30 Thread Mike Milano
What exactly does the --with in --with-curl mean? I've built php5.1.2 on windows, and I thought that it would compile curl into the binary. It does not. I still need to declare CURL as an extension in the php.ini file for it to work. i.e. extension=php_curl.dll Is this normal behavior? The

[PHP] Re: PHP installation determination

2006-03-28 Thread Mike Milano
Bronislav Klucka wrote: Hi, I'm using 2 copies of PHP 1/ on local computer for developing 2/ on web server regular running webs Is there any way to determine what PHP i'm using? "Where am I?". Can I somehow define my own constant in php.ini? Brona Is the server IP good enough for this? $_SE

Re: [PHP] --enable-radius, not found

2006-03-28 Thread Mike Milano
Chris wrote: Mike Milano wrote: I'm trying to compile PHP with radius enabled. I have the pecl source and I can use other pecl extensions just fine. When I type: cscript /nologo configure.js --help, I do not see any option for radius. I've also tried to compile the dll by itse

[PHP] --enable-radius, not found

2006-03-27 Thread Mike Milano
system is WinXP using the platform SDK for Win2k to compile. I get the same results compiling in VC7. Any insight into what might be causing this would be greatly appreciated. Thank you, Mike Milano -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Error Suppression with '@'

2005-08-08 Thread Mike Milano
my guess is that he is just trying to avoid errors in case the variable is not an actual array. arrays can easily be tested for by using: is_array( $myarray ); another way to manage arrays is to initialize them before you do anything with them. i.e.: $myarray = array(); this way if you need