[PHP-DEV] CVS Account Request: young

2004-03-30 Thread Alexander Voytsekhovskyy
Now I'm translating the documentation to Russian. I need CVS account to bring translated parts (pcre/*, security/*, features/*) to conformity with changes in original, to correct the mistakes and to add new translated parts. -- PHP Internals - PHP Runtime Development Mailing List To

Re: [PHP-DEV] ext/mysqli broken

2004-03-30 Thread John Coggeshall
On Mon, 2004-03-29 at 09:28, Adam Maccabee Trachtenberg wrote: Try upgrading to the latest MySQL 4.1.x snapshot. There were some changes made in the last week or two to the MySQL source, so Georg modified the extension. Nope. Tonight's snapshot doesn't work, either. John --

Re: [PHP-DEV] ext/mysqli broken

2004-03-30 Thread Sebastian Bergmann
John Coggeshall wrote: Nope. Tonight's snapshot doesn't work, either. Georg will commit the changes (with which everything builds fine here) after MySQL 4.1.2 was released. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Das Buch zu PHP 5:

[PHP-DEV] Problem with config.m4

2004-03-30 Thread Stéphane Degré
Hi, I am currently developing a PHP extension which provides a lot of functions to code/decode large mail attachments. This extension is based on the C-library UUDeview. On Windows platforms, the extension works well. I have downloaded the Windows version of UUDeview, I have specified the path of

[PHP-DEV] Itanium2 test from 15.04.-14.05.

2004-03-30 Thread Kai Hofmann
Hello all out there, you don't know me and its my first posting here, so please let me introduce myself shortly: I am known as PowerStat on sourceforge and savannah. Currently I am working for probusiness AG in Hannover/Germany. We are involved in the phpgroupware.org GNU project (you can find

Re: [PHP-DEV] Itanium2 test from 15.04.-14.05.

2004-03-30 Thread Zeev Suraski
Kai, It's best if you simply post any problems you bump into here, on this mailing list. Typically the person/people related will respond and help you sort it out. PHP should be fairly 64-bit safe, but there are some hard limits (e.g., the number of elements in an array) that even limited

Re: [PHP-DEV] Problem with config.m4

2004-03-30 Thread Rasmus Lerdorf
You missed the most important step. You need to tell config.m4 that you want to link against that libuu.a library. Look at some of the other extensions to see how to do it. Specifically look for PHP_CHECK_LIBRARY and PHP_ADD_LIBRARY_WITH_PATH -Rasmus On Tue, 30 Mar 2004, Stéphane Degré

[PHP-DEV] CVS Account Request: hcebay

2004-03-30 Thread Carsten Harnisch
preparation of a contribution to PEAR -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Problem with config.m4

2004-03-30 Thread Stéphane Degré
It works fine now with the line : PHP_ADD_LIBRARY_WITH_PATH(uu, /usr/local/lib, ATT_CODEC_SHARED_LIBADD) Thank you. Rasmus Lerdorf [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] You missed the most important step. You need to tell config.m4 that you want to link against

[PHP-DEV] www.php.net W3 Specifications

2004-03-30 Thread Nathan Sullivan
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.php.net now now...im sure this doesnt make us a good role model :) their pretty easy fixes, just use css on the background attribute, the body probly isnt in the right place, and you just end a tag in not / if it has attributes/data related

Re: [PHP-DEV] www.php.net W3 Specifications

2004-03-30 Thread Wez Furlong
What has this got to do with programming the core of the php language? If you want to feel clever about the web, find a more appropriate forum; this isn't it. (Hint: try looking around the website itself for clues as to where you should be posting this) --Wez. - Original Message -

[PHP-DEV] Random crashing in complex PHP5 app

2004-03-30 Thread David Chen
Hi, Sorry for this post, but I posted this before in the generals list and there were not many responses. I have a rather complex script that is the output of a Java-PHP translator. However, this script crashes about 10% of the time on my computer. I have Win XP Pro, Apache2, and PHP5 Release

[PHP-DEV] Re: Random crashing in complex PHP5 app

2004-03-30 Thread David Chen
Sorry, I forgot how to describe the procedure to run it. If anyone wants to try the program, the file persistent/Broker.php needs its method _Broker() to be changed (change parameters to mysql_connect()) To run it, the file test/Test.php is accessed from the browser. Thanks again. David Chen

[PHP-DEV] Segfault in HEAD

2004-03-30 Thread Antony Dovgal
Hi all! This small script: ? class test { var $a = false; var $x = false; function getA() { if (!$this-x) { // yep, I know, it's infinite loop $this-foo(); } return $this-a; }

Re: [PHP-DEV] Segfault in HEAD

2004-03-30 Thread Derick Rethans
On Wed, 31 Mar 2004, Antony Dovgal wrote: Hi all! This small script: ? class test { var $a = false; var $x = false; function getA() { if (!$this-x) { // yep, I know, it's infinite loop PHP always crashes on infinite loops as you might be aware off.

Re: [PHP-DEV] Segfault in HEAD

2004-03-30 Thread Antony Dovgal
On Wed, 31 Mar 2004 09:27:42 +0200 (CEST) Derick Rethans [EMAIL PROTECTED] wrote: On Wed, 31 Mar 2004, Antony Dovgal wrote: Hi all! This small script: ? class test { var $a = false; var $x = false; function getA() { if (!$this-x) { // yep, I know,

Re: [PHP-DEV] Segfault in HEAD

2004-03-30 Thread Derick Rethans
On Wed, 31 Mar 2004, Antony Dovgal wrote: PHP always crashes on infinite loops as you might be aware off. You'll have to live with it. And there is no workarounds at all? (BTW, same results with PHP_4_3..) Just don't make infinite loops? :) Derick -- PHP Internals - PHP Runtime