[PHP-DEV] PHP 4.0 Bug #8949: imap_8bit() does not encode leading dots correctly

2001-01-27 Thread chris . php
From: [EMAIL PROTECTED] Operating system: Windows 2000 PHP version: 4.0.4pl1 PHP Bug Type: IMAP related Bug description: imap_8bit() does not encode leading dots correctly The imap_8bit() function does not duplicate leading dots, which may cause a message to be cut off if i

[PHP-DEV] PHP 4.0 Bug #8828 Updated: mktime using mday<=0

2001-01-27 Thread dieter
ID: 8828 User Update by: [EMAIL PROTECTED] Old-Status: Closed Status: Open Bug Type: Date/time related Description: mktime using mday<=0 I have send a bug report to darwin-developers and apple, too, but i have check some UNIX-systems and i haven't found any man-page, where is describe what

[PHP-DEV] Caching Webhosts and IP's

2001-01-27 Thread Graeme Canivet
Hi everyone. This is my first time posting to this list, hopefully I can get some questions answered as they arise, much like this one:     It's probably not to difficult to get around, and I think I know how, but just wondering if someone else has had a similar problem.   When I run phpinfo

[PHP-DEV] --enable-tiny

2001-01-27 Thread Andi Gutmans
Hi, I often want to test things in PHP which don't require the default extensions to be compiled in. It would be nice if we had something like --enable-tiny which would automatically turn off all of the default extensions (besides standard) which are pcre, mysql, xml and session. Right now ./c

Re: [PHP-DEV] Caching Webhosts and IP's

2001-01-27 Thread Graeme Canivet
False alarm. It's all good. Some variable called HTTP_X_FORWARDED_FOR solved it. that was from the php.net quick ref manual errata, I think! Thanks - Original Message - From: Graeme Canivet To: [EMAIL PROTECTED] Sent: Saturday, January 27, 2001 8:04 AM Subject:

Re: [PHP-DEV] --enable-tiny

2001-01-27 Thread jeremy brand
Am I missing something? Can't you just do --without-mysql? In general, if the option is --with-???, use --without-??? to exclude it. If the options is --enable-???, then use --disable-??? to disable it. Jeremy Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED] http://w

Re: [PHP-DEV] --enable-tiny

2001-01-27 Thread Andi Gutmans
I think you're right :) Andi At 05:19 AM 1/27/2001 -0800, jeremy brand wrote: >Am I missing something? Can't you just do --without-mysql? > >In general, if the option is --with-???, use --without-??? to exclude >it. If the options is --enable-???, then use --disable-??? to disable >it. > >Jere

Re: [PHP-DEV] AGAIN: Caching Webhosts and IP's

2001-01-27 Thread Graeme Canivet
Sorry.. wow, that'd didn't work either.. So, anyone else have a suggestion.   It appears th\at these variables are not set on my server? is that a setting that they should change? or? - Original Message - From: Graeme Canivet To: [EMAIL PROTECTED] Sent: Saturday, Ja

[PHP-DEV] PHP 4.0 Bug #8944 Updated: php.exe crashes for no apparent reason...

2001-01-27 Thread leo
ID: 8944 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: Reproduceable crash Description: php.exe crashes for no apparent reason... heh, seems like there was a syntax error in that code of mine, namely a ')' too much in the end of line 5 :) i realised that when i messed around and ch

RE: [PHP-DEV] --enable-tiny

2001-01-27 Thread Mike Robinson
Andi Gutmans wrote: > > I think you're right :) > > Andi > > At 05:19 AM 1/27/2001 -0800, jeremy brand wrote: > >Am I missing something? Can't you just do --without-mysql? > > > >In general, if the option is --with-???, use --without-??? to exclude > >it. If the options is --enable-???, then

[PHP-DEV] ob_gzhandler memory leak + readfile not working

2001-01-27 Thread Ivan Petrovic
Problems with php4.04pl1 Adding this line to php.ini is not enough: output_handler = ob_gzhandler ; I had to add: header("Content-Encoding: gzip"); to PHP files. Then it worked. It is really nice feature and it speeds things up. But the problem is, as some of you already reported, there is hu

[PHP-DEV] exec not returning status of the executed command

