[PHP-DEV] snaps.php.net ???

2002-01-11 Thread benjamin yates
snaps.php.net is redirecting to www.php.net ... is it gone? anyone know? -benjamin -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

Re: [PHP-DEV] Question: Should exit() print out the integer exit-status?

2001-12-20 Thread benjamin yates
No offense Benjamin, but you don't understand the conversation. This is about running PHP apps in consoles, mail pre-processors and as cron jobs where exit status is needed. The only way to get an exit status is with exit. wow i just tried it... i never realized that return wasn't

Re: [PHP-DEV] Question: Should exit() print out the integer exit-status?

2001-12-19 Thread benjamin yates
Two reasons: one more... (3) exit is as forbidden as goto so stop using it. -benjamin _ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] Question: Should exit() print out the integer exit-status?

2001-12-19 Thread benjamin yates
What are you talking about? 1) Setting the exit status of a process is common. 2) Try and right any kind of executer/parser that performs well without goto's 1 - u can return a value just fine (and silently :) with return, and having multiple exit points i've always thought was bad design...

Re: [PHP-DEV] Apache2Filter crashes on Windows

2001-12-17 Thread benjamin yates
Sebastian Bergmann wrote: Setup: Windows 2000, Apache 2 (current CVS), PHP 4 (current ap_save_brigade(ap_filter_t * 0x00564f00, apr_bucket_brigade * * btw i get this as well... i believe it to be directly related to bugs #14474 #14358, and possibly #14529. i think it's the same problem

Re: [PHP-DEV] ftp extension for windows?

2001-12-13 Thread benjamin yates
Is there any reason why the ftp module is not available as a msvc project in php_modules? ftp is standard in php, so it isn't in the modules workspace. you'll find the source for it included in the php4tsdll core source files along with mysql odbc etc... personally, i take out mysql

Re: [PHP-DEV] ftp extension for windows?

2001-12-13 Thread benjamin yates
it's built-in and IMO all modules that don't require external libraries should become it too. however, to most users it probably wouldn't matter... but i wouldn't because then to update a module you would have to rebuild the whole project. and if you're updating a remote server, you

Re: [PHP-DEV] Bug #14463 Updated: module problems

2001-12-13 Thread benjamin yates
ID: 14463 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Bogus I got a problem with php and apache (1.3.2.2). When running php as a module some pages doesn't load correctly, for example when doing a phpInfo(); the site just flashes by and then displays a 404

Re: [PHP-DEV] ftp extension for windows?

2001-12-13 Thread benjamin yates
it's built-in and IMO all modules that don't require external libraries should become it too. however, to most users it probably wouldn't matter... but i wouldn't because then to update a module you would have to rebuild i'm not sure what you mean by this... you aren't going to

[PHP-DEV] NULL vs false

2001-12-13 Thread benjamin yates
can anyone explain any differences between null and false? they seem interchangeable - maybe it's something for backwards compatibility? -benjamin -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP-DEV] Bug #14474: Apache PHP Module cannot seem to handle large amounts of output

2001-12-12 Thread benjamin yates
Bug description: Apache PHP Module cannot seem to handle large amounts of output Note: this seems to be the same problem as #14222, but I can't seem to (my origignal bug was #14358 btw) i have this same problem, and i have E_ALL errors on, and i've never had this error in my logs (i just

Re: [PHP-DEV] Bug #14459: output error

2001-12-12 Thread benjamin yates
all my pages still work fine, i still can query the database but i get this error at the bottom.. I am using Win 2000, MS-SQL server 7.0, and Apache 1.3.20 Warning: MS SQL error: Invalid parameter in DB-LIBRARY function reference. (severity 11) in Unknown on line 0 i have had the same

Re: [PHP-DEV] sockets problems patch

2001-12-09 Thread benjamin yates
The problem with the zip file he sent is also that a: ]$ diff -uN orig new produces a unified diff with almost all of it being whitespace related, so its near impossible to view the changes... that's what i did;-) hmmm i think it's more a cr/lf thing... my diff

[PHP-DEV] php.ini missing entries for mssql

2001-12-09 Thread benjamin yates
php.ini-dist and -recommended are missing some mssql entries... mssql.timeout mssql.connect_timeout mssql.datetimeconvert also, the mssql error handler needs to store it's string for retrieval, not just the message handler. i patched mine to just fill the same server_message with it

[PHP-DEV] sockets problems patch

2001-12-08 Thread benjamin yates
hey all... i've been using the sockets extension pretty extensively for the past couple months, and it has some real problems. obviously the best reason for it is the ability to use non-blocking sockets in php, which is great for writing simple tcpip clients and services. i've done this with

[PHP-DEV] apache/apache2 module questions...

2001-12-08 Thread benjamin yates
can anyone offer some advice on building/debuging the apache apache2 modules? i've been trying to use either of these for a long time with no success at all... on win32. one interesting thing is that both 1.3 2.x produce similar results for me. i recently opened a bug (14358) about it,

Re: [PHP-DEV] Re: [PHP] PHP XML

2001-12-07 Thread benjamin yates
Most people never mix XML and PHP in the same file. Let's not inconvenience the masses for the benefit of the few. -Rasmus Yet another good reason to get rid of them. :) --Jani please never get rid of them... ?php is terrible !! so much typing... and i thought php largely about rapid

Re: [PHP-DEV] Re: [PHP] PHP XML

2001-12-07 Thread benjamin yates
please never get rid of them... ?php is terrible !! so much typing... and i thought php largely about rapid development :) Three extra characters? Surely there are more significant issues in development to fret over than this. it's a big difference... the first two chars are both

Re: [PHP-DEV] Re: [PHP] PHP XML

2001-12-07 Thread benjamin yates
Guys, relax. No, this does not work. The only reason your example works is because min() is a built-in PHP function already. man now i am crushed... i knew it wouldn't work - that's why i never tried. i was so amazed when i tried that i must have been blind to the fact that i chose a bad

[PHP-DEV] hello sockets

2001-12-01 Thread benjamin yates
hey guys... i just joined the list. what's the best way to submit a patch? the sockets extension has some real problems. i worked with daniel on some win32 issues with it, but there are some others... a while back i grabbed the latest cvs source and patched it, and i sent my modified