[PHP-DEV] how to call a website from within a php script

2003-02-16 Thread christian tischler
Can anybody tell me how to call a website from within a php script. Meaning: how to forward to a website, or if something happens then goto that website. hope it is clear now not just new to php but news groups also... christian -- PHP Development Mailing List

[PHP-DEV] Re: call website from php script

2003-02-16 Thread christian tischler
please delete Christian Tischler [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can anybody tell me how to call a website from within aphp script. not just new to php but news groups also... christian -- PHP Development Mailing List http://www.php.net/

[PHP-DEV] Re: call a website from within a php script

2003-02-16 Thread christian tischler
please delete Christian Tischler [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... From: christian tischler [EMAIL PROTECTED] Subject: call website from php script Date: 14 February 2003 21:59 Can anybody tell me how to call a website from within a php script.

[PHP-DEV] Re: how to call a website from within a php script

2003-02-16 Thread christian tischler
please delete Christian Tischler [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can anybody tell me how to call a website from within a php script. Meaning: how to forward to a website, or if something happens then goto that website. hope it is

[PHP-DEV] Re: iopy,

2003-02-16 Thread christian tischler
please delete Christian Tischler [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... yu,pu -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] database select

2003-02-16 Thread Hans Prins
Hello, Im trying to select only one row in a mysql database (in this case a poll with the smallest pollID)... Each row has a field called pollID which is the primary key and is auto incremented when a new row is inserted. I could possible do the following but I think its a bit extensive:

Re: [PHP-DEV] how to call a website from within a php script

2003-02-16 Thread Sebastian Bergmann
christian tischler wrote: Can anybody tell me how to call a website from within a php script. Please ask user questions on the [EMAIL PROTECTED] list. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift:

Re: [PHP-DEV] database select

2003-02-16 Thread Sebastian Bergmann
Hans Prins wrote: [...] Please ask user questions on the [EMAIL PROTECTED] list. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/ -- PHP Development Mailing List

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 / run-tests.php /ext/curlinterface.c streams.c /ext/fbsql php_fbsql.c /ext/ftp ftp.c /ext/hyperwavehg_comm.c hw.c /ext/imap php_imap.c /ext/ldap ldap.c /ext/

2003-02-16 Thread Wez Furlong
Should be fixed now. If any more of these occur, the problem is that winsock2.h needs to be included before windows.h (which itself includes winsock.h). I noticed that some source files include the winsock headers twice, so there is probably some spring cleaning that can be done. I have included

[PHP-DEV] new Date extenstion

2003-02-16 Thread Pierre-Alain Joye
Hello, I made a new extension to work with dates, you may find infossources here: Docs: http://www.pearfr.org/php_date/docs/ Sources: http://www.pearfr.org/php_date/sources/ This is a alpha release, a first shot. I still have to create a full set of tests script. The idea is to provide a

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-16 Thread James E. Flemer
When getcwd() fails in certain places, we end up passing a zero length cwd_state to virtual_file_ex(). This causes virtual_file_ex() to assume the path to be /, thus: include(foo.php); ends up trying to open, /foo.php, which is wrong. If you want to play with this problem, its very easy to

Re: [PHP-DEV] new Date extenstion

2003-02-16 Thread Pierre-Alain Joye
hello, As a side note, the date range starts on 1/1/1 and ends on 31/12/65535. pierre -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] new Date extenstion

2003-02-16 Thread Vlad Krupin
Looks interesting. A lot of functions though. Would it make sense to at least remove all date_sub_* () functions in favor of using the date_add_* () counterparts with negative values? E.g. date_add_days(-10) does the same as date_sub_days(10) ? One of the easy ways to reduce usability of an

Re: [PHP-DEV] new Date extenstion

2003-02-16 Thread Theo Spears
On Sun, 2003-02-16 at 16:17, Pierre-Alain Joye wrote: hello, As a side note, the date range starts on 1/1/1 and ends on 31/12/65535. pierre What about BCE dates? Wouldn't it be more sensible to allow between 31/12/-32767 to 31/12/32767 Theo Spears -- PHP Development Mailing List

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-16 Thread Andi Gutmans
At 03:41 PM 2/13/2003 -0500, James E. Flemer wrote: RCS file: /repository/TSRM/tsrm_virtual_cwd.c,v retrieving revision 1.41 diff -u -b -r1.41 tsrm_virtual_cwd.c --- TSRM/tsrm_virtual_cwd.c 6 Nov 2002 18:07:22 - 1.41 +++ TSRM/tsrm_virtual_cwd.c 13 Feb 2003 20:40:07 - @@

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-16 Thread James E. Flemer
On Sun, 16 Feb 2003, Andi Gutmans wrote: At 03:41 PM 2/13/2003 -0500, James E. Flemer wrote: RCS file: /repository/TSRM/tsrm_virtual_cwd.c,v retrieving revision 1.41 diff -u -b -r1.41 tsrm_virtual_cwd.c --- TSRM/tsrm_virtual_cwd.c 6 Nov 2002 18:07:22 - 1.41 +++

Re: [PHP-DEV] new Date extenstion

2003-02-16 Thread Pierre-Alain Joye
On Sun, 16 Feb 2003 11:58:52 -0800 Vlad Krupin [EMAIL PROTECTED] wrote: Looks interesting. A lot of functions though. Would it make sense to at least remove all date_sub_* () functions in favor of using the date_add_* () counterparts with negative values? E.g. date_add_days(-10) does the

[PHP-DEV] Re: new Date extenstion

2003-02-16 Thread moshe doron
Pierre, u catching me a moment before i'm commiting date_sunrise(), date_sunset() functions, as agreed on the list. do we have a naming conflict here? moshe. -- Pierre-Alain Joye [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I made a

Re: [PHP-DEV] new Date extenstion

2003-02-16 Thread Pierre-Alain Joye
On 16 Feb 2003 20:17:13 + Theo Spears [EMAIL PROTECTED] wrote: On Sun, 2003-02-16 at 16:17, Pierre-Alain Joye wrote: hello, As a side note, the date range starts on 1/1/1 and ends on 31/12/65535. pierre What about BCE dates? Wouldn't it be more sensible to allow between

Re: [PHP-DEV] Re: new Date extenstion

2003-02-16 Thread Pierre-Alain Joye
On Mon, 17 Feb 2003 00:04:50 +0200 moshe doron [EMAIL PROTECTED] wrote: Pierre, u catching me a moment before i'm commiting date_sunrise(), date_sunset() functions, as agreed on the list. do we have a naming conflict here? No, I answered for 2 reasons, the 1st was to respect the new naming

[PHP-DEV] [PATCH] make the win32 project working again after date_sun*()'s

2003-02-16 Thread moshe doron
http://212.199.221.100/moshe/win32project-sunfuncs.patch.txt --

Re: [PHP-DEV] [PATCH] make the win32 project working again afterdate_sun*()'s

2003-02-16 Thread Wez Furlong
I'll do this now. On Mon, 17 Feb 2003, moshe doron wrote: http://212.199.221.100/moshe/win32project-sunfuncs.patch.txt -- -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: php4 /ext/standard/tests/general_functions sunfuncts.phpt

2003-02-16 Thread moshe doron
looks to me unnecessary, since the sixts parameter is the offset. -- Jani Taskinen [EMAIL PROTECTED] wrote in message news:cvssniper1045461063@cvsserver... sniper Mon Feb 17 00:51:03 2003 EDT Modified files: /php4/ext/standard/tests/general_functions

Re: [PHP-DEV] Re: php4 /ext/standard/tests/general_functionssunfuncts.phpt

2003-02-16 Thread Jani Taskinen
On Mon, 17 Feb 2003, moshe doron wrote: looks to me unnecessary, since the sixts parameter is the offset. It affects mktime() and as that timestamp is used to generate the SUNFUNCS_RET_TIMESTAMP part of the test, if it differs, the test fails. --Jani -- PHP Development

[PHP-DEV] call a website from within a php script

2003-02-15 Thread christian tischler
From: christian tischler [EMAIL PROTECTED] Subject: call website from php script Date: 14 February 2003 21:59 Can anybody tell me how to call a website from within a php script. not just new to php but news groups also... christian -- PHP Development Mailing List http://www.php.net/ To

[PHP-DEV] iopy,

2003-02-15 Thread christian tischler
yu,pu -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] call website from php script

2003-02-15 Thread christian tischler
Can anybody tell me how to call a website from within aphp script. not just new to php but news groups also... christian -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] call a website from within a php script

