Re: [PHP-DEV] Bug #13785: Compile with MySQL 4.0.0

2001-10-22 Thread Andrey Hristov
/usr/local/src/php/TSRM -O2 -o php -export-dynamic stub.lo libphp4.la ./.libs/libphp4.a(internal_functions.o)(.data+0x20): undefined reference to `mysql_module_entry' gmake[1]: *** [php] Error 1 With MySQL 3.23.43 - I have not this Error... -- Andrey Hristov Web Developer Icygen

Re: [PHP-DEV] Bug #13785 Updated: Compile with MySQL 4.0.0

2001-10-22 Thread Andrey Hristov
Version: 4.0CVS-2001-10-22 Old Assigned To: Assigned To: derick Edit this bug report at http://bugs.php.net/?id=13785edit=1 -- Andrey Hristov Web Developer Icygen Corporation BUILDING SOLUTIONS http://www.icygen.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail

Re: [PHP-DEV] PHP extension

2001-11-14 Thread Andrey Hristov
There is a book from the people who make www.phpwizard.net. The price is from $30 to $40 depending on the bookstore you use(Amazon has lowest price). The other way is to get it in PDF. on #bookwarez channel on irc.nullus.net, you can find it. - Original Message - From: Markus

Re: [PHP-DEV] Bug #14068: 2 while list each dont work

2001-11-15 Thread Andrey Hristov
; } } ? './configure' '--with-mysql' '--with-apache=../apache_1.3.20' '--with-gd=../gd-1.8.3' '--enable-track-vars' -- Andrey Hristov Web Developer Icygen Corporation BUILDING SOLUTIONS http://www.icygen.com -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail

[PHP-DEV] The opposite of ===

2001-11-16 Thread Andrey Hristov
The === operator is used to do the work of == and check if the type is equal. Is there !=== or !==, to to the following : if (!($variable===$other_var)){ } to be if (!($variable!==$other_var)){ } Thanks Andrey Hristov IcyGEN Corporation http://www.icygen.com BALANCED SOLUTIONS -- PHP

Re: [PHP-DEV] The opposite of ===

2001-11-16 Thread Andrey Hristov
Ooops, if (!($variable===$other_var)){ } to be if ($variable!==$other_var){ } - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 16, 2001 1:48 PM Subject: [PHP-DEV] The opposite of === The === operator is used to do

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Andrey Hristov
(system) which uses this capabilities of PHP. It's name is Oasis (oasis.sourceforge.net). In my tests its 3x-4x faster than analogous systems. For session data configure in your php.ini to use 'mm' instead of file for data storage. Best regards, Andrey Hristov IcyGEN Corporation http

Re: [PHP-DEV] Server-Wide Persistent objects in PHP?

2001-11-26 Thread Andrey Hristov
script(system) which uses this capabilities of PHP. It's name is Oasis (oasis.sourceforge.net). In my tests its 3x-4x faster than analogous systems. For session data configure in your php.ini to use 'mm' instead of file for data storage. Best regards, Andrey Hristov IcyGEN Corporation http

Re: [PHP-DEV] error message

2001-11-26 Thread Andrey Hristov
I think that's not an error but a warning. I think that with the form is not submitted a hidden variable input type=hidden name=submit . For more ask at [EMAIL PROTECTED] This is the list for your needs. Regards, Andrey Hristov IcyGEN Corporation http://www.icygen.com BALANCED SOLUTIONS

Re: [PHP-DEV] Bug #14248: uniqid() is extremely slow (20ms per call)

2001-11-27 Thread Andrey Hristov
I looked at php_combined_lcg() and saw that it uses LCG, it looks like a macro but I've found anywhere else in the source. I looked at the source to view how session_id is generated (using seconds, microseconds, and php_combined_lcg - standard/lcg.c) Thanks in advance Andrey Hristov

Re: [PHP-DEV] Patch: Nested comments

2001-11-27 Thread Andrey Hristov
Better introduce new type of comments so one type can include the other type : Example from pascal : { a comment (* another nested *) } Andrey - Original Message - From: Martin Jansen [EMAIL PROTECTED] To: Markus Fischer [EMAIL PROTECTED] Cc: Anders Johannsen [EMAIL PROTECTED];

Re: [PHP-DEV] if (empty(trim('x'))) == parse error?

2001-11-28 Thread Andrey Hristov
From the docs for empty(): Note that this is meaningless when used on anything which isn't a variable; i.e. empty (addslashes ($name)) has no meaning since it would be checking whether something which isn't a variable is a variable with a FALSE value. Regards, Andrey Hristov

[PHP-DEV] Re: [PHP-QA] Re: 4.1.0RC5

2001-12-03 Thread Andrey Hristov
Linux andrey.masq 2.4.8-26mdk #1 Sun Sep 23 17:06:39 CEST 2001 i686 unknown Mandrake 8.1 Compiles as binary with no faults. TEST RESULT SUMMARY = Number of tests: 206 Tests skipped: 90 ( 44%) Tests failed: 15 ( 13%) Tests passed: 101 ( 87%)

Re: [PHP-DEV] HOW2 on making C++ extensions in 4.1.0 (and 4.0.6?)

2001-12-04 Thread Andrey Hristov
Search this mailing list for november for c++ and extension and surely will find something. I've seen a post from a programmer who posted info about using c++ in extensions. Regards, Andrey Hristov - Original Message - From: Lars Knudsen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: [PHP-DEV] [NEW EXTENSTION]: templates

2001-12-05 Thread Andrey Hristov
2002). Best wishes and regards. Andrey Hristov - Original Message - From: Maxx [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 3:29 PM Subject: [PHP-DEV] [NEW EXTENSTION]: templates Hi, php.dev! Probably, someone would be interested in this... I have made

Re: Re[4]: [PHP-DEV] [NEW EXTENSTION]: templates

2001-12-05 Thread Andrey Hristov
/she fails. Look at this, if I have to use {some_thing}, how can I write some text which includes {, the template engine will delete everything to the }. Regards, Andrey Hristov - Original Message - From: Daniel Lorch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001

Re: Re[2]: [PHP-DEV] [NEW EXTENSTION]: templates

2001-12-05 Thread Andrey Hristov
Make it experimental Then : This module is EXPERIMENTAL. That means, that the behaviour of these functions, these function names, in concreto ANYTHING documented here can change in a future release of PHP WITHOUT NOTICE. Be warned, and use this module at your own risk. Regards, Andrey

Re: Re[2]: [PHP-DEV] [NEW EXTENSTION]: templates

2001-12-05 Thread Andrey Hristov
Proposal : libmyopinion.o (*heh*) Regards, Andrey - Original Message - From: Daniel Lorch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 6:36 PM Subject: Re[2]: [PHP-DEV] [NEW EXTENSTION]: templates Hi, One thing I try to avoid is making assumptions,

Re: Re[2]: [PHP-DEV] [NEW EXTENSTION]: templates

2001-12-05 Thread Andrey Hristov
is C and without using any function. I don't think that any of the template functions is different from array_push for example it's not PHP it is external function. I can live without array_push, implode and some others, so someone else can live without templtes_* functions. Regards, Andrey

[PHP-DEV] Cannot find way!

2001-12-06 Thread Andrey Hristov
Hi, I cannot find a way to get the if the browser sent Accept-Encoding header. Can someone tell me if this is possible. It is maybe good idea if there is $HTTP_REQUEST_HEADERS ($_HEADERS) or something similirar. Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysql php_mysql.c

2001-12-06 Thread Andrey Hristov
What is the difference between : if (mysql_result type==le_result !mysql_eof(mysql_result)) { and if (mysql_result type==le_result) { if (!mysql_eof(mysql_result)) { except the second is more readable : Regards, Andrey Hristov - Original Message - From: Zeev Suraski [EMAIL

[PHP-DEV] Re: [PHP-QA] PHP 4.1.1

2001-12-23 Thread Andrey Hristov
bash-2.04$ less config.nice #! /bin/sh # # Created by configure './configure' \ '--with-mysql' \ $@ TEST RESULT SUMMARY = Number of tests: 206 Tests skipped: 81 ( 39%) Tests failed: 28 ( 22%) Tests passed: 97 ( 78%) =

[PHP-DEV] Typos?

2001-12-27 Thread Andrey Hristov
that it have to be Zend ships with such a function, called zend_copy_ctor() (the previous PHP equivalent was pval_copy_constructor()). Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP-DEV] Problems compiling php on win32

2001-12-27 Thread Andrey Hristov
is apreciated. Regards, Andrey Hristov -- 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] Build problems on win32 (cont)

2001-12-27 Thread Andrey Hristov
\pgsql\php_pgsql.h(32) : fatal error C1083: Cannot open include file: 'libpq-fe.h': No such file or directory Error executing cl.exe. pgsql.dll - 1 error(s), 0 warning(s) Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP-DEV] DBA extension

2001-12-28 Thread Andrey Hristov
Open win32/php_modules.dsw with VisualC. Select DBA as an active project. Rebiuld all. HTH Andrey Hristov - Original Message - From: David Robinson (AU) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, December 28, 2001 1:12 AM Subject: [PHP-DEV] DBA extension Hello How

[PHP-DEV] Bug in bugs.php.net?

2001-12-28 Thread Andrey Hristov
there. Regards, Andrey Hristov -- 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] Bug #14949: fprintf function

2002-01-09 Thread Andrey Hristov
The answer will be : Because it can be emulated in the userspace. ?php $fp=fopen('some.txt','w+'); $some=10; fwrite($fp, sprintf(some decimal %d,$some)); fclose($fp); ? Regards, Andrey Hristov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January

Re: [PHP-DEV] Bug #14949: fprintf function

2002-01-09 Thread Andrey Hristov
:) - Original Message - From: Markus Fischer [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, January 09, 2002 5:14 PM Subject: Re: [PHP-DEV] Bug #14949: fprintf function On Wed, Jan 09, 2002 at 05:06:19PM +0200

Re: [PHP-DEV] Shared extension

2002-01-10 Thread Andrey Hristov
binary shell. Also there are some changes in the way the extension is wriiten for 4.1.x but I think you know that stuff already. Mandrake 8.1 (native vmware) Regards, Andrey Hristov P.S. 1)For development purposes I wrote two .sh scripts. One to compile the module and copy it to a directory

Re: [PHP-DEV] consistent way to handle structs

2002-01-11 Thread Andrey Hristov
I think was said by Thies Arntzen few months ago for PHP5. I saw that this is possible in Perl so asked on the dev forum for this functionality ...but Thies was the first. Regards, Andrey Hristov P.S. Zend2 weekly cronicle is a good thing but why the last issue is from Oct 31 2001

[PHP-DEV] print()??

2002-01-11 Thread Andrey Hristov
Is print function or laguage construct? I know that echo is language construct and code like that $some=echo; $some(FUBAR); gives me an error The same with print. Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP-DEV] Bison problems

2002-02-12 Thread Andrey Hristov
Does anyone looked at zend_language_parser.output to see that there are reported 1376 confilcts? PHP 4.1.1. Win2k possibly Linux. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Bison problems

2002-02-12 Thread Andrey Hristov
Does anyone looked at zend_language_parser.output to see that there are reported 1376 confilcts? PHP 4.1.1. Win2k possibly Linux. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Bug #15571: incredible slashing of and \

2002-02-15 Thread Andrey Hristov
I think this is not php problem but problem in the script. No stripslashes is made on the output. This is common problem. Best regards, Andre Hristov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 15, 2002 6:08 PM Subject: Bug #15571:

Re: [PHP-DEV] Get an application/octet-stream from a java applet

2002-02-20 Thread Andrey Hristov
Which version of PHP? Ask this on php-general. php-dev is for coders of core functionality. Best regards, Andrey Hristov - Original Message - From: Nicolas Boutet [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February 20, 2002 3:24 PM Subject: [PHP-DEV] Get an application

[PHP-DEV] Conflicts in zend_language_parser.output

2002-02-20 Thread Andrey Hristov
Hi, does anyone saw that there are 1000 SR conflicts in zend_language_parser.output. Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Bug #15663: add foreach reference values

2002-02-21 Thread Andrey Hristov
This FR is known :)) Best wishes, Andrey Hristov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 7:34 PM Subject: Bug #15663: add foreach reference values From: [EMAIL PROTECTED] Operating system: PHP version

Re: [PHP-DEV] extensions for PHP in Windows

2002-02-22 Thread Andrey Hristov
Start here http://www.php.net/manual/en/zend.php Best regards, Andrey Hristov - Original Message - From: Olga Tonkonog [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 22, 2002 9:44 AM Subject: [PHP-DEV] extensions for PHP in Windows Hello, I learn PHP now and use

[PHP-DEV] Re: Bug #15678: isset failed in the latest cvs tree

2002-02-22 Thread Andrey Hristov
The answer to your question: ?php var_dump((int) 'y'); ? Regards, Andrey Hristov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 22, 2002 6:03 PM Subject: Bug #15678: isset failed in the latest cvs tree From: [EMAIL PROTECTED

[PHP-DEV] install.txt in Win32 distro

2002-02-24 Thread Andrey Hristov
Can someone karma gifted change a text in install.txt in the Win32 distro? The current text is : Installation on Windows 9x/Me/NT/2000 systems The new text : Installation on Windows 9x/Me/NT/2000/XP systems Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net

[PHP-DEV] XML-RPC extension

2002-02-25 Thread Andrey Hristov
to 0.08s! So I think about tweaking wddx.c for xml-rpc.c All comments are appreciated. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Bug #15810: superglobals does not work with dynamic vars in functions

2002-03-01 Thread Andrey Hristov
Hmmm, I saw that before when I tried to write code which is compatible with all versions of PHP. Something like pre ?php if ((str_replace('.','',phpversion())410)){ define(__GET,HTTP_GET_VARS); }else{ define(__GET,_GET); } echo phpversion().\n; var_dump(${__GET}['some']); function a(){

Re: [PHP-DEV] FW: [PHP-QA] New Windows Binaries

2002-03-01 Thread Andrey Hristov
Just for the case - I received 506kb attachment... Andrey - Original Message - From: James Cox [EMAIL PROTECTED] To: Php-Dev [EMAIL PROTECTED] Sent: Friday, March 01, 2002 5:30 PM Subject: [PHP-DEV] FW: [PHP-QA] New Windows Binaries Note, ezmlm is rejecting the attachment, so I

[PHP-DEV] Re: Bug #13094 Updated: Upload very slow

2002-03-07 Thread Andrey Hristov
AFAIK 4.2.0. is scheluded for May. Andrey On Thursday 07 March 2002 08:11 pm, you wrote: ID: 13094 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Closed Bug Type: Performance problem Operating System: Windows 2000

[PHP-DEV] ||=

2002-03-07 Thread Andrey Hristov
Hi, I found that $some ||= true_or_false(); is not a valid construction but $some |= true_or_false(); is valid one. AFAIK | is arithmetic but || is logical. So what devs community thinks about ||= (and possibly =). Best regards, Andrey Hristov -- PHP Development Mailing List http

[PHP-DEV] Re: Bug #15937: Call-time pass-by-reference has been deprecated

2002-03-07 Thread Andrey Hristov
You probably do: $some_len = strlen($some_str); you do not need to use . Probably $some_str is passed by reference without . Best regards, Andrey Hristov On Thursday 07 March 2002 08:22 pm, you wrote: From: [EMAIL PROTECTED] Operating system: SuSE Linux 6.0 PHP version

[PHP-DEV] fopen with https support ?

2002-03-08 Thread Andrey Hristov
-PHP crashes - no function fsockopen_ssl(). After googling I found the post I put above. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ||=

2002-03-08 Thread Andrey Hristov
i think, given that php's || and operators always return a boolean value, people are going to be confused and disappointed with ||= and = when coming from languages (like perl) that implement them as returning false or the value that was true. I think that PHP is closer to C than Perl. int

[PHP-DEV] ZLib (double free) bug

2002-03-12 Thread Andrey Hristov
What about implementing in build process check for the version of the zlib library. If =1.1.3 to give error message that =1.1.4 is needed. 1.1.4 is at : ftp://ftp.info-zip.org/pub/infozip/zlib/zlib-1.1.4.tar.gz Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net

Re: [PHP-DEV] ZLib (double free) bug

2002-03-12 Thread Andrey Hristov
Yeap. :(( the RH RPM is 1.1.3-25.7 ftp://updates.redhat.com/7.2/en/os/i386/zlib-1.1.3 -25.7.i386.rpm Andrey - Original Message - From: Stefan Roehrich [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 11:46 AM Subject: Re: [PHP

Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor()

2002-03-12 Thread Andrey Hristov
As far as I see FREE_ZVAL is ZEND_FAST_FREE and the latter is not freeing memory just removes the zval from a list. So it is required to release the memory before that. Fix me if I'm wrong. Regards, Andrey - Original Message - From: Klaus Reimer [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor()

2002-03-12 Thread Andrey Hristov
[EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 3:07 PM Subject: Re: [PHP-DEV] FREE_ZVAL and/or zval_dtor() Hi, On Tuesday 12 March 2002 14:01, Andrey Hristov wrote: As far as I see FREE_ZVAL is ZEND_FAST_FREE and the latter

[PHP-DEV] print_r smater than var_dump

2002-03-13 Thread Andrey Hristov
behaviour? Isn't it better var_dump() to detect recursion like print_r() does? Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
will be the BC impact of these changes. May be the problem is deeper and has to be investigated. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
Updatechanging to E_WARNING will be an error. Neverending recursion. Andrey Hristov - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 11:55 AM Subject: [PHP-DEV] probably the var_dump()'s problem is in its roots

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
I received this in the browser : Fatal error: Nesting level too deep - recursive dependency? in c:\apache\htdocs\ad.php on line 3 Andrey - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, March 14, 2002

Re: [PHP-DEV] probably the var_dump()'s problem is in its roots.

2002-03-14 Thread Andrey Hristov
print_r() handles the recursion and says that there is a recursion. After Yasuo's patch var_dump() does the same. Why then other functions have to produce E_ERROR. Best regards, Andrey Hristov - Original Message - From: Zeev Suraski [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED

[PHP-DEV] make crashing on libmysql

2002-03-16 Thread Andrey Hristov
With latest CVS php4-200203160300.tar.gz and ./configure --enable-wddx --enable-sysvsem --enable-sysvshm --enable-static --with-apxs=/usr/samba/users/andy/apache/bin/apxs --wit hout-pear --with-openssl --with-bz --with-iconv=/usr/samba/users/andy/413dev/php4-200203140300/ext/iconv and then

[PHP-DEV] why tempnam is used in libmysql bundleld with php

2002-03-16 Thread Andrey Hristov
I cannot compile the CVS because gcc complains about using function tempnam() In the man tempnam i found that: BUGS The precise meaning of `appropriate' is undefined; it is unspecified how accessibility of a directory is determined. Never use this func­tion. Use mkstemp(3) instead.

