[PHP-DEV] PHP 4.0 Bug #9319: join function joins in reverse order in one specific instance.

2001-02-17 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux kernel 2.4.0 PHP version: 4.0.4 PHP Bug Type: Arrays related Bug description: join function joins in reverse order in one specific instance. $arr1 = array("dog","cat","bird","fish"); echo join(" = ",$arr1);

[PHP-DEV] Bug #14662: Apache segvs on SIGHUP

2001-12-22 Thread nick
From: [EMAIL PROTECTED] Operating system: rh 6.2 PHP version: 4.1.0 PHP Bug Type: Apache related Bug description: Apache segvs on SIGHUP If the webserver is sent a sighup and php4 and mod_ssl are compiled into the server it will segv Unable to create SSL context (OpenSSL

[PHP-DEV] Bug #12245: gettype(true && true) returns "integer"!

2001-07-19 Thread nick
n. Thus the following code: function is_true($val) { return (is_bool($val) && $val); } echo (is_true(true) ? 'T' : 'F'),"\n"; echo (is_true(is_true(true)) ? 'T' : 'F'),"\n"; gives T F -- Nick -- Edi

[PHP-DEV] Bug #12247: ternary ?: loses references

2001-07-19 Thread nick
rn_ref_ternary(&$arg1, &$arg2, $cond) { return ($cond ? $arg1 : $arg2); } $arg1 = '1'; $arg2 = '2'; $res =& return_ref($arg1, $arg2, false); $res = 'xx'; echo "[$arg1] [$arg2]\n"; $arg1 = '1'; $arg2 = '2'; $res =&am

[PHP-DEV] Bug #12448: Disturbing memory corruption/crash

2001-07-28 Thread nick
08e000) libgdbm.so.2 => /usr/lib/libgdbm.so.2 (0x400a5000) libc.so.6 => /lib/libc.so.6 (0x400ac000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x4000) Cheers, Nick -- Edit bug report at: http://bugs.php.net/?id=12448&edit=1 -- PHP Development Mailing L

[PHP-DEV] Bug #12454: Static references are transient inside methods

2001-07-29 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Variables related Bug description: Static references are transient inside methods Another unfortunate bug with references appears to be that statics holding references inside methods are actuall

[PHP-DEV] PHP 4.0 Bug #10106: Garbage files created when trying to load an extension which doesn't exist(?)

2001-04-01 Thread nick
o such file or directory in Unknown on line 0 php info: './configure' '--with-apache=../apache_1.3.14' '--enable-track-vars' '--enable-ftp' '--with-gd=/home/nick/graph/gd-1.8.3' '--with-msql' '--with-mysql=/var/lib/mysql' '

[PHP-DEV] PHP 4.0 Bug #10206: PHP in CGI mode fails to perform OCILogon

2001-04-06 Thread nick
From: [EMAIL PROTECTED] Operating system: IIS 4.0, NT Server 4.0 SP6 PHP version: 4.0.4pl1 PHP Bug Type: OCI8 related Bug description: PHP in CGI mode fails to perform OCILogon When I use php in CGI mode any script can't connect to the Oracle DB throught the OCILogon call.

[PHP-DEV] PHP 4.0 Bug #10259: General protection fault in php4ts.dll

2001-04-10 Thread nick
From: [EMAIL PROTECTED] Operating system: NT Server 4.0 SP6a, IIS4.0 PHP version: 4.0.4pl1 PHP Bug Type: IIS related Bug description: General protection fault in php4ts.dll after 4 or 5 five days of using PHP in ISAPI mode becomes unstable. System's event log contains such

[PHP-DEV] PHP 4.0 Bug #10206 Updated: PHP in CGI mode fails to perform OCILogon

2001-04-10 Thread nick
ID: 10206 User Update by: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: OCI8 related Description: PHP in CGI mode fails to perform OCILogon Jani, php manual suggests to set such enviroment variables: ORACLE_HOME - seems to be path to a directory where an ORACLE product is. Am I