2003-02-15 Thread Derick Rethans
Hello, please forward user questions to the [EMAIL PROTECTED] mailinglist, this list is for development _OF_ PHP, not development _with_ PHP. Derick On Sat, 15 Feb 2003, christian tischler wrote: From: christian tischler [EMAIL PROTECTED] Subject: call website from php script Date: 14

[PHP-DEV] Current HEAD segfaults with pear

2003-02-15 Thread Sebastian Bergmann
sb@wopr-mobile:/usr/src/php5 gdb /usr/local/bin/php GNU gdb 5.3 Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type show copying to see the

[PHP-DEV] PHP 4 Bug Summary Report

2003-02-15 Thread php-dev
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (1052 total including feature requests) ===[*Configuration Issues] 19282 Wont fix Place php4ts.dll into \sapi 20490 Analyzed enable versioning not supported on OSX

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-15 Thread Andi Gutmans
Hey, The fchdir() part of the patch looks fine but I didn't quite understand the rest. PHP only uses realpath() if it doesn't fail, so what is the exact problem? What does that other code do? Andi At 03:29 PM 2/12/2003 -0500, James E. Flemer wrote: Well all the fancy new streams code in 4.3.0

[PHP-DEV] CLI long options

2003-02-15 Thread Marcus Börger
Hi, the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it fixes the problem with duplicate error messages if arguments to command line are erroneous. http://marcus-boerger/php/ext/cli-getopt.diff.txt --

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Jani Taskinen
Erm..that url doesn't look quite ok..? :) --Jani On Sat, 15 Feb 2003, Marcus Börger wrote: Hi, the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it fixes the problem with duplicate

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Marcus Börger
At 18:31 15.02.2003, Jani Taskinen wrote: Erm..that url doesn't look quite ok..? :) --Jani YES - It should have been: http://marcus-boerger.de/php/ext/cli-getopt.diff.txt -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Moriyoshi Koizumi
[EMAIL PROTECTED] (Marcus Börger) wrote: Hi, the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it fixes the problem with duplicate error messages if arguments to command line are erroneous.

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Jani Taskinen
On Sun, 16 Feb 2003, Moriyoshi Koizumi wrote: [EMAIL PROTECTED] (Marcus Börger) wrote: Hi, the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it fixes the problem with duplicate error messages if

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Derick Rethans
On Sat, 15 Feb 2003, Jani Taskinen wrote: On Sun, 16 Feb 2003, Moriyoshi Koizumi wrote: [EMAIL PROTECTED] (Marcus Börger) wrote: Hi, the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Ilia A.
On February 15, 2003 12:16 pm, Marcus Börger wrote: the patch below allows long option names such as --version and --help what eases the use of php especially when used on the command line. And it fixes the problem with duplicate error messages if arguments to command line are erroneous. +1

