Re: [PHP-DEV] Latest CVS on Win32

2001-05-23 Thread Andi Gutmans

I just commited a fix. Please try the latest CVS.

Andi

At 06:37 AM 5/23/2001 +0200, Sebastian Bergmann wrote:
   Latest CVS on Win32 builds, but it crashes on startup (CGI).

--
  sebastian bergmann[EMAIL PROTECTED]
http://www.sebastian-bergmann.de

  bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

--
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 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] Latest CVS on Win32

2001-05-23 Thread Sebastian Bergmann

Andi Gutmans wrote:
 I just commited a fix. Please try the latest CVS.

  Thanks, it works nicely now.

-- 
 sebastian bergmann[EMAIL PROTECTED]
   http://www.sebastian-bergmann.de

 bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

-- 
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] Latest CVS on Win32

2001-05-22 Thread Sebastian Bergmann

  Latest CVS on Win32 builds, but it crashes on startup (CGI).

-- 
 sebastian bergmann[EMAIL PROTECTED]
   http://www.sebastian-bergmann.de

 bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

-- 
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] Latest CVS on Win32

2001-05-21 Thread Andi Gutmans

Are you sure you rebuilt the whole tree? It works fine for me.
Do you have an extremely short reproducing script?

Andi

At 06:58 AM 5/21/2001 +0200, Sebastian Bergmann wrote:
   With the latest CVS on Win32 I get the following warnings

 Warning: Unknown list entry type in request shutdown (0) in
  Unknown on line 0

   Could that be related to the ZendEngine patches from last night? The
same script runs fine without warnings on PHP 4.0.5.

--
  sebastian bergmann[EMAIL PROTECTED]
http://www.sebastian-bergmann.de

  bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

--
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 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] Latest CVS on Win32

2001-05-21 Thread Sebastian Bergmann

Andi Gutmans wrote:
 Are you sure you rebuilt the whole tree? It works fine for me.

  Yes, I rebuilt completely.

 Do you have an extremely short reproducing script?

?php
  $xmldoc = domxml_new_xmldoc('1.0');
  $root = $xmldoc-add_root('root');
  $foo = $root-new_child('foo', 'bar');
  print $xmldoc-dumpmem();
?

  This works fine with PHP 4.0.5 and 4.0.7-CVS from yesterday, so it
should not be related to any patches to ext/domxml itself.

-- 
 sebastian bergmann[EMAIL PROTECTED]
   http://www.sebastian-bergmann.de

 bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

-- 
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] Latest CVS on Win32

2001-05-21 Thread Andi Gutmans

Well it sounds like a bug in domxml to me.
Maybe yesterday's patch unveiled this bug because there is no reason I can 
think of (unless I'm missing something) that yesterday's patch should 
effect domxml.
It should work with whatever resource type id it received.

Andi

At 06:22 PM 5/21/2001 +0200, Sebastian Bergmann wrote:
Andi Gutmans wrote:
  Are you sure you rebuilt the whole tree? It works fine for me.

   Yes, I rebuilt completely.

  Do you have an extremely short reproducing script?

 ?php
   $xmldoc = domxml_new_xmldoc('1.0');
   $root = $xmldoc-add_root('root');
   $foo = $root-new_child('foo', 'bar');
   print $xmldoc-dumpmem();
 ?

   This works fine with PHP 4.0.5 and 4.0.7-CVS from yesterday, so it
should not be related to any patches to ext/domxml itself.

--
  sebastian bergmann[EMAIL PROTECTED]
http://www.sebastian-bergmann.de

  bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de


-- 
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] Latest CVS on Win32

2001-05-21 Thread Sebastian Bergmann

Andi Gutmans wrote:
 Well it sounds like a bug in domxml to me.

  Damn. The first time I need this extension it turns out that it's
broken :-/

 Maybe yesterday's patch unveiled this bug because there is no reason 
 I can think of (unless I'm missing something) that yesterday's patch 
 should effect domxml.
 It should work with whatever resource type id it received.

  Uwe?

-- 
 sebastian bergmann[EMAIL PROTECTED]
   http://www.sebastian-bergmann.de

 bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

-- 
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] Latest CVS on Win32

2001-05-20 Thread Sebastian Bergmann

  With the latest CVS on Win32 I get the following warnings

Warning: Unknown list entry type in request shutdown (0) in 
 Unknown on line 0

  Could that be related to the ZendEngine patches from last night? The
same script runs fine without warnings on PHP 4.0.5.

-- 
 sebastian bergmann[EMAIL PROTECTED]
   http://www.sebastian-bergmann.de

 bonn.phpug.de | www.php.net | www.phpOpenTracker.de | www.titanchat.de

