[PHP-DOC] #22915 [Opn->Csd]: Errors in security - register globals doc page

2003-03-26 Thread alindeman
 ID:   22915
 Updated by:   [EMAIL PROTECTED]
 Reported By:  plaz at addict dot net dot nz
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  4.3.2RC1
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.


Previous Comments:


[2003-03-26 20:28:31] plaz at addict dot net dot nz

The references to fpassthru("filename") in the code examples in
http://www.php.net/manual/en/security.registerglobals.php should be
replaced with readfile("filename") or fpassthru(fopen("filename", "r"))




-- 
Edit this bug report at http://bugs.php.net/?id=22915&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] cvs: phpdoc /en/chapters security.xml

2003-03-26 Thread Andrew Lindeman
alindeman   Wed Mar 26 21:35:18 2003 EDT

  Modified files:  
/phpdoc/en/chapters security.xml 
  Log:
  fixing bug #22915
  
  
Index: phpdoc/en/chapters/security.xml
diff -u phpdoc/en/chapters/security.xml:1.51 phpdoc/en/chapters/security.xml:1.52
--- phpdoc/en/chapters/security.xml:1.51Sun Jan 19 05:30:14 2003
+++ phpdoc/en/chapters/security.xml Wed Mar 26 21:35:18 2003
@@ -1,5 +1,5 @@
 
-
+
  
   Security
 
@@ -1011,7 +1011,7 @@
 $good_login = 1;
 }
 if ($good_login == 1) { // If above test fails, not initialized or checked before 
usage
-fpassthru ("/highly/sensitive/data/index.html");
+readfile ("/highly/sensitive/data/index.html");
 }
 ?>
 ]]>
@@ -1046,7 +1046,7 @@
 }
 
 if ($good_login == 1) { // can be forged by a user in get/post/cookies,
-fpassthru ("/highly/sensitive/data/index.html");
+readfile ("/highly/sensitive/data/index.html");
 }
 ?>
 ]]>
@@ -1060,7 +1060,7 @@
 if($_COOKIE['username']){
 // can only come from a cookie, forged or otherwise
 $good_login = 1;
-fpassthru ("/highly/sensitive/data/index.html");
+readfile ("/highly/sensitive/data/index.html");
 }
 ?>
 ]]>