Re: [PHP-DEV] PHP Future

2002-03-24 Thread Andrey Hristov
Starting points is the Zend2 list. Go http://www.zend.com/lists.php and view the archive. Be aware that is not the full archive. Best regards, Andrey Hristov - Original Message - From: Richard Lynch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 25, 2002 8:20 AM Subject

Re: [PHP-DEV] classes, instances objects in ZE2

2002-04-09 Thread Andrey Hristov
of compiler( not sure if +it is possible but what about comilation to Java bytecode or .net MSIL - I read somewhere that ADA can be comiled to Java bytecode, why not have PHP compiled for it.). Regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http

[PHP-DEV] PHP probkems with Apache 2.0.35

2002-04-09 Thread Andrey Hristov
May we place somewhere on the bug page or on the site that there are problems in compiling PHP with 2.0.35 support. I write this because too many people reports for this without searching if there is such a thing. Regards, Andrey -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
I receive this: object(foo)(1) { [bar]= object(bar)(1) { [tmp]= string(23) why does this add a ref } } As far as I can see, there is an reference. Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 7:37

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
Not sure but I think that the answer is maybe on pages 8 and 9 here http://www.zend.com/engine2/ZendEngine-2.0.pdf What do you think? Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, April 11

Re: [PHP-DEV] object refrences (POSSIBLE MAJOR BUG)