2001-01-27 Thread Ivan Petrovic
Bug in php4.04pl1 return_var in exec() always returns -1 It was working just fine in php4.01 -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAI

Re: [PHP-DEV] php eating carriage returns?

2001-01-27 Thread Zeev Suraski
Yeah, it's the intended behavior - there was a discussion about it a few years ago... Zeev At 17:16 26/1/2001, Monte Ohrt wrote: >example: > > >This is a test > > > > > >done. > > > >When I run this from the command line (4.0.5dev) I get the following >output: > > > >This is a test > >t

Re: [PHP-DEV] --enable-tiny

2001-01-27 Thread Derick Rethans
On Sat, 27 Jan 2001, Andi Gutmans wrote: > I think you're right :) > > Andi I think you need either more coffee, or more sleep =) Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]

[PHP-DEV] Proper IP

2001-01-27 Thread Graeme Canivet
Okay, an update to my caching proxy server problem:   It seems that I get the proper true ip, when using https://, and the caching servers ip when I use http://   Still, does anyone have any info on this problem?

[PHP-DEV] how to catch '=' operations on objects

2001-01-27 Thread Harald Radi
hi, i've written an extension and want the following: $var = new myObject(); $echo $var->elem; // the php_myObject_property_handler() is called and i can return the value $echo $var // php prints out 'Object' , b

[PHP-DEV] PHP 3.0 Bug Summary Report

2001-01-27 Thread php-dev
PHP 3.0 Bug Database summary - http://bugs.php.net Num Status Summary (681 total including feature requests) ===[*General Issues]== 4180 Open is_link returns false when target doesnt exist (should return true) 8083 Open 3.0

[PHP-DEV] PHP 4.0 Bug Summary Report

2001-01-27 Thread php-dev
PHP 4.0 Bug Database summary - http://bugs.php.net Num Status Summary (1084 total including feature requests) ===[*Configuration Issues] 7666 Feedback PHP4 doesn't read php.ini with NT4/IIS 7695 Feedback Error while accessing php scrip

Re: [PHP-DEV] how to catch '=' operations on objects

2001-01-27 Thread Andi Gutmans
You have to do echo $obj->serialize(). It's just an additional few characters to type :) Andi At 05:54 PM 1/27/2001 +0100, Harald Radi wrote: >hi, > >i've written an extension and want the following: > > > >$var = new myObject(); > >$echo $var->elem;

[PHP-DEV] PHP 4.0 Bug #8950: php_mysql_do_connect -> parameter host modified when using port or socket

2001-01-27 Thread jiri . kaderavek
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.4pl1 PHP Bug Type: MySQL related Bug description: php_mysql_do_connect -> parameter host modified when using port or socket -- Edit Bug report at: http://bugs.php.net/?id=8950&edit=1 -- PHP Development

[PHP-DEV] PHP 4.0 Bug #8951: php_mysql_do_connect -> parameter host modified when using port or socket

2001-01-27 Thread jiri . kaderavek
From: [EMAIL PROTECTED] Operating system: Linux PHP version: 4.0.4pl1 PHP Bug Type: MySQL related Bug description: php_mysql_do_connect -> parameter host modified when using port or socket Parameter $host is modified in function php_mysql_do_connect(). Example: $host = "lo

[PHP-DEV] security hole reported by freshmeet

2001-01-27 Thread moshe doron
http://freshmeat.net/news/2001/01/27/980597363.html where can i find any references? tnx moshe. -- -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail:

Re: [PHP-DEV] security hole reported by freshmeet

2001-01-27 Thread Rasmus Lerdorf
The reference is right in the link you posted. Just upgrade to the latest version to address it. On Sat, 27 Jan 2001, moshe doron wrote: > http://freshmeat.net/news/2001/01/27/980597363.html > > where can i find any references? > > tnx > moshe. > > -- > > > > > > -- > PHP Development Mailing Li

[PHP-DEV] error_log doesn't use file locking

2001-01-27 Thread Ivan Petrovic
Bug or feature in all php versions? If couple of users trigger error_log() in the same time - the output file becomes garbled. It should be nice to have flock with timeout. Is there some kind of alarm (like in C) suitable for this? Regards Ivan -- PHP Development Mailing List