@@ -1083,7 +1083,7 @@
 !$_GET['username'] ) {
 // Perform other checks to validate the user name...
 $good_login = 1;
-fpassthru ("/highly/sensitive/data/index.html");
+readfile ("/highly/sensitive/data/index.html");
 } else {
mail("[EMAIL PROTECTED]", "Possible breakin attempt", $_SERVER['REMOTE_ADDR']);
echo "Security violation, admin has been alerted.";



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22915 [NEW]: Errors in security - register globals doc page

2003-03-26 Thread plaz at addict dot net dot nz
From: plaz at addict dot net dot nz
Operating system: Irrelevant
PHP version:  4.3.2RC1
PHP Bug Type: Documentation problem
Bug description:  Errors in security - register globals doc page

The references to fpassthru("filename") in the code examples in
http://www.php.net/manual/en/security.registerglobals.php should be
replaced with readfile("filename") or fpassthru(fopen("filename", "r"))
-- 
Edit bug report at http://bugs.php.net/?id=22915&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22915&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22915&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22915&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22915&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22915&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22915&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22915&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22915&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22915&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22915&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22915&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22915&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22915&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22915&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22673 [Opn->Csd]: --with-fastcgi option not avable

2003-03-26 Thread alindeman
 ID:   22673
 Updated by:   [EMAIL PROTECTED]
 Reported By:  progcom at yahoo dot com
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: FreeBSD
 PHP Version:  4.3.1
 New Comment:

Fixed in CVS.  Will show up in a few days.  Thanks


Previous Comments:


[2003-03-13 07:29:40] progcom at yahoo dot com

In PHP Manual

--with-fastcgi=SRCDIR
Build PHP as FastCGI application

is not avable.

I checked configuration file, I think it is changed to

--enable-fastcgi

option. Check it please.




-- 
Edit this bug report at http://bugs.php.net/?id=22673&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] cvs: phpdoc /en/chapters install.configure.misc.xml

2003-03-26 Thread Andrew Lindeman
alindeman   Wed Mar 26 20:32:30 2003 EDT

  Modified files:  
/phpdoc/en/chapters install.configure.misc.xml 
  Log:
  fixing bug #22673
  
  
Index: phpdoc/en/chapters/install.configure.misc.xml
diff -u phpdoc/en/chapters/install.configure.misc.xml:1.7 
phpdoc/en/chapters/install.configure.misc.xml:1.8
--- phpdoc/en/chapters/install.configure.misc.xml:1.7   Mon Feb 10 17:39:38 2003
+++ phpdoc/en/chapters/install.configure.misc.xml   Wed Mar 26 20:32:30 2003
@@ -1,5 +1,5 @@
 
-
+
  
   Misc options
   
@@ -29,7 +29,7 @@


 
- --with-fastcgi=SRCDIR
+ --with-fastcgi
 
 
  



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22874 [Opn->Csd]: Incomplete exit/die documentation

2003-03-26 Thread betz
 ID:  22874
 Updated by:  [EMAIL PROTECTED]
 Reported By: jan at horde dot org
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: 5CVS-2003-03-25 (dev)
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:


[2003-03-25 08:51:06] [EMAIL PROTECTED]

It is documented on:

http://www.php.net/manual/en/function.exit.php

Note: The current CVS version does NOT print the status if it is an
integer. 

This needs to be changed to:

Note: PHP version 4.2.0 and higher does NOT print the status if it is
an integer. 




[2003-03-25 08:24:25] jan at horde dot org

The fact that calling die()/exit() with an integer parameter causes php
to return this as the exit value instead of printing the value out is
missing in the manual.




-- 
Edit this bug report at http://bugs.php.net/?id=22874&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] cvs: phpdoc /en/reference/misc/functions exit.xml

2003-03-26 Thread Friedhelm Betz
betzWed Mar 26 16:33:59 2003 EDT

  Modified files:  
/phpdoc/en/reference/misc/functions exit.xml 
  Log:
  fix for #22874
  
Index: phpdoc/en/reference/misc/functions/exit.xml
diff -u phpdoc/en/reference/misc/functions/exit.xml:1.2 
phpdoc/en/reference/misc/functions/exit.xml:1.3
--- phpdoc/en/reference/misc/functions/exit.xml:1.2 Wed Apr 17 02:40:42 2002
+++ phpdoc/en/reference/misc/functions/exit.xml Wed Mar 26 16:33:58 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -33,7 +33,7 @@
 
 
  
-  The current CVS version does NOT print the status
+  PHP version >= 4.2.0 does NOT print the status
   if it is an integer.
  
 



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22743 [Asn]: link error when building /win32/php4ts.dsw

2003-03-26 Thread sfox
 ID:   22743
 Updated by:   [EMAIL PROTECTED]
 Reported By:  vbhackattack at hotmail dot com
 Status:   Assigned
 Bug Type: Documentation problem
 Operating System: Windows 2000
 PHP Version:  4.3.1
 Assigned To:  steph
 New Comment:

I only just found out about this assignation!

It's the second thing on my TODO @ present, I have to complete current
work first.  Please be patient.  (Until next week.)


Previous Comments:


[2003-03-26 09:17:26] kieran dot kennedy at esbi dot ie

Have ou any ideas yet how to solve this problem?



[2003-03-17 16:10:40] [EMAIL PROTECTED]

Steph promissed to look into this. Assigning to her.



[2003-03-17 07:22:55] vbhackattack at hotmail dot com

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 2000 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)

Reason: 
php4dllts.dsp in php4ts.dsw contains a link.exe command that links
zlib.lib which is neither included in the source package nor accounted
for in the instructions.

One possible resolution: update /extra/win32build.zip to include CVS
[PHP] /zlib and update /manual/en/install.windows.php with instructions
to build and manage zlib.lib





-- 
Edit this bug report at http://bugs.php.net/?id=22743&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22905 [Opn->Bgs]: fatal error cannot open zlib.lib

2003-03-26 Thread didou
 ID:   22905
 Updated by:   [EMAIL PROTECTED]
 Reported By:  kieran dot kennedy at esbi dot ie
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: windows 98
 PHP Version:  4.3.1
 New Comment:

Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.

Thank you for your interest in PHP.

#22743 assigned to steph


Previous Comments:


[2003-03-26 09:30:04] kieran dot kennedy at esbi dot ie

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)






-- 
Edit this bug report at http://bugs.php.net/?id=22905&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22909 [Opn->Bgs]: Critical 'typo' on installation page if viewed with IE6 and Win-2000

2003-03-26 Thread didou
 ID:   22909
 Updated by:   [EMAIL PROTECTED]
 Reported By:  chris at weekscomputing dot com
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Win-2000
 PHP Version:  4.3.2RC1
 New Comment:

doh ! ;)


Previous Comments:


[2003-03-26 12:03:29] chris at weekscomputing dot com

Looks like this is a font problem on my machine. I downloaded the page
and removed the "Courier" entry from the PRE tag in your stylesheet and
it worked fine.

Sorry to have wasted your time!



[2003-03-26 11:03:08] chris at weekscomputing dot com

I followed your instructions on:

  http://www.php.net/manual/en/install.apache2.php

and the Example 3-8 code is rendered as:

  LoadModule php4 module c:/php/sapi/php4apache2.dll
  AddType application/x-httpd-php .php
 
NOTE: The underscore between "php4" and "module" is not shown!

I see from the page source that it *IS* there, so I guess it's a
problem with your "CLASS="apache" tag or (probably more likely) some
glitch in Windows IE6 running on Win-2000.

I tried this page on my XP machine (still running IE 6.0.2800.1106) and
it works fine by the way.

I know this is a very minor thing, but wanted to let you know since I
guess this page will be viewed (almost entirely) by (poor old) Windows
users.






-- 
Edit this bug report at http://bugs.php.net/?id=22909&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22905 [NEW]: fatal error cannot open zlib.lib

2003-03-26 Thread kieran dot kennedy at esbi dot ie
From: kieran dot kennedy at esbi dot ie
Operating system: windows 98
PHP version:  4.3.1
PHP Bug Type: Documentation problem
Bug description:  fatal error cannot open zlib.lib

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)


-- 
Edit bug report at http://bugs.php.net/?id=22905&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22905&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22905&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22905&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22905&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22905&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22905&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22905&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22905&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22905&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22905&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22905&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22905&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22905&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22905&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22743 [Com]: link error when building /win32/php4ts.dsw

2003-03-26 Thread kieran dot kennedy at esbi dot ie
 ID:   22743
 Comment by:   kieran dot kennedy at esbi dot ie
 Reported By:  vbhackattack at hotmail dot com
 Status:   Assigned
 Bug Type: Documentation problem
 Operating System: Windows 2000
 PHP Version:  4.3.1
 Assigned To:  steph
 New Comment:

Have ou any ideas yet how to solve this problem?


Previous Comments:


[2003-03-17 16:10:40] [EMAIL PROTECTED]

Steph promissed to look into this. Assigning to her.



[2003-03-17 07:22:55] vbhackattack at hotmail dot com

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 2000 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)

Reason: 
php4dllts.dsp in php4ts.dsw contains a link.exe command that links
zlib.lib which is neither included in the source package nor accounted
for in the instructions.

One possible resolution: update /extra/win32build.zip to include CVS
[PHP] /zlib and update /manual/en/install.windows.php with instructions
to build and manage zlib.lib





-- 
Edit this bug report at http://bugs.php.net/?id=22743&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22909 [Opn]: Critical 'typo' on installation page if viewed with IE6 and Win-2000

2003-03-26 Thread chris at weekscomputing dot com
 ID:   22909
 User updated by:  chris at weekscomputing dot com
 Reported By:  chris at weekscomputing dot com
 Status:   Open
 Bug Type: Documentation problem
 Operating System: Win-2000
 PHP Version:  4.3.2RC1
 New Comment:

Looks like this is a font problem on my machine. I downloaded the page
and removed the "Courier" entry from the PRE tag in your stylesheet and
it worked fine.

Sorry to have wasted your time!


Previous Comments:


[2003-03-26 11:03:08] chris at weekscomputing dot com

I followed your instructions on:

  http://www.php.net/manual/en/install.apache2.php

and the Example 3-8 code is rendered as:

  LoadModule php4 module c:/php/sapi/php4apache2.dll
  AddType application/x-httpd-php .php
 
NOTE: The underscore between "php4" and "module" is not shown!

I see from the page source that it *IS* there, so I guess it's a
problem with your "CLASS="apache" tag or (probably more likely) some
glitch in Windows IE6 running on Win-2000.

I tried this page on my XP machine (still running IE 6.0.2800.1106) and
it works fine by the way.

I know this is a very minor thing, but wanted to let you know since I
guess this page will be viewed (almost entirely) by (poor old) Windows
users.






-- 
Edit this bug report at http://bugs.php.net/?id=22909&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22909 [NEW]: Critical 'typo' on installation page if viewed with IE6 and Win-2000

2003-03-26 Thread chris at weekscomputing dot com
From: chris at weekscomputing dot com
Operating system: Win-2000
PHP version:  4.3.2RC1
PHP Bug Type: Documentation problem
Bug description:  Critical 'typo' on installation page if viewed with IE6 and Win-2000