2002-04-11 Thread Andrey Hristov
But dereferncing like this $foo-bar()-fubar is feature of Z2 or not? Till today I didn't know that my 4.1.1(or 2) not sure can do this kind of dereferencing. Andrey - Original Message - From: brad lafountain [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

[PHP-DEV] RC3

2002-04-11 Thread Andrey Hristov
Does the RC3 will be available tonight(GMT+3) or it is scheduled for tommorow's night? Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] The PHP Platform

2002-04-15 Thread Andrey Hristov
I really have to fight within the company i work to keep PHP. Do you know what PHP really needs? Good native XML and SOAP support.. Without that it's very hard to convince my boss that PHP is the right tool for the job. I develop for a living. And i'm not only programming in PHP. I do also

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Andrey Hristov
Hi I know that there are RPC and SOAP classes. But that is not the point that i wanted to make. What i'm trying to say is that companies never hear about PHP. OK, they hear about the MIME bug and did you know what my boss said?? You see, PHP is just as bad as ASP, so why use PHP and not ASP?

Re: [PHP-DEV] The PHP Platform

2002-04-17 Thread Andrey Hristov
is about the xmlrpc-epi library : http://xmlrpc-epi.sourceforge.net Andrey - Original Message - From: Yasuo Ohgaki [EMAIL PROTECTED] Newsgroups: php.dev To: Brad Lafountain [EMAIL PROTECTED] Cc: Dave Mertens [EMAIL PROTECTED]; Andrey Hristov [EMAIL PROTECTED] Sent: Tuesday, April 16