-- 
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] Latest CVS on Win32

2001-03-13 Thread Sebastian Bergmann

  4 errors, 1 new warning:

browscap.c
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(206)
: error C2065: 'core_globals' : nichtdeklarierter Bezeichner
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(206)
: error C2223: Der linke Teil von '-http_globals' muss auf eine
Struktur/Union zeigen
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: error C2223: Der linke Teil von '-http_globals' muss auf eine
Struktur/Union zeigen
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: warning C4133: 'function' : Inkompatible Typen - von 'char [16]' zu
'struct _hashtable *'
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'char *' und
'unsigned int ' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: warning C4024: 'zend_hash_find' : Unterschiedliche Typen fuer formalen und
uebergebenen Parameter 2
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'unsigned
int ' und 'void ** ' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: warning C4024: 'zend_hash_find' : Unterschiedliche Typen fuer formalen und
uebergebenen Parameter 3
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\standard\browscap.c(207)
: error C2198: 'zend_hash_find' : Nicht genuegend Parameter uebergeben
mod_files.c
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\session\mod_files.c(91)
: warning C4018: '=' : Konflikt zwischen signed und unsigned

-- 
 sebastian bergmann e-mail :  [EMAIL PROTECTED]
  homepage :  http://www.sebastian-bergmann.de
   make a gift : http://wishlist.sebastian-bergmann.de
 measure the usability of your web application - http://phpOpenTracker.de

-- 
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] Latest CVS on Win32 crashes in phpinfo()

2001-03-04 Thread Zeev Suraski

phpinfo() was indeed broken a couple of days ago - fixed

At 09:16 4/3/2001, Sebastian Bergmann wrote:
   The latest CVS on Win32 (built as CGI) crashes in phpinfo(), everything
else I tried (some projects of mine, phpMyAdmin, ...) work fine.

--
  sebastian bergmann e-mail :  [EMAIL PROTECTED]
   homepage :  http://www.sebastian-bergmann.de
make a gift : http://wishlist.sebastian-bergmann.de
  measure the usability of your web application - http://phpOpenTracker.de

--
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]

--
Zeev Suraski [EMAIL PROTECTED]
CTO   co-founder, Zend Technologies Ltd. http://www.zend.com/


-- 
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] Latest CVS on Win32 crashes in phpinfo()

2001-03-03 Thread Sebastian Bergmann

  The latest CVS on Win32 (built as CGI) crashes in phpinfo(), everything
else I tried (some projects of mine, phpMyAdmin, ...) work fine.

-- 
 sebastian bergmann e-mail :  [EMAIL PROTECTED]
  homepage :  http://www.sebastian-bergmann.de
   make a gift : http://wishlist.sebastian-bergmann.de
 measure the usability of your web application - http://phpOpenTracker.de

-- 
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] Latest CVS on Win32

2001-02-01 Thread Sebastian Bergmann

php_pcre.c
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
error C2065: 'executor_globals' : nichtdeklarierter Bezeichner
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
error C2223: Der linke Teil von '-function_table' muss auf eine
Struktur/Union zeigen
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'struct
_zval_struct ** ' und 'struct _zval_struct *' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4024: 'call_user_function_ex' : Unterschiedliche Typen fuer
formalen und uebergebenen Parameter 2
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'struct
_zval_struct *' und 'struct _zval_struct ** ' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4024: 'call_user_function_ex' : Unterschiedliche Typen fuer
formalen und uebergebenen Parameter 3
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'struct
_zval_struct ** ' und 'const int ' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4024: 'call_user_function_ex' : Unterschiedliche Typen fuer
formalen und uebergebenen Parameter 4
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'int ' und
'struct _zval_struct **[1] ' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4024: 'call_user_function_ex' : Unterschiedliche Typen fuer
formalen und uebergebenen Parameter 5
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4047: 'function' : Anzahl der Dereferenzierungen bei 'int ' und
'void *' unterschiedlich
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
warning C4024: 'call_user_function_ex' : Unterschiedliche Typen fuer
formalen und uebergebenen Parameter 7
D:\Programme\MS Visual Studio\Projekte\php\php4\ext\pcre\php_pcre.c(579) :
error C2198: 'call_user_function_ex' : Nicht genuegend Parameter uebergeben

-- 
 sebastian bergmann e-mail :  [EMAIL PROTECTED]
  homepage :  http://www.sebastian-bergmann.de
   make a gift : http://wishlist.sebastian-bergmann.de
 measure the usability of your web application - http://phpOpenTracker.de

-- 
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]