I followed your instructions on:

  http://www.php.net/manual/en/install.apache2.php

and the Example 3-8 code is rendered as:

  LoadModule php4 module c:/php/sapi/php4apache2.dll
  AddType application/x-httpd-php .php
 
NOTE: The underscore between "php4" and "module" is not shown!

I see from the page source that it *IS* there, so I guess it's a problem
with your "CLASS="apache" tag or (probably more likely) some glitch in
Windows IE6 running on Win-2000.

I tried this page on my XP machine (still running IE 6.0.2800.1106) and it
works fine by the way.

I know this is a very minor thing, but wanted to let you know since I
guess this page will be viewed (almost entirely) by (poor old) Windows
users.


-- 
Edit bug report at http://bugs.php.net/?id=22909&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22909&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22909&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22909&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22909&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22909&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22909&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22909&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22909&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22909&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22909&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22909&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22909&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22909&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22909&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22906 [Opn->Bgs]: fatal error cannot open zlib.lib

2003-03-26 Thread iliaa
 ID:   22906
 Updated by:   [EMAIL PROTECTED]
 Reported By:  kieran dot kennedy at esbi dot ie
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: windows 98
 PHP Version:  4.3.1
 New Comment:

Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.

Thank you for your interest in PHP.

dupe


Previous Comments:


[2003-03-26 09:39:54] kieran dot kennedy at esbi dot ie

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)






-- 
Edit this bug report at http://bugs.php.net/?id=22906&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22907 [Opn->Bgs]: fatal error cannot open zlib.lib

2003-03-26 Thread iliaa
 ID:   22907
 Updated by:   [EMAIL PROTECTED]
 Reported By:  kieran dot kennedy at esbi dot ie
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: windows 98
 PHP Version:  4.3.1
 New Comment:

Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.

Thank you for your interest in PHP.

dupe


Previous Comments:


[2003-03-26 09:40:00] kieran dot kennedy at esbi dot ie

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)






-- 
Edit this bug report at http://bugs.php.net/?id=22907&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22908 [Opn->Bgs]: fatal error cannot open zlib.lib

2003-03-26 Thread iliaa
 ID:   22908
 Updated by:   [EMAIL PROTECTED]
 Reported By:  kieran dot kennedy at esbi dot ie
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: windows 98
 PHP Version:  4.3.1
 New Comment:

Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the existing bug instead.

Thank you for your interest in PHP.

dupe


Previous Comments:


[2003-03-26 09:40:03] kieran dot kennedy at esbi dot ie

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)






-- 
Edit this bug report at http://bugs.php.net/?id=22908&edit=1


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22906 [NEW]: fatal error cannot open zlib.lib

2003-03-26 Thread kieran dot kennedy at esbi dot ie
From: kieran dot kennedy at esbi dot ie
Operating system: windows 98
PHP version:  4.3.1
PHP Bug Type: Documentation problem
Bug description:  fatal error cannot open zlib.lib

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)


-- 
Edit bug report at http://bugs.php.net/?id=22906&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22906&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22906&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22906&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22906&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22906&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22906&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22906&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22906&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22906&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22906&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22906&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22906&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22906&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22906&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22908 [NEW]: fatal error cannot open zlib.lib

2003-03-26 Thread kieran dot kennedy at esbi dot ie
From: kieran dot kennedy at esbi dot ie
Operating system: windows 98
PHP version:  4.3.1
PHP Bug Type: Documentation problem
Bug description:  fatal error cannot open zlib.lib

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)


-- 
Edit bug report at http://bugs.php.net/?id=22908&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22908&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22908&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22908&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22908&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22908&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22908&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22908&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22908&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22908&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22908&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22908&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22908&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22908&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22908&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] #22907 [NEW]: fatal error cannot open zlib.lib

2003-03-26 Thread kieran dot kennedy at esbi dot ie
From: kieran dot kennedy at esbi dot ie
Operating system: windows 98
PHP version:  4.3.1
PHP Bug Type: Documentation problem
Bug description:  fatal error cannot open zlib.lib

php.exe is not compilable using the instructions at
/manual/en/install.windows.php#install.windows.build and the MS VC++
project file under /win32 for all 3 source versions:
- latest version complete source (php-4.3.1)
- PHP snapshots latest CVS (4.5.x-dev)
- PHP snapshots latest CVS (5.0.x-dev)

Symptom (on MS Windows 98 using MS VC++ 6):
...
Configuration: php4dllts - Win32 Release_TS
...
Linking...
LINK : fatal error LNK1181: cannot open input file "zlib.lib"
Error executing link.exe.
php.exe - 1 error(s), 21 warning(s)


