[PHP-DEV] PHP 4 Bug Summary Report

2005-02-28 Thread internals
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (783 total including feature requests) ===[*General Issues]== 27372 Verified parse error loading browscap.ini at apache startup (new parser required) 31792 Verified

[PHP-DEV] PHP Win32 stability

2005-02-28 Thread Dominik Smatana
We offer great reward (seriously!) for stable native version of PHP 4.3.x for MS Windows (no coLinux, no CygWin, no Posix layer...). Neither of the 4.3.x releases, nor Zend products had worked for us. If you are willing to help us in any way, please request more details from us off the list. Dom

[PHP-DEV] PHP 5 Bug Summary Report

2005-02-28 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (436 total including feature requests) ===[*Configuration Issues] 29478 Open ignore_user_abort not in php.ini 29971 Open variables_order behaviour 31867 Open

[PHP-DEV] get an error after change the config.w32 with the new one for java extention

2005-02-28 Thread Alawi Albaity
C:\Work\php-5.0.3>buildconf.bat --force Rebuilding configure.js Now run 'cscript /nologo configure.js --help' C:\Work\php-5.0.3>cscript configure.js --without-iconv --without-xml --without-l ibxml --with-java Microsoft (R) Windows Script Host Version 5.6 Copyright (C) Microsoft Corporation 1996-20

[PHP-DEV] Re: get an error after change the config.w32 with the new one for java extention

2005-02-28 Thread Edin Kadribasic
You will need to get 5.0.4-dev or 5.1.0-dev from snaps.php.net for that code to work. Edin On Monday 28 February 2005 12:32, Alawi Albaity wrote: > C:\Work\php-5.0.3>buildconf.bat --force > Rebuilding configure.js > Now run 'cscript /nologo configure.js --help' > > C:\Work\php-5.0.3>cscript conf

[PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Bob Beaty
All, I've searched the web for this answer and I'm stumped. I can't find the answers. So I thought I'd try the lists. Here goes: I have seen how to embed PHP 5 using the code like: ... php_embed_module.ub_write = my_ub_write_func; php_embed_module.log_message = my_log_fu

Re: [PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Alan Knowles
these still need tidying up alot, but the do work. http://docs.akbkhome.com/php_embed.c.txt http://docs.akbkhome.com/php_embed.h.txt replace the code in php_embed with them, make sure you compile with the zts enabled, and the macros's are similar to the original embed (use threaded start call at

Re: [PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Vadka
On Mon, 28 Feb 2005, Alan Knowles wrote: these still need tidying up alot, but the do work. http://docs.akbkhome.com/php_embed.c.txt http://docs.akbkhome.com/php_embed.h.txt replace the code in php_embed with them, make sure you compile with the zts enabled, and the macros's are similar to the ori

[PHP-DEV] Re: PHP Win32 stability

2005-02-28 Thread Scorpio9a
As far as i know, the php 4.3.x binaries are compiled using Visual C++ 6, so they are native as they can be? Sorry if you meant something else. -Scorpio9a "Dominik Smatana" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > We offer great reward (seriously!) for stable native version

Re: [PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Bob Beaty
Which is my concern. I've looked at the code differences, and it appears that this modification works for running different source files through the engine, but I'm concerned about the safety of zend_eval_string() if I initialize the engine in one thread and then try to have several threads cal

[PHP-DEV] project_logo[]

2005-02-28 Thread D . Walsh
I'm trying to add a logo and URL to the info of my project, unfortunately, I can't seem to find all of the API info to make it work. I've generated a project_logo.h file using the logos.h file as a footprint (tested it by replacing the zend_logo data with my data so I know it's valid and works

[PHP-DEV] Re: project_logo[]

2005-02-28 Thread Johannes Schlueter
Hi Dale, D . Walsh wrote: > I'm trying to add a logo and URL to the info of my project, > unfortunately, I can't seem to find all of the API info to make it > work. [...] > What additional code am I missing? You need to register your guid so PHP knows that the given parameter is an image ID. For

Re: [PHP-DEV] project_logo[] - update

2005-02-28 Thread D . Walsh
On Feb 28, 2005, at 17:52, D.Walsh wrote: I'm trying to add a logo and URL to the info of my project, unfortunately, I can't seem to find all of the API info to make it work. I've generated a project_logo.h file using the logos.h file as a footprint (tested it by replacing the zend_logo data wi

[PHP-DEV] bison/flex generated files not in CVS

2005-02-28 Thread Jani Taskinen
Is there some good reason not to commit these files in CVS so people would not necessarily need the 'correct' versions of bison/flex (as they don't need re2c either): Zend/zend_ini_scanner.c Zend/zend_ini_parser.c Zend/zend_ini_parser.h Zend/zend_language_scanner.c Z

Re: [PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Alan Knowles
I think derick does something like this in SRM, but basically if you want to load something in the global thread, and let the children inherit the data / classes /function etc. AFAIR you need to serialize the opcodes, and copy them for each thread. (or use something like bcompiler to load cached

Re: [PHP-DEV] How to embed PHP5 into multi-threaded C app?

2005-02-28 Thread Wez Furlong
ZTS enabled PHP has "strong thread affinity". Calls into the engine are thread-safe provided that you have previously initialized the engine on that thread. Note that you should not efree() memory allocated on one thread from outside of that thread, on pain of segfault. eg: resources from one thr