Re: [PHP-DEV] security hole reported by freshmeet

2001-01-27 Thread moshe doron
the problem here is, that i have problem to update some servers contains my code coz them not in my ownship, so i just have to test if this bug affected them (if yep i'll temply remove the the file from the server) but no explains. does that subject stay in darken till monday not to give hackers

[PHP-DEV] PHP 4.0 Bug #8952: PHP Installs With PNG, Apache Doesn't

2001-01-27 Thread kevin
From: [EMAIL PROTECTED] Operating system: FreeBSD 3.4 PHP version: 4.0.4pl1 PHP Bug Type: Compile Problem Bug description: PHP Installs With PNG, Apache Doesn't I finally got PHP to compile with GD 1.8.3 on my system, but apache won't compile now. Here is relevant info from

Re: [PHP-DEV] security hole reported by freshmeet

2001-01-27 Thread Rasmus Lerdorf
pl2? This advisory has been out for over a week and the problem is fixed in 4.0.4pl1 -Rasmus On Sat, 27 Jan 2001, moshe doron wrote: > the problem here is, that i have problem to update some servers contains my > code coz them not in my ownship, so i just have to test if this bug affected > t

[PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread moshe doron
in debian, they say this bug affecting also 3pl1, but its not what i fount on php.net. can i be relexed if the servers i using runing 3pl1? -- "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > pl2? This advisory has been out for over a week an

Re: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread Rasmus Lerdorf
4.0.4pl1 has the fix On Sat, 27 Jan 2001, moshe doron wrote: > in debian, they say this bug affecting also 3pl1, but its not what i fount > on php.net. > can i be relexed if the servers i using runing 3pl1? > > -- > > > "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">n

Re: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread Sebastian Bergmann
moshe doron wrote: > can i be relexed if the servers i using runing 3pl1? No, Rasmus was refering to PHP 4.0.4pl1. -- sebastian bergmann e-mail : [EMAIL PROTECTED] homepage : http://www.sebastian-bergmann.de make a gi

[PHP-DEV] Problem with sessions!

2001-01-27 Thread Adrian Pitulac
I have Apache 1.3.14 and Php 4.0.4 on RedHat Linux 7.0!   I started a session from a html and i receive the following message:   Warning: Cannot send session cache limiter - headers already sent (output started at ../x.php:4) in /x.php on line zz   Can you help me?   Thanks!

RE: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread James Moore
No. the bug was localised after the release of PHP 4.0.4 that is the reason why we released the Security Advisory and PHP 4.0.4pl1 so if you think that your servers could be affected you SHOULD upgrade to PHP 4.0.4pl1. It affects ALL versions of PHP 4 up to PHP 4.0.4, you should read the Advisory

[PHP-DEV] register_shutdown_function() not working ?

2001-01-27 Thread Andrew Sitnikov
Hello php-general, Why this not working (php.4.0.4pl1_Linux)? file have only "Funct1" ? Best regards, Andrew Sitnikov e-mail : [EMAIL PROTECTED] GSM: (+372) 56491109 -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECT

RE: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread Andi Gutmans
Moshe, It's quite difficult to exploit this vulnerability without knowing your servers setup. It is possible, but personally I wouldn't worry too much about it although you should urge your ISP to upgrade to 4.0.4pl1. Andi At 08:07 PM 1/27/2001 +, James Moore wrote: >No. the bug was local

[PHP-DEV] PHP 4.0 Bug #8953: in_array returning number of 'hits'

2001-01-27 Thread melvyn
From: [EMAIL PROTECTED] Operating system: any PHP version: 4.0.4pl1 PHP Bug Type: Feature/Change Request Bug description: in_array returning number of 'hits' I'd like to see in_array returning the number of values matching, instead of just true/false. IMHO, it would not cr

Re: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread moshe doron
thanks u all. i just became too pressured by freshmeet message, in the future i'll take more care before badger u with paranoid questions ;| moshe. -- "Andi Gutmans" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Moshe, > > It's quite difficult to exploit t

[PHP-DEV] using PEAR and safe_mode at the same time (long)

2001-01-27 Thread Balazs Nagy
Hi, I work for a web hosting / ASP / linux company, and my last problem is using a standard library (which can be accessed by any php users, like PEAR), and keeping the secret of other directories. Solution for the first problem is 'include_path = ".:/path/to/shared/libs",' and for the second on

[PHP-DEV] com support win32

2001-01-27 Thread Harald Radi
hi, now i've more or less fixed all open com-related bugs. i've written an additional VARIANT module that represents the C VARIANT Datatype. now you can pass this to the com-method and all works fine ... short example: value; // ->value delivers the actual

[PHP-DEV] PHP 4.0 Bug #8885 Updated: Child processes hang on exit

2001-01-27 Thread nick
ID: 8885 User Update by: [EMAIL PROTECTED] Status: Open Bug Type: Reproduceable crash Description: Child processes hang on exit More info... If I don't compile ttf into gd, it doesn't crash... Previous Comments: --- [2001-

[PHP-DEV] Re: [PHP] register_shutdown_function() not working ?

2001-01-27 Thread Andrew Sitnikov
Hello Andrew, Sorry, but i forget what I have Zend Debuger :) Problem in file path, when i use absolute path /home/user/tmp/tmp/text.txt all works. It appears, that in shutdown_function getcwd () == '/', but in script getcwd () == '/home/user/public_html/' Only not clearly why. AS> Hello php

RE: [PHP-DEV] ooops, i thought it new one but:

2001-01-27 Thread James Moore
Paranoid is fine but you can be assured that in cases like this as soon as the bug is localised then the Dev team will fix the problem and as soon as we have made sure the fix works and have tested it sufficently we issue a security advisory and a path level/new release. Its better to be paranoid

[PHP-DEV] PHP 4.0 Bug #8954: compiling with sybase-ct fails

2001-01-27 Thread jr
From: [EMAIL PROTECTED] Operating system: solaris 2.7 PHP version: 4.0.4pl1 PHP Bug Type: Compile Failure Bug description: compiling with sybase-ct fails doing a make fails with the following output: ld: fatal: library -lsybtcl: not found ld: fatal: library -lcomn: not foun

[PHP-DEV] PHP 4.0 Bug #8950 Updated: php_mysql_do_connect -> parameter host modified when using port or socket

2001-01-27 Thread derick
ID: 8950 Updated by: derick Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Bogus Bug Type: MySQL related Assigned To: Comments: 8951 is the same with more info Previous Comments: --- [2001-01-27 12:38:12] [EMAIL P

[PHP-DEV] Re: [PHP-DOC] Problem with sessions

2001-01-27 Thread Derick Rethans
On Sat, 27 Jan 2001, Lars Torben Wilson wrote: > > Yes, just make sure that you're not outputting *anything* (even blank > these lists. > Adrian Pitulac writes: > > I have Apache 1.3.14 and Php 4.0.4 on RedHat Linux 7.0! > > > > I started a session from a html and i receive the following messag

Re: [PHP-DEV] Re: [PHP-DOC] Problem with sessions

2001-01-27 Thread Lars Torben Wilson
Derick Rethans writes: > On Sat, 27 Jan 2001, Lars Torben Wilson wrote: > > > > > Yes, just make sure that you're not outputting *anything* (even blank > > these lists. > > > > Adrian Pitulac writes: > > > I have Apache 1.3.14 and Php 4.0.4 on RedHat Linux 7.0! > > > > > > I started a session f

[PHP-DEV] Re: [PHP-DOC] Problem with sessions

2001-01-27 Thread Derick Rethans
Never mind... I need more coffee. Derick Rethans - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] - JDI Media Solutions - www.jdimedia.nl -

[PHP-DEV] PHP 4.0 Bug #8955: Libs loaded in wrong order: -lcrypto -lssl

2001-01-27 Thread gaa
From: [EMAIL PROTECTED] Operating system: Solaris 2.6 PHP version: 4.0.4pl1 PHP Bug Type: *Install and Config Bug description: Libs loaded in wrong order: -lcrypto -lssl When one tries to configure php with openssl, the libraries are loaded in the wrong order. The problem i

[PHP-DEV] PHP 4.0 Bug #8956: Openldap 2.x may need "-lsasl"

2001-01-27 Thread gaa
From: [EMAIL PROTECTED] Operating system: Solaris 2.6 PHP version: 4.0.4pl1 PHP Bug Type: *Install and Config Bug description: Openldap 2.x may need "-lsasl" When one tries to configure php with openldap 2.x, one may need -lsasl to link (depending upon how it was built). Wo

[PHP-DEV] PHP 4.0 Bug #8957: Please use --prefix to find things

2001-01-27 Thread gaa
From: [EMAIL PROTECTED] Operating system: Solaris 2.6 PHP version: 4.0.4pl1 PHP Bug Type: *Install and Config Bug description: Please use --prefix to find things A suggestion: Please use --prefix when looking for things. I ran configure with many arguments like: --

[PHP-DEV] PHP 4.0 Bug #8958: File uploads append Content-Type string

2001-01-27 Thread medvitz
From: [EMAIL PROTECTED] Operating system: Linux - RedHat 7.0 PHP version: 4.0.4pl1 PHP Bug Type: Unknown/Other Function Bug description: File uploads append Content-Type string Doing file uploads with php 4.0.4pl1 on RH7 (RedHat RPMs) appends the Content-Type: /x

[PHP-DEV] PHP 4.0 Bug #8959: Use of Zend Optimizer w/ CGI SAPI causes echo of #!php at script start

2001-01-27 Thread pdoyle
From: [EMAIL PROTECTED] Operating system: Solaris 2.5.1 PHP version: 4.0.4pl1 PHP Bug Type: PHP options/info functions Bug description: Use of Zend Optimizer w/ CGI SAPI causes echo of #!php at script start I have compiled and installed PHP 4.0.4pl1 without problems, and we

[PHP-DEV] PHP 4.0 Bug #8960: Request for a more flexible Metaphone function

2001-01-27 Thread roy
From: [EMAIL PROTECTED] Operating system: FreeBSD PHP version: 4.0.4pl1 PHP Bug Type: Feature/Change Request Bug description: Request for a more flexible Metaphone function I would like to suggest that the Metaphone function be a little bit more flexible. I have heard (fro

[PHP-DEV] PHP 4.0 Bug #8959 Updated: Use of Zend Optimizer w/ CGI SAPI causes echo of #!php at script start

2001-01-27 Thread jimw
ID: 8959 Updated by: jimw Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Bogus Bug Type: PHP options/info functions Assigned To: Comments: bugs in the zend optimizer should be reported to zend.com. Previous Comments: -

[PHP-DEV] PHP 4.0 Bug #8651 Updated: Linking with bundled Solaris libldap not supported

2001-01-27 Thread sniper
ID: 8651 Updated by: sniper Reported By: [EMAIL PROTECTED] Status: Open Old-Bug Type: *Install and Config Bug Type: LDAP related Assigned To: Comments: reclassified Previous Comments: --- [2001-01-11 04:42:50] [EMAIL PROTE

[PHP-DEV] phpweb karma reguest

2001-01-27 Thread Zak Greant
Access denied: Insufficient Karma (zak|phpweb/manual) Anyone care to grant me enough karma to work on the php website? :) --zak -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP-DEV] PHP 4.0 Bug #8961: Omited Math Function

2001-01-27 Thread Frank
From: [EMAIL PROTECTED] Operating system: N/A PHP version: 4.0 Latest CVS (27/01/2001) PHP Bug Type: Math related Bug description: Omited Math Function There are a set of four math function that convert real numbers to integers, trunc is missing. Other functions of use are

[PHP-DEV] PHP 4.0 Bug #8958 Updated: File uploads append Content-Type string

2001-01-27 Thread mrobinso
ID: 8958 Updated by: mrobinso Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Unknown/Other Function Assigned To: Comments: Please provide a short snippet of code that reproduces this effect. Previous Comments: ---

[PHP-DEV] PHP 4.0 Bug #8961 Updated: Omited Math Function

2001-01-27 Thread rasmus
ID: 8961 Updated by: rasmus Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Analyzed Bug Type: Math related Assigned To: Comments: Not sure what you are asking for here. round() exists Modulus exists with the modulus operator. ie. echo 3%2; ceil() exists floor() exists Division obv

[PHP-DEV] CVS Account Request

2001-01-27 Thread anonymous
Full name: Harald Radi Email: [EMAIL PROTECTED] ID: phanto Purpose: win32 com and dotnet improvements -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EM

[PHP-DEV] PHP 4.0 Bug #8815 Updated: allow_fopen_url = On & include("URL") don't work

2001-01-27 Thread sniper
ID: 8815 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Configuration Issues Assigned To: Comments: Does this simple example work for you: http://www.php.net"); ?> If so, you are propably doing something wrong or have misunderstood the use o

[PHP-DEV] PHP 4.0 Bug #7575 Updated: php stops working correctly !

2001-01-27 Thread sniper
ID: 7575 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Feedback Status: Open Bug Type: OCI8 related Assigned To: Comments: User feedback: Yes this is stile a problem in 4.0.4 ! Previous Comments:

[PHP-DEV] PHP 4.0 Bug #8809 Updated: Cookieless session with Header redirects

2001-01-27 Thread sniper
ID: 8809 Updated by: sniper Reported By: [EMAIL PROTECTED] Status: Open Old-Bug Type: Scripting Engine problem Bug Type: Feature/Change Request Assigned To: Comments: Previous Comments: --- [2001-01-19 14:44:53] [EMAIL PR

Re: [PHP-DEV] Proper IP

2001-01-27 Thread Anil Madhavapeddy
Quoting Graeme Canivet <[EMAIL PROTECTED]>: > Okay, an update to my caching proxy server problem: > > It seems that I get the proper true ip, when using https://, > and the caching servers ip when I use http:// > > Still, does anyone have any info on this problem? > I don't see what the pro

[PHP-DEV] PHP 4.0 Bug #8913 Updated: undefined symbol SQLParamData

2001-01-27 Thread sniper
ID: 8913 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: Apache related Assigned To: Comments: Broken db2 install -> closed. Previous Comments: --- [2001-01-27 03:06:27] [EMAIL P

[PHP-DEV] PHP 4.0 Bug #8951 Updated: php_mysql_do_connect -> parameter host modified when using port or socket

2001-01-27 Thread sniper
ID: 8951 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: MySQL related Assigned To: Comments: Could you please try the latest snapshot from http://snaps.php.net/ to check if this is fixed already? --Jani Previous Comments: --

[PHP-DEV] Leads>?

2001-01-27 Thread leadsleadsmoreleads890
BUY LEADS WHOLESALE FROM US FOR YOUR BUSINESS http://www.geocities.com/leadoffers1900/leads.htm -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

[PHP-DEV] PHP 4.0 Bug #8955 Updated: Libs loaded in wrong order: -lcrypto -lssl

2001-01-27 Thread sniper
ID: 8955 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Install and Config Assigned To: Comments: This should be fixed in CVS already. Please try latest CVS snapshot from http://snaps.php.net/ --Jani Previous Comments: --

[PHP-DEV] PHP 4.0 Bug #8957 Updated: Please use --prefix to find things

2001-01-27 Thread sniper
ID: 8957 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Closed Bug Type: *Install and Config Assigned To: Comments: Many systems have different libraries installed in different locations. So using --prefix would not be a good solution. Just create a install script

[PHP-DEV] E Bay is going up again..

2001-01-27 Thread tabathia
Selling on eBay is getting a little more expensive...the more you sell the more profit they make! Are you tired of eBay and their price hikes? Looking for an alternative? Then we have just what you are looking for at a fraction of the cost! Our Motto, The More YOU sell the more Profit YOU ma

[PHP-DEV] PHP 4.0 Bug #8962: (8212) If the result of an exec() command is one character the result is empty.

2001-01-27 Thread bram
From: [EMAIL PROTECTED] Operating system: N/A PHP version: 4.0.4pl1 PHP Bug Type: Unknown/Other Function Bug description: (8212) If the result of an exec() command is one character the result is empty. This is the solution to problem 8212 File: ext/standard/exec.c Function

Re: [PHP-DEV] PHP 4.0 Bug #8889: Memory is not being freed.

2001-01-27 Thread Rasmus Lerdorf
> PS. Hey, guys from the php-dev. Don't you have anything > to say ? Please do that ! Please do what? You should try to figure out what is leaking memory on you. None of my servers are leaking. -Rasmus -- PHP Development Mailing List To unsubscribe, e-mail: [EMAIL PROT