[PHP-DEV] Bug #10582: Error message corruption -- possible infinite loop

2001-05-01 Thread nick
cond error message leads me to think there may be something obvious to look at. The script.php uses sessions, trans-sid and use_cookies 1 Nick. -- Edit Bug report at: http://bugs.php.net/?id=10582&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-ma

[PHP-DEV] Bug #10259 Updated: General protection fault in php4ts.dll

2001-05-14 Thread nick
ID: 10259 User Update by: [EMAIL PROTECTED] Status: Closed Bug Type: IIS related Operating system: NT Server 4.0 SP6a, IIS4.0 PHP Version: 4.0.4pl1 Description: General protection fault in php4ts.dll 4.0.5 seems to be stable. It have been working 6 days and is still OK. Previous Comments: --

[PHP-DEV] Bug #14436: odbc_fetch_row crashes PHP with aliased table

2001-12-11 Thread nick
From: [EMAIL PROTECTED] Operating system: WinNT PHP version: 4.0.6 PHP Bug Type: ODBC related Bug description: odbc_fetch_row crashes PHP with aliased table When using odbc_fetch_row() with specific queries, the PHP module attempts to write to a NULL pointer, which crashes A

[PHP-DEV] Bug #14436 Updated: odbc_fetch_row crashes PHP with aliased table

2001-12-13 Thread nick
ID: 14436 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: ODBC related Operating System: WinNT PHP Version: 4.1.0 New Comment: Bug has been reproduced in PHP 4.1.0, so I've updated the PHP Version number. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #8885: Child processes hang on exit

2001-01-24 Thread nick
From: [EMAIL PROTECTED] Operating system: 4.1 BSDI BSD/OS PHP version: 4.0.4pl1 PHP Bug Type: Reproduceable crash Bug description: Child processes hang on exit Child (or the main) processes hang whenever they try to exit. This will happen when maxrequestsperchild is reached

[PHP-DEV] PHP 4.0 Bug #8885 Updated: Child processes hang on exit