Re: [PHP-DEV] CLI long options

2003-02-15 Thread Marcus Börger
At 18:56 15.02.2003, Derick Rethans wrote: On Sat, 15 Feb 2003, Jani Taskinen wrote: On Sun, 16 Feb 2003, Moriyoshi Koizumi wrote: +1 from me if you are sure it doesn't break BC. +1 for MFH even if it doesn't break BC. :) +1 for this, but -1 for MFH, because Jani wants to break BC

[PHP-DEV] [PATCH] (resend) fix for bug #21600 and #22231

2003-02-15 Thread Moriyoshi Koizumi
Hi, Could anyone who has ZE karma review this patch again? Thanks, Moriyoshi Index: Zend/zend_execute.c === RCS file: /repository/Zend/zend_execute.c,v retrieving revision 1.316.2.3 diff -u -r1.316.2.3 zend_execute.c ---

Re: [PHP-DEV] [PATCH] (resend) fix for bug #21600 and #22231

2003-02-15 Thread Andi Gutmans
We'll review it. I think we'll use it almost as-is except that we won't do the old check variable_ptr_ptr != value_ptr_ptr If you don't see anything on this front in the next couple of days please remind me. Andi At 03:58 AM 2/16/2003 +0900, Moriyoshi Koizumi wrote: Hi, Could anyone who has ZE

