[PHP-DEV] CVS Account Request: mersal

2002-07-02 Thread Ahmad Abdull aziz
Translating the documentation to Arabic . -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] File Descriptors

2002-07-02 Thread Thies C. Arntzen
On Tue, Jul 02, 2002 at 02:17:38PM -0600, B i g D o g wrote: > Does PHP only use file descriptors when opening files or does > it use it for > other things that are underlining? no - excep for file bases sessions. > > B i g D o g > > > > "Thies C. Arntzen" <[EMAIL PROTECTED]> wrote in mes

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
James Cox wrote: > which [autoconf|automake|libtool] and versions of? sb@wopr-mobile:~> which autoconf /usr/local/bin/autoconf sb@wopr-mobile:~> which automake /usr/local/bin/automake sb@wopr-mobile:~> which libtool /usr/local/bin/libtool sb@wopr-mobile:~> autoconf --version autoconf (GNU Autocon

RE: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread James Cox
> > After updating to autoconf 2.53 I get the following warnings: > > sb@wopr-mobile:/usr/src/php4> ./buildconf > using default Zend directory > buildconf: checking installation... > buildconf: autoconf version 2.53 (ok) > buildconf: automake version 1.5 (ok) > buildconf:

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
Jani Taskinen wrote: > And I'd update to autoconf 2.53.. :) After updating to autoconf 2.53 I get the following warnings: sb@wopr-mobile:/usr/src/php4> ./buildconf using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.53 (ok) buildco

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard filestat.c

2002-07-02 Thread Sebastian Bergmann
[EMAIL PROTECTED] wrote: > Does this also work on win? Apparanetly not: c:\home\php\php4\ext\standard\filestat.c(815): error C2065: 'W_OK': Undeclared identifier c:\home\php\php4\ext\standard\filestat.c(830): error C2065: 'R_OK': Undeclared identifier c:\home\

RE: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread James Cox
> Jani Taskinen wrote: > > Your build stuff (gcc 3.1 installation done wrong?) is shitnitz. > > Hm, how come everything else works fine? > this seems to be a problem with the MySQL build, not ours - they need to wrap their MYSQL_UNIX_ADDR definition around an #ifndef so if a previous configure

[PHP-DEV] CVS Account Request: prodelal

2002-07-02 Thread Jaroslav Prodelal
want to develop PHP -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bugpack 13

2002-07-02 Thread Michael Dransfield
i can help, but do you actually need NTFS? for some reason my pc was loaded with fat32 and win2k :-/ At 18:54 02/07/2002 +, Steph wrote: >I'll do what I can with this, but could do with help from someone with >NTFS :) > > >-- >PHP Development Mailing List >To unsubscr

[PHP-DEV] Re: [Sab] php / sablotron / apache problems

2002-07-02 Thread Melvyn Sopacua
All, Jochen Metzger said at 16:18 2-7-2002: > > >$result=xslt_process($xh,$xmlstring, $xslstring); >well, i must have picked it from the old version. >the mess is, the it produces a segmentation fault. >it should just do nothing >I would say this is a bug in the wrapper. I agree. It's

Re: [PHP-DEV] File Descriptors

2002-07-02 Thread B i g D o g
Does PHP only use file descriptors when opening files or does it use it for other things that are underlining? B i g D o g "Thies C. Arntzen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Tue, Jul 02, 2002 at 01:04:03PM -0600, B i g D o g wrote: > > I h

Re: [PHP-DEV] File Descriptors

2002-07-02 Thread Thies C. Arntzen
On Tue, Jul 02, 2002 at 01:04:03PM -0600, B i g D o g wrote: > I have searched the archives and all over google and php.net; however, i can > not find an answer to this question: > > When running a php script that opens a file descriptor (implicit and not) > does the file descriptor get closed au

Re: [PHP-DEV] extension modules

2002-07-02 Thread Torsten Curdt
Thanks for the help guys! :-) -- Torsten -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] extension modules

2002-07-02 Thread Torsten Curdt
configure of php itself or the extension module? On Tuesday 02 July 2002 21:45, George Schlossnagle wrote: > Actually, if you run configure with > > --with-sqlanywhere=shared, that directive should be added to config.h > > On Tuesday, July 2, 2002, at 03:42 PM, Torsten Curdt wrote: > > On Tuesda

Re: [PHP-DEV] extension modules

2002-07-02 Thread George Schlossnagle
Actually, if you run configure with --with-sqlanywhere=shared, that directive should be added to config.h On Tuesday, July 2, 2002, at 03:42 PM, Torsten Curdt wrote: > On Tuesday 02 July 2002 21:31, George Schlossnagle wrote: >> You need to do a >> >> ZEND_GET_MODULE(modulename); >> >> in yor e

Re: [PHP-DEV] extension modules