Re: [PHP-DEV] The PHP Platform

2002-04-17 Thread Andrey Hristov
- Original Message - From: Dave Mertens [EMAIL PROTECTED] To: Ken Egervari [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, April 16, 2002 7:23 PM Subject: Re: [PHP-DEV] The PHP Platform And because i like PHP i'm still promoting it within my company. But no-one is helping me!!

[PHP-DEV] Problems with my SMTP

2002-04-17 Thread Andrey Hristov
I want to excusefo that some of my emails come quite later then the moment I sent them. This is the case with the message to Yasuo about SOAP and xmlrpc-epi. My excuses again. Andrey -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Pass by reference

2002-07-23 Thread Andrey Hristov
been tuned this way) [/snip] Thanks Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Pass by reference

2002-07-23 Thread Andrey Hristov
on this newsgroup, Andi Gutmans said this sometime ago, i believe to the author of Phorum. That's where i originally got the info in the article. Regards, John Andrey Hristov [EMAIL PROTECTED] wrote in message 009e01c2322c$110bc8d0$1601a8c0@nik">news:009e01c2322c$110bc8d0$1601

Re: [PHP-DEV] Moving away from ASP to PHP

2002-07-31 Thread Andrey Hristov
AFAIK, you can look at Zend Encoder, or ionCube Encoder (coupled with PHPA). Regard,s Andrey - Original Message - From: Anthony Kauffmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 12:26 PM Subject: [PHP-DEV] Moving away from ASP to PHP Hi all, I've