[PHP-DEV] Re: [PHP-CVS] cvs: php4 / run-tests.php /ext/curl interface.c streams.c /ext/fbsql php_fbsql.c /ext/ftp ftp.c /ext/hyperwave hg_comm.c hw.c /ext/imapphp_imap.c /ext/ldap ldap.c /ext/mcal php_mcal.c /ext/mysql php_mysql.c /ext/odbc php_odbc.c /ext/rpc/com com_wrapper.c /ext/snmp snmp.c /ext/standarddns.c file.c fsock.c ftp_fopen_wrapper.c http_fopen_wrapper.c pack.c /ext/zlibzlib.c /main fopen_wrappers.c mergesort.c network.c php.h php_open_temporary_file.cstreams.c /win32 php4dllts.dsp sendmail.c time.h

2003-02-15 Thread Sebastian Bergmann
Wez Furlong wrote: Log: A add much more useful select(2) implementation than is provided by windows sockets. This broke the build for me. I get 1500+ errors that look like this one: c:\programme\microsoft sdk\include\winsock2.h(2478): error C2375: 'WSAAsyncGetHostByName':

Re: [PHP-DEV] build no longer working

2003-02-14 Thread Marcus Börger
Ensure that m4 --version actually outputs 1.4 and not 1.4o. Some rpms are mislabeled in that area. Otherwise, the only problem source comes from having a polluted installation where multiple autoconf/libtool versions are sprinkled through the whole system. Thanks for the

[PHP-DEV] recursion?????

2003-02-14 Thread Alex Davis
Ok ... here is the sitituation... I am creating a registration form. What I have so far works ... the user registers using this form and the form calls another page that will check the validity of the data (checking for username availability, etc...). If there is an error, display the error

Re: [PHP-DEV] recursion?????

2003-02-14 Thread Derick Rethans
Hello, please forward user questions to the [EMAIL PROTECTED] mailinglist, this list is for development _OF_ PHP, not development _with_ PHP. Derick On Thu, 13 Feb 2003, Alex Davis wrote: Ok ... here is the sitituation... I am creating a registration form. What I have so far works ... the

[PHP-DEV] sybase_ct batch query

2003-02-14 Thread Michael Ulbrich
Hi there, here's a small patch for sybase_query() in ext/sybase_ct.c which gives some extended functionality in that it allows to send batch queries from php to the Sybase backend. Currently it's only possible to send single queries via sybase_query(), but in some cases it can be convenient to

Re: [PHP-DEV] sybase_ct batch query

2003-02-14 Thread Timm Friebe
On Fri, 2003-02-14 at 14:37, Michael Ulbrich wrote: Hi there, Hi, here's a small patch for sybase_query() in ext/sybase_ct.c which gives some extended functionality in that it allows to send batch queries from php to the Sybase backend. I'll have a look at it as soon as possible. Hello from

Re: [PHP-DEV] Why i believe we need final