-- 
Edit bug report at http://bugs.php.net/?id=22907&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22907&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22907&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22907&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22907&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22907&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22907&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22907&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22907&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22907&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22907&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22907&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22907&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22907&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22907&r=gnused


-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] cvs: phpdoc /en/reference/sybase/functions sybase-set-message-handler.xml sybase-unbuffered-query.xml

2003-03-26 Thread Sander Roobol
sander  Wed Mar 26 08:53:02 2003 EDT

  Modified files:  
/phpdoc/en/reference/sybase/functions   
sybase-set-message-handler.xml 
sybase-unbuffered-query.xml 
  Log:
  Patch by Timm Friebe <[EMAIL PROTECTED]>
  * Added some examples to sybase-set-message-handler.xml
  * Corrected the statement "will fail" to "will produce a warning"
and added an example to sybase-unbuffered-query.xml
  
  
Index: phpdoc/en/reference/sybase/functions/sybase-set-message-handler.xml
diff -u phpdoc/en/reference/sybase/functions/sybase-set-message-handler.xml:1.1 
phpdoc/en/reference/sybase/functions/sybase-set-message-handler.xml:1.2
--- phpdoc/en/reference/sybase/functions/sybase-set-message-handler.xml:1.1 Fri 
Feb  7 19:57:14 2003
+++ phpdoc/en/reference/sybase/functions/sybase-set-message-handler.xml Wed Mar 26 
08:53:01 2003
@@ -1,5 +1,5 @@
 
-
+
   

 sybase_set_message_handler
@@ -26,6 +26,55 @@
 
  &return.success;
 
+
+ sybase_set_message_handler callback function
+ 
+
+ 
+
+
+ sybase_set_message_handler callback to a 
class
+ 
+
+ 
+
+
+ sybase_set_message_handler unhandled messages
+ 
+
+ 
+

   
 
Index: phpdoc/en/reference/sybase/functions/sybase-unbuffered-query.xml
diff -u phpdoc/en/reference/sybase/functions/sybase-unbuffered-query.xml:1.1 
phpdoc/en/reference/sybase/functions/sybase-unbuffered-query.xml:1.2
--- phpdoc/en/reference/sybase/functions/sybase-unbuffered-query.xml:1.1Fri 
Feb  7 19:57:14 2003
+++ phpdoc/en/reference/sybase/functions/sybase-unbuffered-query.xmlWed Mar 26 
08:53:01 2003
@@ -1,5 +1,5 @@
 
-
+
   

 sybase_unbuffered_query
@@ -36,13 +36,38 @@
  of rows if all result sets have been read. To Sybase, the number of rows 
  is not known and is therefore computed by the client implementation.
 
- 
-  It is not possible to fire up another query directly after starting an
-  unbuffered query and only if all rows have been read or the 
-  remainding rows have been cancelled. This can be acheived by using
-  sybase_free_result on the return value of
-  sybase_unbuffered_query.
+
+ 
+  If you don't read all of the resultsets prior to executing the next query,
+  PHP will raise a warning and cancel all of the pending results. To get rid of
+  this, use sybase_free_result which will cancel pending 
+  results of an unbuffered query.
+ 
+
+
+ The optional store_result can be FALSE to indicate
+ the resultsets should'nt be fetched into memory, thus minimizing memory usage
+ which is particularily interesting with very large resultsets.
 
+
+ sybase_unbuffered_query
+ 
+
+ 
+

   
 



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DOC] Re: [DOC-SV] build failure sv (2003-03-26)

2003-03-26 Thread Derick Rethans
On Wed, 26 Mar 2003, Jome wrote:

> [EMAIL PROTECTED] wrote:
> > /usr/bin/openjade:./dsssl/docbook/lib/dblib.dsl:1487:21:E: 1st
> > argument for primitive "abs" of wrong type: "#f" not a quantity
> > /usr/bin/openjade:./dsssl/docbook/lib/dblib.dsl:1487:21:E: 1st
> > argument for primitive "abs" of wrong type: "#f" not a quantity  
> 
> Thanks for the info.
> 
> Builds on my local machine now so hopefully it'll do on the
> man-generating one too.

AFAICS it's an error in the english one, as all languages suffer from 
this problem.

Derick

-- 

-
 Derick Rethans http://derickrethans.nl/ 
 JDI Media Solutions http://www.jdimedia.nl/
 PHP Magazine - PHP Magazine for Professionals   http://php-mag.net/
-

-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php