[PHP-DEV] Re: [PHP-QA] Congratulations.

2002-07-31 Thread Andrey Hristov
http://php.net - Original Message - From: Sebastian Nohn [EMAIL PROTECTED] To: Xavier Spriet [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 31, 2002 7:22 PM Subject: RE: [PHP-QA] Congratulations. Hi, Well this may not be the appropriate place for this but

Re: [PHP-DEV] HUGE memory consumption on fread()

2002-08-14 Thread Andrey Hristov
Once you've eliminated that problem, I'd suggest that you use readfile() instead of manually looping; readfile should be much kinder to your hardware as it uses mmap, which means that PHP doesn't need to keep allocating small buffers in the loop, and that the OS can potentially share the

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
so, is there need of array_adiff()? Best regards Andrey Hristov - Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Brad LaFountain [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 5:02 PM Subject: Re: [PHP-DEV] array_diff not working with last element

[PHP-DEV] [PATCH][Resend:] array_search() changed to allow the reposition of the internal pointer

2002-08-27 Thread Andrey Hristov
Hi, this patch adds new functionality to array_search(). It is mostly useful in cases where the indices in the array are not numeric but strings. When a programmer wants to find the key for a value in the array he/she is give the opportunity to move the internal pointer of the array to the

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
Hi, I've done some hacking and have working (one example tested) array_diff() modified to be like array_adiff(). If there is interest I will provide a patch. Best regards Andrey Hristov - Original Message - From: Brad LaFountain [EMAIL PROTECTED] To: Stig Venaas [EMAIL PROTECTED

Re: [PHP-DEV] array_diff not working with last element different

2002-08-27 Thread Andrey Hristov
Today I am finished :((( I will make the patch tommorow I will send it here. array_diff_assoc()? Propose names. Regards, Andrey Hristov - Original Message - From: Marcus Börger [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: Brad LaFountain [EMAIL PROTECTED]; Stig

Re: [PHP-DEV] segfault on adding empty heredoc to string

2002-09-01 Thread Andrey Hristov
No problems on win32 , php-430-dev cli.ZE2. Best regards Andrey Hristov - Original Message - From: Lukas Schroeder [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 01, 2002 8:50 PM Subject: [PHP-DEV] segfault on adding empty heredoc to string hi, i can crash my php

[PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Hi, maybe offtopic but I cannot access php.net . I thought that it is maybe problem with my connection so tried http://network-tools.com to fetch the headers and teh result is timeout. Best regards Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Too much downloads Best regards Andrey Hristov - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 02, 2002 11:35 AM Subject: [PHP-DEV] Problem with http://php.net Hi, maybe offtopic but I cannot access php.net . I thought

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
Yup, I saw /server-status - thus i wrote too much downloads Best regards Andrey Hristov - Original Message - From: James Cox [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, September 02, 2002 11:53 AM Subject: RE: [PHP-DEV] Problem with http

Re: [PHP-DEV] Problem with http://php.net

2002-09-02 Thread Andrey Hristov
my GSM too, all IM messages go there when i am not at the comp. it's 2am and someone wanted to say hi :))) or anything else . Best regards Andrey Hristov P.S. Offtopic sorry - Original Message - From: James Cox [EMAIL PROTECTED] To: Stefan Esser [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

Re: [PHP-DEV] Default extensions (was: mbstring)

2002-09-03 Thread Andrey Hristov
Best regards Andrey Hristov - Original Message - From: James Cox [EMAIL PROTECTED] To: Jani Taskinen [EMAIL PROTECTED]; Jon Parise [EMAIL PROTECTED] Cc: PHP Development Mailing list [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 12:19 AM Subject: RE: [PHP-DEV] Default extensions

[PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
that is returned). Best regards Andrey Hristov - Original Message - From: Sebastian Nohn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 10:39 AM Subject: [PHP-QA] array_unique broken? bugs.php.net seems to be down, so i do it this way: ah

[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
. Best regards Andrey Hristov - Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:16 AM Subject: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique

Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
- Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:43 AM Subject: Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken

Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken?

2002-09-03 Thread Andrey Hristov
- Original Message - From: Stig Venaas [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, September 03, 2002 11:53 AM Subject: Re: [PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Re: [PHP-QA] array_unique broken? On Tue, Sep 03, 2002 at 11:47:58AM +0300

Re: [PHP-DEV] http://www.php-con.com/

2002-09-05 Thread Andrey Hristov
I meant gray background . Andrey - Original Message - From: Andrey Hristov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 05, 2002 3:53 PM Subject: [PHP-DEV] http://www.php-con.com/ Hi, can someone change the HTML of http://www.php-con.com/ and add bgcolor

Re: [PHP-DEV] http://www.php-con.com/

2002-09-05 Thread Andrey Hristov
yup... :((( Andrey - Original Message - From: Xavier Spriet [EMAIL PROTECTED] To: Andrey Hristov [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, September 05, 2002 3:53 PM Subject: Re: [PHP-DEV] http://www.php-con.com/ this is still the wrong list. On Thu, 2002-09-05 at 08

Re: [PHP-DEV] PHP source code

2002-09-09 Thread Andrey Hristov
Zend/zend_language_parser.y Zend/zend_language_scanner.l you have to know something about Yacc/Bison and FLex/Lex Best regards Andrey Hristov - Original Message - From: OrangeHairedBoy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 09, 2002 7:59 PM Subject: [PHP-DEV

[PHP-DEV] CVS Account Request: andrey

2002-09-10 Thread Andrey Hristov
Developing the PHP runtime (ext/*) refered here by Derick. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: andrey

2002-09-10 Thread Andrey Hristov
Developing the PHP runtime -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Interesting note

2002-09-25 Thread Andrey Hristov
Hi, regarding to documentation of mysql_query() : [snip] Note: The query string should not end with a semicolon. [/snip] Is this mySQL problem or what? As far as I see in the sources this does not anything with PHP. So is it mysql issue. Thanks, Andrey -- PHP Development Mailing List

[PHP-DEV] Stability of DOMXML

2002-10-01 Thread Andrey Hristov
Hi all, I want to ask how much stable is DOM XML in 4.3.0-dev. In the docs it is EXPERIMENTAL. Is it experimental or stable in 4.3.0 Are there serious memory leaks or leaks at all? Thanks, Andrey P.S. Sorry for that it is little off-topic but imo this is the only place where such information

Re: [PHP-DEV] coding a php thread safe extenssion

2002-10-03 Thread Andrey Hristov
Read this : http://www.php.net/manual/en/zend.php look at this extension. Last time when I saw it - it was not big and most of it quite understandable: http://sourceforge.net/projects/php-templates/ Andrey - Original Message - From: Benoit Canet [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [PHP-DEV] Re: [4.3.0-pre1] output handler 'ob_gzhandler' cannot be used twice

2002-10-14 Thread Andrey Hristov
I got the same error with phpMyAdmin 2.2.0rc4 Best regards Andrey Hristov - Original Message - From: Martin Jansen [EMAIL PROTECTED] To: Jan Schneider [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, October 14, 2002 10:14 AM Subject: Re: [PHP-DEV] Re: [4.3.0-pre1] output handler

  1   2   >