2003-02-14 Thread Marcus Börger
At 22:05 23.01.2003, Marcus Börger wrote: The current OO implementation ( ... bla ... ) final ( ... bla ... ) I just updated the patch and it is getting a bit smaller due to latest engine changes. I also moved the check code from zend_language_parser.y into zend_compile.c (as suggested by...i

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-14 Thread Eric Lambart
On Thu, 13 Feb 2003 09:02:44 -0800, Eric Lambart wrote: Second of all, I have narrowed the problem down a bit. It has nothing to do with parentheses or single-quotes (surprise!). Seriously... I just observed it mangling another string, but what seemed stranger yet, it changed

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-14 Thread Wez Furlong
Hi Eric, It really just sounds like you have some bug in your code where your pointers are misbehaving. All I can suggest is that you look very carefully at each pointer in the relevant code to make sure it is ok. Also, try stripping it down a couple of lines at a time (by commenting them out)

[PHP-DEV] Can't build ext/mysqli with sapi/apache2{handler|filter}

2003-02-14 Thread Sebastian Bergmann
sb@wopr-mobile:/usr/src/php5 cat config.mysql #! /bin/sh './configure' \ '--enable-debug' \ '--with-apxs2=/usr/local/apache2/bin/apxs' \ '--with-mysql=/usr/local/mysql' \ '--with-mysqli=/usr/local/mysql' \ '--with-zlib' produces the errors shown here

[PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
From HEAD: ./configure works fine (no options)... Make, everything. But... ./configure --with-apxs=/usr/local/apache/bin/apxs Causes some weirdness on Make... [user@localhost]# make /bin/sh libtool --preserve-dup-deps --mode=compile gcc -I/home/php/php5/ext/mysql/libmysql -Iext/mysql/

Re: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Derick Rethans
On Thu, 13 Feb 2003, John Coggeshall wrote: I'm not familiar enough with the build environment as a whole, but I've been building HEAD for quite some time now and I'm not sure why now it'd just choke like thisAny suggestions welcome. upgrade your libtool to 1.4.3, it is required now.

RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
upgrade your libtool to 1.4.3, it is required now. [user@localhost php5]# ./buildconf using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.13 (ok) buildconf: automake version 1.4-p5 (ok) buildconf: libtool version 1.4.3 (ok) And just to be sure..

RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Edin Kadribasic
On Thu, 13 Feb 2003, John Coggeshall wrote: upgrade your libtool to 1.4.3, it is required now. [user@localhost php5]# ./buildconf using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.13 (ok) buildconf: automake version 1.4-p5 (ok) buildconf:

RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Jani Taskinen
If output of 'm4 --version' != 'GNU m4 1.4' you need to update it and rebuild autoconf with the working m4. --Jani On Thu, 13 Feb 2003, John Coggeshall wrote: upgrade your libtool to 1.4.3, it is required now. [user@localhost php5]# ./buildconf using default Zend

RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
Does a snapshot from snaps.php.net compile without running ./buildconf? Yep it does, actually... I'll investigate further into it when I get some sleep :) John -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP-DOC] Re: function.main

2003-02-13 Thread Philip Olson
On Wed, 12 Feb 2003, Gabor Hojtsy wrote: what is function.main? it keeps popping up on my requires and links to = yoru site but nuthin' happens That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main

Re: [PHP-DEV] Re: function.main

2003-02-13 Thread Hartmut Holzgraefe
Gabor Hojtsy wrote: That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main shortcut shuold point to somewhere on the homepage, explaining what is function.main speaking of the link feature: can't we

[PHP-DEV] Re: [PHP-DOC] Re: function.main

2003-02-13 Thread Gabor Hojtsy
It was fixed in that it will link to documention for include() or require() (depending on the error) instead of main(). So, it links to different yet more appropriate pages now. Not sure if/what other errors cause a link to here but I agree we may as well create a dummy page for main()

Re: [PHP-DEV] Re: function.main

2003-02-13 Thread Gabor Hojtsy
That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main shortcut shuold point to somewhere on the homepage, explaining what is function.main speaking of the link feature: can't we deactivate that

RE: [PHP-DEV] Register Shutdown Function for Apache

2003-02-13 Thread Joseph Tate
Thanks Jani. I'll work on getting the patch working on HEAD and PHP_4_3 this afternoon. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jani Taskinen Sent: Thursday, February 13, 2003 2:49 AM To: Brian Moon Cc: Joseph Tate; Php-Dev List Subject:

[PHP-DEV] Sun LDAP and ldap_set_rebind_proc

2003-02-13 Thread Matthias Lange
Hi, I just created a patch for a customer who needed ldap_set_rebind_proc for named rebinding on a sun ldap server. The #if statements are a bit dirty, but i did not manage to find the correct ifdef condition. Maybe someone can use it or even integrate it into cvs. If you have any questions

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-13 Thread Eric Lambart
On Wed, 12 Feb 2003 13:40:09 -0800, Eric Lambart wrote: UPDATE... If you ask me, this is stranger still. If you recall from my original post-- I am trying to return a serverId object member which contains a value such as N^VESoDMN(107). Again, right before my PHP_FUNCTION returns control to

[PHP-DEV] RE: [PATCH]apache_register_shutdown_function final version

2003-02-13 Thread Zeev Suraski
At 01:37 07/01/2003, Joseph Tate wrote: Well, according to my highly technical methods of deduction (fprintf(stderr, Inside sapi_shutdown);) sapi_shutdown is never called when serving a PHP request when served using mod4_php under Apache. This is because the shutdown_wrapper never gets

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysqli mysqli_api.c

2003-02-13 Thread Sebastian Bergmann
Edin Kadribasic wrote: edink Thu Feb 13 12:15:22 2003 EDT Modified files: /php4/ext/mysqli mysqli_api.c Log: Use my_ulonglong instead of unsigned long long to make msvc++ happy. Did you somehow manage to build MySQL 4.1 on Windows? If so, how? If not, how are you

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysqli mysqli_api.c

2003-02-13 Thread Edin Kadribasic
On Thu, 13 Feb 2003, Sebastian Bergmann wrote: Edin Kadribasic wrote: edink Thu Feb 13 12:15:22 2003 EDT Modified files: /php4/ext/mysqlimysqli_api.c Log: Use my_ulonglong instead of unsigned long long to make msvc++ happy. Did you somehow manage

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysqli mysqli_api.c

2003-02-13 Thread Sebastian Bergmann
Edin Kadribasic wrote: I have indeed. I'm trying to build the current MySQL 4.1 sources from the BitKeeper repository with MS VisualC++ 6 (VisualStudio 98, Service Pack 5) on my Windows 2000 Professional box. The prepare script produces the errors shown in

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysqli mysqli_api.c

2003-02-13 Thread Georg Richter
On Thursday 13 February 2003 18:32, Sebastian Bergmann wrote: Sebastian, Edink: could you please report the bugs you detected when compiling MySQL 4.1 under Windows to http://bugs.mysql.com too?! (You need to sign for a webaccount to report bugs) Georg -- PHP Development Mailing List

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-13 Thread James E. Flemer
Here's that same patch, but without leaking a file descriptor. Any comments yet? Any objections to committing it? -James On Wed, 12 Feb 2003, James E. Flemer wrote: Well all the fancy new streams code in 4.3.0 seems to tickle a Solaris issue with getcwd(). It seems that under certain cases

[PHP-DEV] build no longer working

2003-02-13 Thread Marcus Börger
I updated all m4,autoconf libtool AND now i can no longer build php Anybody help? using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.54 (ok) buildconf: Your version of autoconf likely contains buggy cache code. Running cvsclean for you.

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Magnus M@! 8!Y
On Thu, 13 Feb 2003 23:29:44 +0100 [EMAIL PROTECTED] (Marcus Börger) wrote: I updated all m4,autoconf libtool AND now i can no longer build php Anybody help? using default Zend directory buildconf: checking installation... buildconf: autoconf version 2.54 (ok) Did you try with

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Sascha Schumann
On Thu, 13 Feb 2003, Marcus Börger wrote: I updated all m4,autoconf libtool AND now i can no longer build php Anybody help? Get autoconf-2.13 and m4-1.4 (not 1.4o) from ftp.gnu.org. - Sascha -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread Timm Friebe
On Thu, 2003-02-13 at 09:52, John Coggeshall wrote: From HEAD: [...] libtool: s%^.*/%%: No such file or directory libtool: -e: command not found libtool: -e: command not found libtool: -e: command not found libtool: -e: command not found libtool: -e: command not found (more of these) Try

RE: [PHP-DEV] Weird PHP5 APXS libtools errors

2003-02-13 Thread John Coggeshall
$ export SED=sed $ ./configure ... Somehow, the variable SED is not set. I was just looking at the MakeFile trying to figure this out and I was thinking it must be something like that. It works now -- thanks... But why would SED suddenly stop being defined? Did I break something

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Marcus Börger
At 01:57 14.02.2003, Jani Taskinen wrote: On Fri, 14 Feb 2003, Marcus Börger wrote: AC_PROG_LIBTOOL is defined in libtool.m4, which should come from libtool installation. Most likely you've just got mixed up versions in your system. Easiest way to get it working is to remove _all_

Re: [PHP-DEV] build no longer working

2003-02-13 Thread Sascha Schumann
On Fri, 14 Feb 2003, Marcus Börger wrote: At 01:57 14.02.2003, Jani Taskinen wrote: On Fri, 14 Feb 2003, Marcus Börger wrote: AC_PROG_LIBTOOL is defined in libtool.m4, which should come from libtool installation. Most likely you've just got mixed up versions in your

[PHP-DEV] List of all functions

2003-02-13 Thread Rickard Andersson
I would very much like a complete list of all functions in PHP 4.3.0. Is there a way to generate this from the source tree or do I have to go through it all by hand? -- Rickard -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] List of all functions

2003-02-13 Thread Sascha Schumann
On Fri, 14 Feb 2003, Rickard Andersson wrote: I would very much like a complete list of all functions in PHP 4.3.0. Is there a way to generate this from the source tree or do I have to go through it all by hand? Try http://www.zugeschaut-und-mitgebaut.de/php/ There are also some awk

[PHP-DEV] Re: List of all functions

2003-02-13 Thread Rickard Andersson
I'm such an idiot! 20 seconds after I posted I found this: http://www.php.net/quickref.php I'm really sorry :-) -- Rickard -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/mysqli mysqli_api.c