2001-01-27 Thread nick
ID: 8885 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: Reproduceable crash Description: Child processes hang on exit More info... If I don't compile ttf into gd, it doesn't crash... Previous Comments: --- [2001-

[PHP-DEV] Bug #12566: Cascaded ternaries evaluate incorrectly

2001-08-04 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: *Programming Data Structures Bug description: Cascaded ternaries evaluate incorrectly The following emits 'two' rather than 'one' as one would expect. $a = 1; $b = 2; echo (($a == 1) ? 'on

[PHP-DEV] Bug #12569: Consistent Apache crash on 22nd request in Zend Optimiser

2001-08-04 Thread nick
85 in make_child () ---Type to continue, or q to quit--- #27 0x811dc06 in startup_children () #28 0x811e27d in standalone_main () #29 0x811eacc in main () #30 0x400c4a5e in __libc_start_main () at ../sysdeps/generic/libc-start.c:93 (gdb) Nick -- Edit bug report at: h

[PHP-DEV] Bug #12574: Documented void session_end() doesn't exist

2001-08-05 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Session related Bug description: Documented void session_end() doesn't exist The manual states: "Description void session_end () End the current session and store session data." Call

[PHP-DEV] Bug #12575: Session register & destroy flaws/bugs(?)

2001-08-05 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Session related Bug description: Session register & destroy flaws/bugs(?) Whilst the PHP session support is a great feature, handling session state as of 4.0.6 is inconsistent and arguably flawe

[PHP-DEV] Bug #12578: Segfault with vanilla php in apache

2001-08-05 Thread nick
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.6 PHP Bug Type: Reproducible crash Bug description: Segfault with vanilla php in apache With vanilla php (rasmus take note please), here's a b/t from the latest segfaults. Actually looks like possibly the same

[PHP-DEV] Bug #12783: xmlDocFile needs absolute path

2001-08-15 Thread nick
heers, nick -- Edit bug report at: http://bugs.php.net/?id=12783&edit=1 -- 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 PROTECTED]

[PHP-DEV] Bug #13107: php_ini.c:197 coding bug

2001-09-03 Thread nick
From: [EMAIL PROTECTED] Operating system: All PHP version: 4.0.6 PHP Bug Type: Scripting Engine problem Bug description: php_ini.c:197 coding bug Probably should be sizeof(char*) rather than sizeof(zval) here as zend extension paths are stored as a strings rather than zvals,

[PHP-DEV] Bug #13192: PHP fails to execute programs

2001-09-07 Thread nick
From: [EMAIL PROTECTED] Operating system: NT server 4.0 sp 6a PHP version: 4.0.6 PHP Bug Type: IIS related Bug description: PHP fails to execute programs In the ISAPI mode PHP constantly fails to execute external programs throught any function (systemm, exec etc.) i.e.

[PHP-DEV] Bug #13475 Updated: Patch For Sybase stored procedure return values and and output params

2001-10-04 Thread nick
sybase_output_params() is called many times. Please download the corrected patch in its entirety at http://www.marden.org/php-sybase-ct/ Nick Previous Comments: [2001-09-28 16:46:39] [EMAIL PROTECTED] Ignore the comment

[PHP-DEV] CVS Account Request: tsirman

2003-01-27 Thread tsirakis nick
translation of php manual in Greek -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Feature ./ correction to design flaw request

2002-10-10 Thread Nick Lindridge
Hello, Although most globals are correctly handled in PHP for thread safety, the zend_execute and zend_compile_file hooks are not given slots in any TS memory. It would be beneficial to correctly give these globals TS slots. n. -- PHP Development Mailing List To unsub

Re: [PHP-DEV] Feature ./ correction to design flaw request

2002-10-14 Thread Nick Lindridge
>why would one want to have different executors/compilers in >different threads? I can't answer this question Thies, and one could achieve it as-is by having a thread safe delegator, but as far as possible I'd suggest that publicly exposed features of the engine should work across support

Re: [PHP-DEV] Feature ./ correction to design flaw request

2002-10-14 Thread Nick Lindridge
> One reason would be to allow for a product like APD to do JIT swapping > of executors to enable tracing on demand. I imagine you could come up > with a clever way of letting Zend (En|De)coder be used for oly > prticular clients in a large vhosting operation as well (although I > don't really

Re: [PHP-DEV] Feature ./ correction to design flaw request

2002-10-14 Thread Nick Lindridge
>>Bingo! Well done George :) Nice to see someone thinking beyond their >>bubble. > > Thanks for the compliment. Andi=>George ? Didn't understand the email, but George showed some ideas where one might change the hooks and I applaud his insight. Not the ideas that I had in mind, but shows that o

Re: [PHP-DEV] error handling

2002-11-21 Thread Nick Loman
ode. If anyone wants to take this on I can give source code to my DLL and application server to give you a kickstart in the right direction. Additionally if there is a problem with my idea, I'd love to hear from you all. Nick. On Thu, 21 Nov 2002, Maxim Maletsky wrote: > &g

Re: [PHP-DEV] Re: Windows Threads

2002-11-21 Thread Nick Loman
Well, that's cool then! Why not simply include all this stuff with PHP rather than supporting the flawed ISAPI that it currently is packaged with? On Thu, 21 Nov 2002, Shane Caraveo wrote: > John Coggeshall wrote: > > > Shane (and everyone else): > > > > > > > > >Why don't we move PHP into a s

Re: [PHP-DEV] RFC: ODBC and PHP

2002-12-06 Thread Nick Gorham
I still think that would make the most sense and be the easiest to support on our end of things. Well I am of course biased :-) but I still can't see the real downside of that... Perls DBD:ODBC for example has come to the conclusion that DM's do more good than harm. --- Nick

[PHP-DEV] CVS Account Request: gonik

2002-12-19 Thread Nick Gouveris
name is Nick Gouveris (nickname: Gonik), i live in Greece and i'm 18 years old. I start learning PHP 2 and a half years ago, for a site i was developing with some friends. Now I am a big fan of the PHP language and currenlty i'm learing XML (Because PHP+XML = No1). :) -- PHP Developme