2002-07-02 Thread Torsten Curdt
On Tuesday 02 July 2002 21:31, George Schlossnagle wrote: > You need to do a > > ZEND_GET_MODULE(modulename); > > in yor extension. That did it!! :-)) Thanks I found a #ifdef COMPILE_DL_SQLANYWHERE ZEND_GET_MODULE(sqlanywhere) #endif in the code. I only needed to removed the preprocessor instr

Re: [PHP-DEV] extension modules

2002-07-02 Thread George Schlossnagle
You need to do a ZEND_GET_MODULE(modulename); in yor extension. George On Tuesday, July 2, 2002, at 03:25 PM, Torsten Curdt wrote: > On Tuesday 02 July 2002 21:21, [EMAIL PROTECTED] wrote: >> On Tue, 2 Jul 2002, Torsten Curdt wrote: >>> Two simple questions: >>> >>> 1) Does the "core" (aka li

Re: [PHP-DEV] extension modules

2002-07-02 Thread derick
On Tue, 2 Jul 2002, Torsten Curdt wrote: [...] > Hm... but now I am back puzzled why I cannot load my self compiled extension > module. I always get: > > PHP Warning: Invalid library (maybe not a PHP library) '..' > > I thought I get this because it needs to be "registered" at compile time

Re: [PHP-DEV] extension modules

2002-07-02 Thread Torsten Curdt
On Tuesday 02 July 2002 21:21, [EMAIL PROTECTED] wrote: > On Tue, 2 Jul 2002, Torsten Curdt wrote: > > Two simple questions: > > > > 1) Does the "core" (aka libphp4.so) need to know about all possible > > extension modules at compilation time (--with-FOO=shared) in order to > > load a module? Or i

Re: [PHP-DEV] extension modules

2002-07-02 Thread derick
On Tue, 2 Jul 2002, Torsten Curdt wrote: > Two simple questions: > > 1) Does the "core" (aka libphp4.so) need to know about all possible extension > modules at compilation time (--with-FOO=shared) in order to load a module? Or > is it possible to just load any module that is compiled against t

[PHP-DEV] extension modules

2002-07-02 Thread Torsten Curdt
Two simple questions: 1) Does the "core" (aka libphp4.so) need to know about all possible extension modules at compilation time (--with-FOO=shared) in order to load a module? Or is it possible to just load any module that is compiled against the same php version? 2) When will extension module

[PHP-DEV] Re: mail() function

2002-07-02 Thread Saci
Mine is /usr/sbin/sendmail -t -i yours only you know, if you made a standard Linux install you have a good chance to have the same path. "Alvaro J Hernandez A" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, I have two server, server A is a web serv

Re: [PHP-DEV] event calendar script

2002-07-02 Thread Sebastian Bergmann
Dave - Technical Support wrote: > Hi there, this is my first time posting, so I'm sorry if I'm not > following the rules properly. =) 1.) Don't start a new thread by repyling to a posting from another one. 2.) This list is dedicated to the development _of_ PHP, not the development _wi

[PHP-DEV] File Descriptors

2002-07-02 Thread B i g D o g
I have searched the archives and all over google and php.net; however, i can not find an answer to this question: When running a php script that opens a file descriptor (implicit and not) does the file descriptor get closed automatically when the script terminates? Thanks, B i g D o g -

[PHP-DEV] CVS Account Request: zruya

2002-07-02 Thread Matan Zruya
I would like to have a cvs account in order to help translate the php manual into hebrew. i will need access to the module phpdoc. -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] event calendar script

2002-07-02 Thread Dave - Technical Support
Hi there, this is my first time posting, so I'm sorry if I'm not following the rules properly. =) I've set up the event calendar script that http://www.php.net uses on their front page. The only problem I'm having is getting the information from the mysql database to the backend.csv file that it u

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
Jani Taskinen wrote: > Your build stuff (gcc 3.1 installation done wrong?) is shitnitz. Hm, how come everything else works fine? > And I'd update to autoconf 2.53.. :) Yeah, later. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I h

[PHP-DEV] Bugpack 13

2002-07-02 Thread Steph
I'll do what I can with this, but could do with help from someone with NTFS :) -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Bug #16242 Updated: Problems with case sensitivitygerman letters

2002-07-02 Thread derick
Hello, it's not a flaw. Without the correct locale (de_DE) the system doesn't know which uppercase and lowercase characters should match, so you need to set this in youur script. It works on windows, because his locale settings are probably set to "German" already. Derick On Tue, 2 Jul 2002,

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Jani Taskinen
Your build stuff (gcc 3.1 installation done wrong?) is shitnitz. And I'd update to autoconf 2.53.. :) --Jani -- On Tue, 2 Jul 2002, Sebastian Bergmann wrote: >Sebastian Bergmann wrote: >> http://www.sebastian-bergmann.de/stuff/config.log > > *.log gives 403, t

[PHP-DEV] mail() function

2002-07-02 Thread Alvaro J Hernandez A
Hi, I have two server, server A is a web server and the server B is a mail server. I need to send a e-mail from my web server with mail() function using the mail server. the file php.ini have a parameter named "sendmail_path", who say me which is its value? thank you... -- -- Alvaro J Hern