2003-02-13 Thread Sebastian Bergmann
Georg Richter wrote: could you please report the bugs you detected when compiling MySQL 4.1 under Windows to http://bugs.mysql.com too?! I'm in contact now with the MySQL team's Windows guy. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/

[PHP-DEV] Re: Apache 2.x / PHP 4.2.3 compatibility issue

2003-02-13 Thread Gabor Hojtsy
On your apache2 compatibility page you state Apache 2.0 SAPI-support started with PHP 4.2.0. PHP 4.2.3 its known to work in conjunction with Apache 2.0.39. Don't try to use this version of PHP with any other version of Apache. We do not recommend to use PHP 4.2.3 along with Apache

Re: [PHP-DEV] Re: function.main

2003-02-13 Thread Hartmut Holzgraefe
Gabor Hojtsy wrote: If you turn of html_errors, that should turn off that link too IMHO, not tested though... well, what if i want html errors in the html output but not in the error_log (where they dont make sense) ? ;) -- Six Offene Systeme GmbH http://www.six.de/ i.A. Hartmut Holzgraefe

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-12 Thread Eric Lambart
On Tue, 2003-02-11 at 16:00, Wez Furlong wrote: No offense, but this is really quite a useless problem report. You are not showing any of the zend API that you use to create the object, so how can we help you? No offense taken. I hoped that showing the php_var_dump() would be evidence enough

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-12 Thread Wez Furlong
Hi Eric, return_value is already allocated for you in a PHP_FUNCTION() that is called by the engine (or via call_user_fuction(_ex)), as you have guessed. PHP_FUNCTION(eo_table) Looks correct. /* call the constructor */ if ( call_user_function(NULL, object, ctor_fn, ctor_retval, 0, NULL)

[PHP-DEV] Allowing Fifth Param under SAFE_MODE

2003-02-12 Thread Patrick Maartense
dear PH Dev Team I request the follwing feature to be implemented in a future php version some way of defining the Fifth paramater for MAIL() in the Ini file when using safe_mode like safe_mode_fifth_param = -f [EMAIL PROTECTED] because safe_mode is normaly a must have, a lot of programs now

Re: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli

2003-02-12 Thread Brian Moon
my bad, forgive me. Brian Moon dealnews.com - Original Message - From: Sebastian Bergmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 11:47 PM Subject: Re: [PHP-DEV] Announcement: New MySQL-Extension for PHP 5: ext/mysqli | Brian Moon wrote: | Do you have

Re: [PHP-DEV] session security

2003-02-12 Thread Maxim Maletsky
Keyser Soze [EMAIL PROTECTED] wrote... : There's also something I'm using in my session scripts. I compare the browser referer with all the possible pages it must have come from in each script, this way the user MUST start from the login page, and not can simply type the url with the

[PHP-DEV] php build failed

2003-02-12 Thread jean-charles . meunier
= FAILED TEST SUMMARY - Bug #21131: fopen($filename, a+) has broken position [ext/standard/tests/file/bug21131.phpt] Simple math tests

[PHP-DEV] Re: [SOAP] PEAR / Soap Problem

2003-02-12 Thread Brad LaFountain
Well the PEAR::Soap is defintly more stable and has more features and supports more of the soap spec, where PECL/soap is written in C and is faster. There are some people using PECL/soap in production but it defintly still is still in a unstable mode. So its purely up to your needs. - Brad ---

Re: [PHP-DEV] Re: [SOAP] PEAR / Soap Problem

2003-02-12 Thread Brad LaFountain
sorry, ignore this, wrong list --- Brad LaFountain [EMAIL PROTECTED] wrote: Well the PEAR::Soap is defintly more stable and has more features and supports more of the soap spec, where PECL/soap is written in C and is faster. There are some people using PECL/soap in production but it defintly

[PHP-DEV] CVS Account Request: mipac

2003-02-12 Thread Miroslav Pacholik
I would like to translate part of PHP manual into Czech language. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] adding class members in C