[PHP-DEV] Re: PHP 4.0 Bug #8885 Updated: Child processes hang on exit

2001-03-12 Thread Nick Wood
Nope, we actually traced it down to freetype built into gd/php... As it stands, we're just living without freetype... Nick ProHosting At 02:43 AM 3/10/2001 +, you wrote: >ID: 8885 >Updated by: sniper >Reported By: [EMAIL PROTECTED] >Old-Status: Open >S

[PHP-DEV] Re: PHP 4.0 Bug #8885 Updated: Child processes hang on exit

2001-03-12 Thread Nick Wood
Nope, we actually traced it down to freetype built into gd/php... As it stands, we're just living without freetype... Nick ProHosting At 02:43 AM 3/10/2001 +, you wrote: >ID: 8885 >Updated by: sniper >Reported By: [EMAIL PROTECTED] >Old-Status: Open >S

[PHP-DEV] CORBA/PHP

2001-03-21 Thread Nick Loman
h me? I am compiled OK and the mod is installed but it seg faults each time with glib errors in the log file whenever I call new Object. Or if anyone knows where David is likely to be I would very much appreciate being put in touch with him. Thanks! Nick. -- PHP Development Mailing List <http:

[PHP-DEV] Quick help needed

2001-03-22 Thread Nick Loman
ny special tricks after that in gdb? Thanks! Nick. -- 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 PROTECTED]

[PHP-DEV] CORBA/Satellite

2001-03-24 Thread Nick Loman
safety a possible reason for the segfault? If so, how do I adjust the functions, or can I compile PHP with different flags to get around this problem? I compile with ZEND_THREAD_SAFETY off currently. Any tips would be greatly appreciated as I'm tearing my hear out here! Nick. -- PHP Development

[PHP-DEV] SOAP and CORBA

2002-01-01 Thread Nick Loman
f anyone would like to help me in my quest to make CORBA more mainstream (CORBA isn't really scary, at its most basic its just cross-platform remote procedure calls) I would love to work with you. All the best for 2002 everyone, Nick. -- PHP Development Mailing List <http://w

[PHP-DEV] session_set_cookie_params broken in 4.0.6

2001-07-15 Thread Nick Lindridge
ds as expected. Loading the following, however, SID2 also changes every 5 seconds, even though cookie params have *not* been set in this script. Nick -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP-DEV] Using Zend Engine in Applications

2001-04-01 Thread Nick Loman
Hi all, Does there exist a guide or some instructions for beginning to use PHP code in applications outside the web-server (e.g. non-module, non-CGI)? Especially calling code and executing a function from a C program and retrieving the result, for example. Any details appreciated, Nick

Re: [PHP-DEV] Bug #10582: Error message corruption -- possibleinfinite loop

2001-05-01 Thread Nick Loman
o know if there's any way of protecting my machine if an httpd process does decide to run away and take the machine down with it. Nick. -- 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 PROTECTED]

[PHP-DEV] Re: Bug #10582 Updated: Error message corruption -- possible infiniteloop

2001-05-01 Thread Nick Loman
but the other important revisions, e.g. 1.59 do appear to be. Nick. On 2 May 2001, Bug Database wrote: > ID: 10582 > Updated by: sniper > Reported By: [EMAIL PROTECTED] > Old-Status: Open > Status: Feedback > Old-Bug Type: *General Issues > Bug Type: HTTP related

Re: [PHP-DEV] Bug #8377 Updated: File uploads with POST methodstakes full Server processing capacity and memory

2001-05-01 Thread Nick Loman
Could this be my problem? I am seeing something very similar to this, but its taking down the entire server very quickly. What is the maximum recommended file size on a P-III 450Mhz machine with 256MB (usually <50MB free) running RH6.0 Currently I am allowing 20Mb uploads Nick. On 2 May 2