[PHP-DEV] trying to compile ext module

2002-07-02 Thread Torsten Curdt
I am running debian woody and try to compile the sqlanywhere extension module from sybase so it can easily be loaded from the php.ini. It builds just fine. But seems not to be properly linked and cannot be loaded since php complains about missing symbols... ...before I get any flames - I know

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > http://www.sebastian-bergmann.de/stuff/config.log *.log gives 403, try http://www.sebastian-bergmann.de/stuff/config.txt -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wis

Re: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
James Cox wrote: > can you email me a copy of your php_config.h and config.log, please? http://www.sebastian-bergmann.de/stuff/config.log http://www.sebastian-bergmann.de/stuff/php_config.h -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/

RE: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread James Cox
can you email me a copy of your php_config.h and config.log, please? -- james > -Original Message- > From: Sebastian Bergmann [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 02, 2002 4:57 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DEV] "MYSQL_UNIX_ADDR" redefined > > > In file includ

[PHP-DEV] "MYSQL_UNIX_ADDR" redefined

2002-07-02 Thread Sebastian Bergmann
In file included from /usr/local/mysql/include/mysql/mysql.h:80, from /usr/src/php4/ext/mysql/php_mysql.c:65: /usr/local/mysql/include/mysql/mysql_version.h:15:1: warning: "MYSQL_UNIX_ADDR" redefined In file included from /usr/src/php4/TSRM/tsrm_config.h:1, from /

[PHP-DEV] Re: Bug #16242 Updated: Problems with case sensitivity german letters

2002-07-02 Thread Alexander Wirtz
http://bugs.php.net/bug.php?id=16242&edit=1 Could someone please give this an eye? In my opinion, this isn't a documentation problem, but a flaw within the pcre-extension, as his code is clearly working with lowercase umlauts, but when trying to match the uppercase, the pcre ignores the /i opt

Re: [PHP-DEV] serial port communication

2002-07-02 Thread Tracker 1
if it is on windows, you can access a com object/objects that in turn access the serial device.. alternatively, you can write a wrapper service in tcp/ip that you access through the php-sockets. -- === Michael J. Ryan - tracker

Re: [PHP-DEV] Help: problem in array handling

2002-07-02 Thread Venkat Raghavan
Thanx, Markus, for your prompt and "bull's eye" reply. That worked like a beauty! Also discovered some mistakes in our test script. Thanx again, Venkat >>> Markus Fischer <[EMAIL PROTECTED]> 02/07/2002 16:05:43 >>> On Tue, Jul 02, 2002 at 04:23:13AM -0600, Venkat Raghavan wrote : >

Re: [PHP-DEV] Help: problem in array handling

2002-07-02 Thread Markus Fischer
On Tue, Jul 02, 2002 at 04:23:13AM -0600, Venkat Raghavan wrote : > zval php_element; [...] > // Put element into array > zend_hash_index_update(php_var->value.ht, (int)i, (void*)&php_element, >sizeof(zval*), NULL); You put in the hash a static address o

[PHP-DEV] Help: problem in array handling

2002-07-02 Thread Venkat Raghavan
Hi. We are writing an extension for Novell's component infrastructure piece called UCS, which allows one to talk to various component systems. It is modelled on the Java extension written by Sam Ruby. We have been able to handle the basic datatypes and even objects, but are presently stuck with

[PHP-DEV] CVS Account Request: hyx

2002-07-02 Thread Zjlasdg
good -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] serial port communication

2002-07-02 Thread Mike Hall
As far as I know, nobody has looked at this before. So you'd be starting from scratch. - Original Message - From: "Zac Hillier" <[EMAIL PROTECTED]> To: "Mike Hall" <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 9:40 AM Subject: Re: [PHP-DEV] serial port communication > Thanks for the

Re: [PHP-DEV] serial port communication

2002-07-02 Thread Mike Hall
It's something I need to look into for a project I'm putting together at work. I just haven't got the time at the moment to do it, sadly -- Mike -- "Zac Hillier" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On the 20th May Mike Hall posted a message about c

[PHP-DEV] serial port communication

2002-07-02 Thread Zac Hillier
On the 20th May Mike Hall posted a message about communication with serial ports. I'm trying to research using php with a multi port serial card, can anyone tell me if this progressed, else is there anywhere I can look for further information? Thanks all Zac -- PHP Development Mailing List

Re: [PHP-DEV] compiling extension

2002-07-02 Thread Ron Lange
A attempt to explain... Source-Struktur: -- PHP-Tree INDI-CVS ext ... @indi -->php *buildconf (php) include *configure (php)

Re: [PHP-DEV] compiling extension

2002-07-02 Thread Ron Lange
Hi Markus, > > You don't need to include your sources but a static library > of your extension needs to be created which exports the > symbols as needed and which gets statically linked into > libphp4.so . How you build and link static libs automatically by modifying config.m4?