2003-02-12 Thread Dave Viner
Hi, I'm trying to write a class as a PHP C extension. I want to add a member variable to class declaration time. I believe this is possible by adding to the zend_class_entry's default_properties HashTable. My attempts so far have resulted in apache core dumps. My code for

[PHP-DEV] [patch] solaris getcwd() brokeness

2003-02-12 Thread James E. Flemer
Well all the fancy new streams code in 4.3.0 seems to tickle a Solaris issue with getcwd(). It seems that under certain cases solaris' getcwd() fails when other os' work. Consequently 4.3.0 causes a huge ammount of breakage for some sites running solaris. Below is a patch that seems to work

Re: [PHP-DEV] repost: return_value getting corrupted in extension

2003-02-12 Thread Eric Lambart
Wez Furlong said: /* call the constructor */ if ( call_user_function(NULL, object, ctor_fn, ctor_retval, 0, NULL) Looks correct too. However, I would use call_user_function_ex, which relieves you of the burden of creating a retval (among other things). The API for

[PHP-DEV] Re: [PHP-DOC] Re: function.main

2003-02-12 Thread Gabor Hojtsy
what is function.main? it keeps popping up on my requires and links to = yoru site but nuthin' happens That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main shortcut shuold point to somewhere on the homepage,

[PHP-DEV] Re: function.main

2003-02-12 Thread Gabor Hojtsy
what is function.main? it keeps popping up on my requires and links to = yoru site but nuthin' happens That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main shortcut shuold point to somewhere on the homepage,

[PHP-DEV] Re: [PHP-DOC] Re: function.main

2003-02-12 Thread Philip Olson
On Wed, 12 Feb 2003, Gabor Hojtsy wrote: what is function.main? it keeps popping up on my requires and links to = yoru site but nuthin' happens That is if I understand correctly a link in an error message. So either PHP needs to hide that link in error messages, or the function.main

Re: [PHP-DEV] Register Shutdown Function for Apache

2003-02-12 Thread Jani Taskinen
There is now 'HAVE_APACHE' defined when you configure with apache. (dso or static) --Jani On Tue, 11 Feb 2003, Brian Moon wrote: Jani, are you volunteering to add it? If so, please do so at your earliest convience. Brian Moon dealnews.com - Original Message -

[PHP-DEV] Current HEAD segfaults with Horde/CHORA

2003-02-11 Thread Sebastian Bergmann
wopr-mobile:/usr/local/apache2/bin # gdb httpd GNU gdb 5.3 Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type show copying to see the

<    5   6   7   8   9   10   11   12   13   14   >