[PHP-DEV] How safe is PHP?

2001-05-02 Thread Nick Loman
k on PHP? Or is this only applicable to CGI processes? Any response appreciated. Nick. -- 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 PROTECTED]

Re: [PHP-DEV] Zdnet Article

2001-05-17 Thread Nick Loman
et al. It would be good to co-ordinate efforts :) Nick. On Fri, 18 May 2001, Emmanuel FAIVRE wrote: > http://www.zdnet.com/products/stories/reviews/0,4161,2711724,00.html > > no word to comment that ! > > just see a adbanner for ColdFusion on the same page ! > > Manu >

[PHP-DEV] Re: Bug #12560 Updated: 'parent' incorrectly refers to $this in certain cases

2001-10-22 Thread Nick Lindridge
On Mon, Oct 22, 2001 at 12:03:59AM -, Bug Database wrote: > ID: 12560 > Updated by: sniper > Reported By: [EMAIL PROTECTED] > Old Status: Open > Status: Closed > Bug Type: Class/Object related > Operating System: Solaris 2.7 > PHP Version: 4.0.6 > New Comment: > > Works for me just fine with

[PHP-DEV] snmpv3 for php4 and later

2001-12-07 Thread Yan nick
Hi, I need to use snmpv3 function in php4. One day, someone called Harrie Hazewinkel from Twente University has modified ext/snmp to include functions that supported SNMPV3. But that was for PhP3, what about php4 ? I found a package for php4 : http://www.ncinter.net/~bert/php-snmp-v4.tar.gz

[PHP-DEV] Re: Bug #12566 Updated: Cascaded ternaries evaluate incorrectly

2001-08-04 Thread Nick Lindridge
?:" (or ternary) operator, which operates unlike C and all other languages. ;-) I appreciate the note on the historical accident, and in which case clearly the behaviour should indeed not be changed now. Cheers, Nick On Sat, Aug 04, 2001 at 09:21:33PM -, Bug Database wrote: > ID: 125

[PHP-DEV] Re: Bug #12578 Updated: Segfault with vanilla php in apache

2001-08-05 Thread Nick Lindridge
rash happening, but I've reached a point where if I further simplify then things don't fail. I'm going to see if I can further simplify and will give an update if I have anything more tangible to add on this. Thanks for your email, Best regards, Nick -- PHP Development Mailing L

[PHP-DEV] Re: Bug #12575 Updated: Session register & destroy flaws/bugs(?)

2001-08-05 Thread Nick Lindridge
unset() may be useful to reset an active session, but if there's no session then there can be no data. In essence, once you've associated a variable to a session entity, you should always be able to look to that variable to determine an accurate reflection of the session state. - bu

[PHP-DEV] Re: Bug #12578 Updated: Segfault with vanilla php in apache

2001-08-05 Thread Nick Lindridge
lets hope this gets bugs gets squashed! Cheers, Nick On Sun, Aug 05, 2001 at 06:03:58PM -, Bug Database wrote: > ID: 12578 > Updated by: rasmus > Reported By: [EMAIL PROTECTED] > Old Status: Open > Status: Feedback > Bug Type: Reproducible crash > Operating System:

[PHP-DEV] Equivalent to JSP scope="application" in PHP

2001-08-21 Thread Nick Loman
;t think of the equivalent thing in PHP, can anyone else? Quite useful as a middle ground in terms of page weight between going to SQL for content each page and pre-caching it all as HTML. Nick. -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Re: [PHP-DEV] Equivalent to JSP scope="application" in PHP

2001-08-21 Thread Nick Loman
TECTED] mailing list, or by private e-mail. Looks pretty good Derick! I will try this when it's released. Nick. -- 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 PROTECTED]

[PHP-DEV] php5.0.x-dev install error

2003-01-20 Thread Nick H. -- Technical Support Engineer
s one, Im not on the -dev list, only the -win (bleh, winblows). Regards, Nick H. [EMAIL PROTECTED] -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php