Re: [PHP-DOC] Proposal - magic quotes

2004-08-31 Thread Philip Olson

   A few topics for this section:
  
  Yes, very good list Phillip, though I'm not sure the content lends itself to
  the security section. Perhaps features, perhaps tutorial?
 
 A tutorial section would be nice, however, we dont apparantly have
 any such section :) 
 
  
  The only thing we need to do is decide where we want to put this new
  section, (ofcourse and write the actual content!)
 
 Of the existing sections I see either adding it to:
   1. The FAQ: What exactly are all these slashes about?
   or
   2. Appendix T: All about stripping slashes.
 
 I'd prefer #1, since appendix is like a 'Misc' section which I
 personally despise :)

I think it all belongs in the security section.  The section
on register_globals has similar examples to the proposed list
for magical quotes.  And it's all about security.

Aidan, please, one l in philip...no sane philip has two ;)

Regards,
Philip


[PHP-DOC] #29856 [Csd-Opn]: open_basedir / not working

2004-08-31 Thread derick
 ID:   29856
 Updated by:   [EMAIL PROTECTED]
 Reported By:  petrus at activesec dot biz
-Status:   Closed
+Status:   Open
-Bug Type: PHP options/info functions
+Bug Type: Documentation problem
 Operating System: Solaris 8
 PHP Version:  4.3.8
 New Comment:

Marking it as a doc problem then.


Previous Comments:


[2004-08-30 19:08:47] petrus at activesec dot biz

Finally, after reading some mail from mailing lists and some try and
error, I found that:

   open_basedir none

is equal to

   open_basedir /

and / has no effect at all.

Nevertheless in the documentation is no reference to the especial
none parameter.



[2004-08-26 20:15:32] petrus at activesec dot biz

Description:

This bug report is similar to a solved one (bugid=0), but looks
like the bug appears again in version 4.3.8:

I just upgrade PHP from version 4.3.4 to version 4.3.8. After upgrade
from 4.3.4 to 4.3.8 open_basedir / directive stop working (just like
if I comment it out, no effect at all)

The Web server provides hosting for several domains, all of those with
its own homedir:

VirtualHost *:* 
ServerName www.servername.com
ServerAlias servername.com
DocumentRoot /domains/servername.com/web
php_admin_value open_basedir
/domains/servername.com/web:/tmp
php_admin_flag safe_mode Off
php_admin_flag register_globals On
/VirtualHost


where open_basedir restric PHP to the homedir. Some especial
directories, for example the webmail directory, is there only one, but
it is shared by all the virtualhosts (http://virtualhost/webmail/). I
achieve that using (en
httpd.conf):

Alias /webmail /apache2/htdocs/horde/imp
Directory /apache2/htdocs/horde 
   php_admin_flag safe_mode off
   php_admin_value upload_tmp_dir /tmp
   php_admin_value open_basedir /
/Directory

This worked fine until the upgrade. After it, I get a message claiming
that the open_basedir directive is in use, and that
/apache2/htdocs/horde/imp is not in (/).

PHP.ini has no open_basedir tag, al are in apache conf. files using
php_admin_value.

None of the configuretion file were changes durring the upgrade. After
downgrade to 4.3.4 again the problem desapeared.

4.3.8 configure line:

./configure --with-mysql --with-gd --with-apxs2=/apache2/bin/apxs
--with-ldap --sharedstatedir=/tmp --enable-memory-limit=yes
--enable-debug=no --with-zlib --with-kerberos=no
--prefix=/usr/local/chroot/www/usr/local --with-gettext --with-xml
--with-imap=../imap-2002e --without-imap-ssl 
--with-openssl=/usr/local/ssl --with-jpeg-dir=/usr/local
--with-config-file-path=/apache2/conf --enable-ftp=shared







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


[PHP-DOC] #29906 [NEW]: Error in French translation of empty() documentation

2004-08-31 Thread cheal at hotpop dot com
From: cheal at hotpop dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Error in French translation of empty() documentation

Description:

http://www.php.net/manual/fr/function.empty.php
reads
empty() retourne la valeur FALSE si la variable var est affectée ou bien
a une valeur différente de 0; la valeur TRUE dans les autres cas. Dans
d'autres termes, , 0, 0, NULL, FALSE, tableau, var $var;, et les
objets avec des propriétés vides, sont toutes considérés comme vide. TRUE
est retourné si var est vide.
while the English version reads
empty() returns FALSE if var has a non-empty and non-zero value. In
otherwords, , 0, 0, NULL, FALSE, array(), var $var;, and objects with
empty properties, are all considered empty. TRUE is returned if var  is
empty.

The error is that array() should be left unchanged instead of being
translated to tableau.

My encouragements to the PHP doc team for doc quality and translation
quality (despite).


-- 
Edit bug report at http://bugs.php.net/?id=29906edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29906r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29906r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29906r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29906r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29906r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29906r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29906r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29906r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29906r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29906r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29906r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29906r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29906r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29906r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29906r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29906r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29906r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29906r=float


[PHP-DOC] livedocs uft-8

2004-08-31 Thread moshe doron
Just to remember, we still didn't changed the output encoding of livedocs to
uft-8.

Here the patch: http://phpil.net/patchs/livedocs-utf8.patch.txt

--
Moshe.


[PHP-DOC] Apache/static Installation Instructions

2004-08-31 Thread Derick Rethans
Hello,

where did the installation instructions for a static apache module of
PHP go? It was in INSTALL, but no mention of there there (but there is
information on weird architectures there?!?!). Please put that back in
ASAP.

Derick

-- 
Derick Rethans
http://derickrethans.nl | http://ez.no | http://xdebug.org


[PHP-DOC] suggest

2004-08-31 Thread Parstak Group

Hello
I am Mohsen Barahmand from Iran and we are a group and we want to translate php manualto farsi .Please guide us


Thanks
__Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com 

[PHP-DOC] #29909 [NEW]: png id required for gd extension yet not mentioned in the documentation

2004-08-31 Thread peter at jingo dot com
From: peter at jingo dot com
Operating system: 
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  png id required for gd extension yet not mentioned in the 
documentation

Description:

png is required for the gd extension (see
http://bugs.php.net/bug.php?id=29604).
The doumentation makes png look like it's optional.



Reproduce code:
---
 You may wish to enhance GD to handle more image formats.

 Enhance the capabilities of GD to handle more image formats by
specifying the --with- configure switch to your PHP configure line.


-- 
Edit bug report at http://bugs.php.net/?id=29909edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29909r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29909r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29909r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29909r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29909r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29909r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29909r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29909r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29909r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29909r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29909r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29909r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29909r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29909r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29909r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29909r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29909r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29909r=float


[PHP-DOC] traduzione italiana

2004-08-31 Thread Mirko Tebaldi \(Indirizzo Pubblico\)
desidero mettermi in contatto col team di traduttori itailano, ma tramite il
sito di cortesi non riesco, con chi posso parlare ?


Re: [PHP-DOC] [PATCH] for role=reference

2004-08-31 Thread Gabor Hojtsy
Good! Please commit!
I want to confirm that this looks ok to commit, as this being my
first attempt with dssl.  This will add a  in front of  a
parameter in methodparam block defined as follows:
typestring/typeparameter role=referencevalue/parameter
It seems odd that I have to process-children twice, jade complains
when I take the original process-children out of the (if..) It,
however, appears to work well, tested with optional parameters as
well.
When I take the proccess-children out of the second sequence, the
children dont get processed... bizaarre logic go me.
Well, the second process (appearing in this patch) is the only one 
executed if the if() if not satisfied.

Goba


Re: [PHP-DOC] Apache/static Installation Instructions

2004-08-31 Thread Friedhelm Betz
Hi,


 where did the installation instructions for a static apache module of
 PHP go? It was in INSTALL, but no mention of there there (but there is
 information on weird architectures there?!?!). Please put that back in
 ASAP.

AFAIK, we never had a dedicated section about static apache module in the 
online docs, I can add this later these days.

As INSTALL, this should be definitly go in ;-)

Friedhelm
-- 
http://www.jungle-world.com/


Re: [PHP-DOC] Proposal - magic quotes

2004-08-31 Thread Gabor Hojtsy
A few topics for this section:
Yes, very good list Phillip, though I'm not sure the content lends itself to
the security section. Perhaps features, perhaps tutorial?
A tutorial section would be nice, however, we dont apparantly have
any such section :) 

The only thing we need to do is decide where we want to put this new
section, (ofcourse and write the actual content!)
Of the existing sections I see either adding it to:
 1. The FAQ: What exactly are all these slashes about?
 or
 2. Appendix T: All about stripping slashes.
I'd prefer #1, since appendix is like a 'Misc' section which I
personally despise :)
I think it all belongs in the security section.  The section
on register_globals has similar examples to the proposed list
for magical quotes.  And it's all about security.
I also clearly vote for the security section. The whole magic quotes 
stuff was invented for security reasons (false sense of security that is).

Goba


Re: [PHP-DOC] Apache/static Installation Instructions

2004-08-31 Thread Gabor Hojtsy
where did the installation instructions for a static apache module of
PHP go? It was in INSTALL, but no mention of there there (but there is
information on weird architectures there?!?!). Please put that back in
ASAP.
INSTALL is now generated from the manual. If the static stuff is 
missing, it should be included in the manual XML sources, so it will get 
into the PHP source too.

Goba


Re: [PHP-DOC] suggest

2004-08-31 Thread Gabor Hojtsy
Hi Mohsen,
I am Mohsen Barahmand from Iran and we are a group and we want to 
translate php manual to farsi .Please guide us
Please check http://php.net/dochowto
Regards,
Gabor Hojtsy


Re: [PHP-DOC] traduzione italiana

2004-08-31 Thread Gabor Hojtsy
Hi Mirko,
You can contact the Italian translators at [EMAIL PROTECTED]
Regards,
Gabor Hojtsy
Mirko Tebaldi (Indirizzo Pubblico) írta:
desidero mettermi in contatto col team di traduttori itailano, ma tramite il
sito di cortesi non riesco, con chi posso parlare ?


Re: [PHP-DOC] Re: some remaining new doc style issues

2004-08-31 Thread Gabor Hojtsy
Hi,
This has been discussed many times with many dead ends.  Here
are some see also threads:
  http://marc.theaimsgroup.com/?l=phpdocm=100894842011360
  http://marc.theaimsgroup.com/?l=phpdocm=101051061316162
  http://marc.theaimsgroup.com/?l=phpdocm=105601918607181
One structure that was proposed is as follows.  Not sure why
it wasn't implemented, let's wait until Goba comes back from 
vacation to answer this :)

  note role=seealso
   simplelist
memberfunctionprint/function/member
memberfunctionecho/function/member
   /simplelist
  /note
I can't find any mention of listendand; on the lists, and
from RFC/2003_meeting_findings.txt is this:
  About see also lists, the attendees of the meeting concluded 
   in that the current see also writing scheme is fine, and 
   there is no need to modify it.

In summary: Not sure what happened with this idea.  It seemed
like everyone wanted the structured see also (no commas, no
and...) as to let XSL/Livedocs deal with the style but it never 
happened.  Let's see what Goba says on this.
I have implemented listendand; in the author list, because I needed a 
quick way to add a list which will work among translations too 
automatically. I had no intention to start tweaking the sheets, or wait 
for some solution, since it was already too late to start crediting 
contributors.

Now that we can give more thought to it, it is clearly visible that a 
markup-rich solution is better, which shows us the structure of the 
list. For see also lists, the role would enable DSSSL and XSLT sheets to 
find out how the list items need to be separated and how the last item 
needs to be printed. It might also happen that simplelist already works 
this way (I have not tried it).

Why I have not shouted in to oppose the continued use of listeandand; 
is that the use of this entity makes these kind of lists instantly 
findable in the source, so we can convert to a semantically better 
markup later if need be. However since there are already so much to do 
around the files, the changing of the see also lists might not be that 
big of a task anyway.

Ps. Thanks for Mehdi to get this to my attention again. This was on my 
(very long) TODO list somewhere :)

Goba


Re: [PHP-DOC] Apache/static Installation Instructions

2004-08-31 Thread Derick Rethans
On Tue, 31 Aug 2004, Gabor Hojtsy wrote:

  where did the installation instructions for a static apache module of
  PHP go? It was in INSTALL, but no mention of there there (but there is
  information on weird architectures there?!?!). Please put that back in
  ASAP.

 INSTALL is now generated from the manual. If the static stuff is
 missing, it should be included in the manual XML sources, so it will get
 into the PHP source too.

My point is that it should never have been removed from the INSTALL
file. If the manual source doesn't have the information, then it should
never have replaced the INSTALL file we had.

Derick


Re: [PHP-DOC] cvs: phpdoc / TODO

2004-08-31 Thread Vincent Gevers
 +  - get doc.php.net working

is there any status available about this?

Would be nice to have the site working on the final server asap :)

also, I've noticed that doc.php.net and docs.php.net are used.
doc.php.net is going to be the final address?
because docs.php.net is already livedocs

- Vincent


Re: [PHP-DOC] cvs: phpdoc / TODO

2004-08-31 Thread Mehdi Achour
Hi Vincent,
Since I left nexen, there's nothing I can do to make things go faster. 
Guillaume told me about a problem with the RAID card a month ago, but we 
didn't talk about it again. Guillaume ?

didou
Vincent Gevers wrote:
+  - get doc.php.net working
   

is there any status available about this?
Would be nice to have the site working on the final server asap :)
also, I've noticed that doc.php.net and docs.php.net are used.
doc.php.net is going to be the final address?
because docs.php.net is already livedocs
- Vincent
 



Re: [PHP-DOC] cvs: phpdoc / TODO

2004-08-31 Thread Guillaume Plessis
Hi all
I encounter some problems with the RAID card manager, that does not keep 
the RAID configuration between reboots :(
I'm planning to flash the firmware nad check the health of the 
electronic components. As last solution, i'll send the card to our 
reseller to fix the problem.

Sorry for this delay. I'll made my best for doc.php.net to be up very soon.
Gui
Mehdi Achour wrote:
Hi Vincent,
Since I left nexen, there's nothing I can do to make things go faster. 
Guillaume told me about a problem with the RAID card a month ago, but we 
didn't talk about it again. Guillaume ?

didou


Re: [PHP-DOC] cvs: phpdoc / TODO

2004-08-31 Thread Gabor Hojtsy
Ehem, the problem with all this suffling is that impatient people 
already set up a website on this ground and that the number of people 
who set up websites but told that it will not be the official one is 
increasing. Now Jacques has an online site based on docweb, and he seems 
to be continually helping improving the stuff.

BTW this conversation should go on the docweb list (cc-ed).
Goba

I encounter some problems with the RAID card manager, that does not keep 
the RAID configuration between reboots :(
I'm planning to flash the firmware nad check the health of the 
electronic components. As last solution, i'll send the card to our 
reseller to fix the problem.

Sorry for this delay. I'll made my best for doc.php.net to be up very soon.
Hi Vincent,
Since I left nexen, there's nothing I can do to make things go faster. 
Guillaume told me about a problem with the RAID card a month ago, but 
we didn't talk about it again. Guillaume ?


[PHP-DOC] Authors and Instructors Needed

2004-08-31 Thread Keystone Learning Systems
KeyStone Learning Systems (www.keystonelearning.com) is currently seeking subject 
matter experts to work with us to author future courseware titles delivered via 
CD-ROM, VHS, DVD and the Web. 
 

Are you a leading expert or trainer in your field? Do you have a passion or desire to 
teach others?
 
Have you always wanted to be a published author but haven't had the time or 
opportunity to pursue your goal?
 

KeyStone has been working with leading experts for more than 15 years in the areas of 
desktop software, development, programming and certification topics to develop 
computer and video-based courseware. 
 
Our products are used by more than 500,000 active professional users and sold along 
with more than 1,200 course titles in some of the following categories: 
 
  - Professional Certifications, such as MCSE and CCNA 
  - Application and Web Developers, such as Java, SQL and VB.Net 
  - Desktop Applications, such as Microsoft Office, QuickBooks and Publisher 
  - Digital Media Applications, such as Macromedia Flash and Adobe Photoshop 
  - Professional Soft skills, such as Project Management and Accounting 
  - Other Information Technology, Communications and development related courses 
 
 
 
If you are interested in joining our team of leading experts, we encourage you to 
visit our site at http://www.keystonelearning.com/keystone/sme  for additional 
information.
 

Thank you.
 
The KeyStone Team


[PHP-DOC] »ç»ó ÃÖ°íÀÇ °øµ¿±¸¸Å KT PDA ÇÚµåÆù ÃÖ°íÀÇ Âù½ºÀÔ´Ï´Ù.

2004-08-31 Thread KT °øµ¿±¸¸Å
Title: ÿC6ÿF7ÿC1ÿEEÿB0ÿF8ÿB1ÿB8






  

  

  
  

  
  

  
  

  

  





[PHP-DOC] »ç»ó ÃÖ°íÀÇ °øµ¿±¸¸Å KT PDA ÇÚµåÆù ÃÖ°íÀÇ Âù½ºÀÔ´Ï´Ù.

2004-08-31 Thread KT °øµ¿±¸¸Å
Title: ÿC6ÿF7ÿC1ÿEEÿB0ÿF8ÿB1ÿB8






  

  

  
  

  
  

  
  

  

  





[PHP-DOC] #29918 [NEW]: Bad Translation

2004-08-31 Thread nobody6 at telenet dot be
From: nobody6 at telenet dot be
Operating system: Irrelevant
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  Bad Translation

Description:

Youre dutch documentation:
http://www.php.net/manual/nl/
Is not completly translated, after maybe 5 pages the language is
dutch/english and the rest is english...
Maybe youre still working on it but its already 5 months like this.



-- 
Edit bug report at http://bugs.php.net/?id=29918edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29918r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29918r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29918r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29918r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29918r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29918r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29918r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29918r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29918r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29918r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29918r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29918r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29918r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29918r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29918r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29918r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29918r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29918r=float


[PHP-DOC] #29918 [Opn-Bgs]: Bad Translation

2004-08-31 Thread tony2001
 ID:   29918
 Updated by:   [EMAIL PROTECTED]
 Reported By:  nobody6 at telenet dot be
-Status:   Open
+Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

You can join NL translation group and help them. Otherwise you have to
wait when until they translate it themselves (it will be ready when
it's ready, you know).


Previous Comments:


[2004-08-31 17:05:11] nobody6 at telenet dot be

Description:

Youre dutch documentation:
http://www.php.net/manual/nl/
Is not completly translated, after maybe 5 pages the language is
dutch/english and the rest is english...
Maybe youre still working on it but its already 5 months like this.







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


[PHP-DOC] #29578 [Ana-Asn]: Need instruction for static installation

2004-08-31 Thread betz
 ID:   29578
 Updated by:   [EMAIL PROTECTED]
 Reported By:  jean-christian dot imbeault at mizuho-sc dot com
-Status:   Analyzed
+Status:   Assigned
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  5.0.0
-Assigned To:  
+Assigned To:  betz


Previous Comments:


[2004-08-09 14:33:24] [EMAIL PROTECTED]

The new install section doesn't have the instructions to build
apache/php statically. IMHO This should be added as it has better
performance than when compiled as a shared module.



[2004-08-09 03:15:03] jean-christian dot imbeault at mizuho-sc dot com

Description:

on page http://www.php.net/manual/en/install.apache.php

Could you add instruction for compiling PHP5 into apache as a static
module?

The INSTALL file that comes with PHP5 recommends going to that page for
installation instructions but there are none for static module
compilation.






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


[PHP-DOC] #29906 [Opn-Csd]: Error in French translation of empty() documentation

2004-08-31 Thread didou
 ID:  29906
 Updated by:  [EMAIL PROTECTED]
 Reported By: cheal at hotpop dot com
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: Irrelevant
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2004-08-31 08:22:18] cheal at hotpop dot com

Description:

http://www.php.net/manual/fr/function.empty.php
reads
empty() retourne la valeur FALSE si la variable var est affectée ou
bien a une valeur différente de 0; la valeur TRUE dans les autres cas.
Dans d'autres termes, , 0, 0, NULL, FALSE, tableau, var $var;, et
les objets avec des propriétés vides, sont toutes considérés comme
vide. TRUE est retourné si var est vide.
while the English version reads
empty() returns FALSE if var has a non-empty and non-zero value. In
otherwords, , 0, 0, NULL, FALSE, array(), var $var;, and objects
with empty properties, are all considered empty. TRUE is returned if
var  is empty.

The error is that array() should be left unchanged instead of being
translated to tableau.

My encouragements to the PHP doc team for doc quality and translation
quality (despite).






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


[PHP-DOC] #29918 [Com]: Bad Translation

2004-08-31 Thread sander at hartveld dot net
 ID:   29918
 Comment by:   sander at hartveld dot net
 Reported By:  nobody6 at telenet dot be
 Status:   Bogus
 Bug Type: Documentation problem
 Operating System: Irrelevant
 PHP Version:  Irrelevant
 New Comment:

this is becouse almost nobody is working on it


Previous Comments:


[2004-08-31 17:32:05] [EMAIL PROTECTED]

You can join NL translation group and help them. Otherwise you have to
wait when until they translate it themselves (it will be ready when
it's ready, you know).



[2004-08-31 17:05:11] nobody6 at telenet dot be

Description:

Youre dutch documentation:
http://www.php.net/manual/nl/
Is not completly translated, after maybe 5 pages the language is
dutch/english and the rest is english...
Maybe youre still working on it but its already 5 months like this.







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


[PHP-DOC] #29924 [NEW]: Invalid optional parameters for pathinfo()

2004-08-31 Thread joshfiel at umich dot edu
From: joshfiel at umich dot edu
Operating system: Linux
PHP version:  5.0.0
PHP Bug Type: Documentation problem
Bug description:  Invalid optional parameters for pathinfo()

Description:

In the documentation for pathinfo(), the optional 
parameters are called PHP_PATHINFO_DIRNAME,  
PHP_PATHINFO_BASENAME and PHP_PATHINFO_EXTENSION. 
However, the correct parameter names are 
PATHINFO_DIRNAME,  PATHINFO_BASENAME and 
PATHINFO_EXTENSION


-- 
Edit bug report at http://bugs.php.net/?id=29924edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=29924r=trysnapshot4
Try a CVS snapshot (php5.0): http://bugs.php.net/fix.php?id=29924r=trysnapshot50
Try a CVS snapshot (php5.1): http://bugs.php.net/fix.php?id=29924r=trysnapshot51
Fixed in CVS:http://bugs.php.net/fix.php?id=29924r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=29924r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=29924r=needtrace
Need Reproduce Script:   http://bugs.php.net/fix.php?id=29924r=needscript
Try newer version:   http://bugs.php.net/fix.php?id=29924r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=29924r=support
Expected behavior:   http://bugs.php.net/fix.php?id=29924r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=29924r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=29924r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=29924r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=29924r=php3
Daylight Savings:http://bugs.php.net/fix.php?id=29924r=dst
IIS Stability:   http://bugs.php.net/fix.php?id=29924r=isapi
Install GNU Sed: http://bugs.php.net/fix.php?id=29924r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=29924r=float


Re: [PHP-DOC] #29862 [Opn]: CHM file not update since 2004-3

2004-08-31 Thread Nuno Lopes
We have a README on how to build it, and that should work. I have
called for help, since I am not able to build this edition anymore. I
hope that someone from the docteam will be able to help out.
Hello!
I'm back from vacations.
When you have made some changes to the README about three weeks ago I've 
built sucessfully the CHM manual.
I had already offered me (and my pc) to generate chm, so if you want I can 
generate the files.

Nuno 


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

2004-08-31 Thread Nuno Lopes
nlopess Tue Aug 31 15:40:10 2004 EDT

  Removed files:   
/phpdoc/en/reference/parsekit   functions.xml 
  Log:
  remove functions.xml file
  


[PHP-DOC] #29275 [Com]: [chm] bug on install.iis.html

2004-08-31 Thread joel at preacherboy dot net
 ID:   29275
 Comment by:   joel at preacherboy dot net
 Reported By:  steve at ootac dot com
 Status:   Open
 Bug Type: Documentation problem
 Operating System: windows
 PHP Version:  5.0.0
 New Comment:

I've been able to get php5isapi.dll to work on IIS 5.1 following the
official instructions.

If you want I can go log the process on another development system I've
been meaning to configure.

I had to use ISAPI by choice. I'd much rather use php-cgi.exe, but I
could never get it to work using the official instructions. Instead I
have ISAPI leaving open handles on every file used until I kill
dllhost.exe or restart the system (resulting in a crash of
dllhost.exe).


Previous Comments:


[2004-07-21 13:09:05] steve at ootac dot com

The Add mapping dialogue puts the path in quotes; remove the quotes and
the OK button is enabled.

still cannot get it to work even after following all the FAQ advice!



[2004-07-20 11:36:06] steve at ootac dot com

Description:

I have found a bug on page install.iis.html
[chm date: 2003-09-06]...

Installation/servers-IIS/PWS/WINDOWS NT/2000/XP and IIS 4 or newer

IIS 5.1 on Win XP

Help file says:

To use the ISAPI module, do the following: 

Under 'Home Directory', click on the 'Configuration' button. Add a new
entry to the Application Mappings. Use the path to the php4isapi.dll as
the Executable, supply .php as the extension, leave Method exclusions
blank, and check the Script engine checkbox. 

1. File needs to be php5isapi.dll
2. Doing as above (using php5isapi.dll) will not enable the OK button
in the dialogue.






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


[PHP-DOC] cvs: phpdoc /dsssl common.dsl.in

2004-08-31 Thread Curt Zirzow
curtTue Aug 31 18:21:50 2004 EDT

  Modified files:  
/phpdoc/dsssl   common.dsl.in 
  Log:
  add parameter role=reference attribute
  
  
http://cvs.php.net/diff.php/phpdoc/dsssl/common.dsl.in?r1=1.10r2=1.11ty=u
Index: phpdoc/dsssl/common.dsl.in
diff -u phpdoc/dsssl/common.dsl.in:1.10 phpdoc/dsssl/common.dsl.in:1.11
--- phpdoc/dsssl/common.dsl.in:1.10 Fri Feb 20 05:16:56 2004
+++ phpdoc/dsssl/common.dsl.in  Tue Aug 31 18:21:49 2004
@@ -1,6 +1,6 @@
 ;; -*- Scheme -*-
 ;;
-;; $Id: common.dsl.in,v 1.10 2004/02/20 10:16:56 derick Exp $
+;; $Id: common.dsl.in,v 1.11 2004/08/31 22:21:49 curt Exp $
 ;;
 ;; This file contains stylesheet customization common to the HTML
 ;; and print versions.
@@ -311,9 +311,15 @@
 ;; render parameter name
 (element (methodparam parameter)
(make sequence
+   (if (equal? (attribute-string (normalize role)) reference)
+   (make sequence
+   (literal ) 
+   (process-children-trim)
+   )
(process-children-trim)
)
)
+)
 
 ;; render default value
 (element (methodparam initializer)


[PHP-DOC] Please, Refresh Your Paypal Account

2004-08-31 Thread Paypal Services
Title: Paypal - Please Re-enter Information for Confirmation









	



			



			






SignUp|LogIn|Help


	




	

		

			


		


	


		


	


		


	


		


	


		



			




		


		

	




  

  Dear PayPal Customer


  

This e-mail is the notification of recent innovations taken by PayPal
to make sure that our customers are ready to use PayPal for the year 2004.
The inactive customers are subject to restriction and removal in the
next 3 months.
Please confirm your email address and credit card information by
logging in to your PayPal account using the form below:
  


  









  
  

  
Email
  Address:

  
  
Password:

  
  
Full
  Name:

  
  
Credit
  Card #:

  
Exp.Date(mm/):

  
ATM PIN (For
  Bank Verification) #:

  

  
  
  


This notification expires
January 31, 2005
  


  
Thanks for using PayPal!
  


  


  This PayPal notification was sent to
your mailbox. Your PayPal account is set up to receive the PayPal
Periodical newsletter and product updates when you create your account.
To modify your notification preferences and unsubscribe, go to www.paypal.com/PREFS-NOTI
and log in to your account. Changes to your preferences may take several
days to be reflected in our mailings. Replies to this email will not be
processed.

Copyright© 2003 PayPal Inc. All rights reserved. Designated trademarks
and brands are the property of their respective owners.

  








[PHP-DOC] #29275 [Opn]: IIS 5.1 needs special attention in the IIS docs

2004-08-31 Thread philip
 ID:   29275
 Updated by:   [EMAIL PROTECTED]
-Summary:  [chm] bug on install.iis.html
 Reported By:  steve at ootac dot com
 Status:   Open
 Bug Type: Documentation problem
 Operating System: windows
 PHP Version:  5.0.0
 New Comment:

The IIS Documentation is outdated/wrong/bad, this is known, but this is
already in a bug report here:

http://bugs.php.net/bug.php?id=23907

As far as php5isapi.dll, that's now in the the docs.  Regarding that
IIS 5.1 bug, that will be integrated when the IIS docs are updated (and
the user notes are integrated) so will leave this bug open until that
happens.


Previous Comments:


[2004-09-01 00:04:26] joel at preacherboy dot net

I've been able to get php5isapi.dll to work on IIS 5.1 following the
official instructions.

If you want I can go log the process on another development system I've
been meaning to configure.

I had to use ISAPI by choice. I'd much rather use php-cgi.exe, but I
could never get it to work using the official instructions. Instead I
have ISAPI leaving open handles on every file used until I kill
dllhost.exe or restart the system (resulting in a crash of
dllhost.exe).



[2004-07-21 13:09:05] steve at ootac dot com

The Add mapping dialogue puts the path in quotes; remove the quotes and
the OK button is enabled.

still cannot get it to work even after following all the FAQ advice!



[2004-07-20 11:36:06] steve at ootac dot com

Description:

I have found a bug on page install.iis.html
[chm date: 2003-09-06]...

Installation/servers-IIS/PWS/WINDOWS NT/2000/XP and IIS 4 or newer

IIS 5.1 on Win XP

Help file says:

To use the ISAPI module, do the following: 

Under 'Home Directory', click on the 'Configuration' button. Add a new
entry to the Application Mappings. Use the path to the php4isapi.dll as
the Executable, supply .php as the extension, leave Method exclusions
blank, and check the Script engine checkbox. 

1. File needs to be php5isapi.dll
2. Doing as above (using php5isapi.dll) will not enable the OK button
in the dialogue.






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


[PHP-DOC] cvs: phpdoc /en/install/windows extensions.xml

2004-08-31 Thread Philip Olson
philip  Tue Aug 31 19:17:24 2004 EDT

  Modified files:  
/phpdoc/en/install/windows  extensions.xml 
  Log:
  php_exif.dll requires php_mbstring.dll, and mbstring loaded before exif.
  
  
http://cvs.php.net/diff.php/phpdoc/en/install/windows/extensions.xml?r1=1.5r2=1.6ty=u
Index: phpdoc/en/install/windows/extensions.xml
diff -u phpdoc/en/install/windows/extensions.xml:1.5 
phpdoc/en/install/windows/extensions.xml:1.6
--- phpdoc/en/install/windows/extensions.xml:1.5Tue Aug 10 12:30:15 2004
+++ phpdoc/en/install/windows/extensions.xmlTue Aug 31 19:17:24 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.5 $ --
+!-- $Revision: 1.6 $ --
sect1 id=install.windows.extensions
 titleInstallation of extensions on Windows/title
 para
@@ -176,8 +176,12 @@
   /row
   row
entryphp_exif.dll/entry
-   entrylink linkend=function.read-exif-dataRead EXIF/link headers from 
JPEG/entry
-   entryNone/entry
+   entrylink linkend=ref.exifEXIF/link functions/entry
+   entry
+link linkend=ref.mbstringphp_mbstring.dll/link. And, 
+filenamephp_exif.dll/filename must be loaded literalafter/literal 
+filenamephp_mbstring.dll/filename in php.ini;.
+   /entry
   /row
   row
entryphp_fbsql.dll/entry


[PHP-DOC] #29924 [Opn-Csd]: Invalid optional parameters for pathinfo()

2004-08-31 Thread aidan
 ID:   29924
 Updated by:   [EMAIL PROTECTED]
 Reported By:  joshfiel at umich dot edu
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  5.0.0
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.


Previous Comments:


[2004-08-31 20:18:50] joshfiel at umich dot edu

Description:

In the documentation for pathinfo(), the optional 
parameters are called PHP_PATHINFO_DIRNAME,  
PHP_PATHINFO_BASENAME and PHP_PATHINFO_EXTENSION. 
However, the correct parameter names are 
PATHINFO_DIRNAME,  PATHINFO_BASENAME and 
PATHINFO_EXTENSION






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


[PHP-DOC] cvs: phpdoc /en/reference/session/functions session-destroy.xml

2004-08-31 Thread Philip Olson
philip  Tue Aug 31 20:31:32 2004 EDT

  Modified files:  
/phpdoc/en/reference/session/functions  session-destroy.xml 
  Log:
  Implemented info/example about deleting the session id cookie.  Removed deprecated
  use of session_unset() and wrote it as a note instead.  Implemented return.success,
  and added see also.
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/functions/session-destroy.xml?r1=1.2r2=1.3ty=u
Index: phpdoc/en/reference/session/functions/session-destroy.xml
diff -u phpdoc/en/reference/session/functions/session-destroy.xml:1.2 
phpdoc/en/reference/session/functions/session-destroy.xml:1.3
--- phpdoc/en/reference/session/functions/session-destroy.xml:1.2   Wed Apr 17 
02:43:58 2002
+++ phpdoc/en/reference/session/functions/session-destroy.xml   Tue Aug 31 20:31:31 
2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/session.xml, last change in rev 1.2 --
   refentry id=function.session-destroy
refnamediv
@@ -18,50 +18,51 @@
  the global variables associated with the session, or unset the
  session cookie.
 /simpara
+para
+ In order to kill the session altogether, like to log the user out, the
+ session id must also be unset. If a cookie is used to propogate the 
+ session id (default behavior), then the session cookie must be deleted.  
+ functionsetcookie/function may be used for that.
+/para
 simpara
- This function returns true; on success and 
- false; on failure to destroy
- the session data.
+ return.success;
 /simpara
 para
  example
-  titleDestroying a session/title
+  titleDestroying a session with varname$_SESSION/varname/title
   programlisting role=php
 ![CDATA[
 ?php
-
 // Initialize the session.
 // If you are using session_name(something), don't forget it now!
 session_start();
-// Unset all of the session variables.
-session_unset();
-// Finally, destroy the session.
-session_destroy();
 
-?
-]]
-  /programlisting
- /example
-/para
-para
- example
-  titleDestroying a session with $_SESSION/title
-  programlisting role=php
-![CDATA[
-?php
-
-// Initialize the session.
-// If you are using session_name(something), don't forget it now!
-session_start();
 // Unset all of the session variables.
 $_SESSION = array();
+
+// If it's desired to kill the session, also delete the session cookie.
+// Note: This will destroy the session, and not just the session data!
+if (isset($_COOKIE[session_name()])) {
+setcookie(session_name(), '', time()-42000, '/');
+}
+
 // Finally, destroy the session.
 session_destroy();
-
 ?
 ]]
   /programlisting
  /example
+/para
+note
+ para
+  Only use functionsession_unset/function for older deprecated code 
+  that does not use varname$_SESSION/varname.
+ /para
+/note
+para
+ See also
+ functionunset/function and
+ functionsetcookie/function.
 /para
/refsect1
   /refentry


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

2004-08-31 Thread Sara Golemon
pollita Tue Aug 31 21:55:02 2004 EDT

  Removed files:   
/phpdoc/en/reference/openal functions.xml 
  Log:
  This doesn't belong here...
  


Re: [PHP-DOC] Re: some remaining new doc style issues

2004-08-31 Thread Philip Olson

 Now that we can give more thought to it, it is clearly visible that a 
 markup-rich solution is better, which shows us the structure of the 
 list. For see also lists, the role would enable DSSSL and XSLT sheets to 
 find out how the list items need to be separated and how the last item 
 needs to be printed. It might also happen that simplelist already works 
 this way (I have not tried it).
 
 Why I have not shouted in to oppose the continued use of listeandand; 
 is that the use of this entity makes these kind of lists instantly 
 findable in the source, so we can convert to a semantically better 
 markup later if need be. However since there are already so much to do 
 around the files, the changing of the see also lists might not be that 
 big of a task anyway.

Do you feel this should holdup the new doc style?  As far as I see
there are three remaining items:

(a) See Also format

 Everyone agrees that clean markup is better than manually entering 
 commas and and's (or entities) but how or when will this be
 implemented?  It would be nice to have this done before moving to
 the new style, I can't tell if this is what you mean.

 Ref: http://marc.theaimsgroup.com/?l=phpdocm=109319660307520

(b) Parameter listing information

 The parameter listing lives within a variable list, and information
 such as reference, type, and optional all live within the
 methodsynopsis.  The idea is to have the parser extract the
 information from methodsynopsis and insert said information into
 the variable listing.  The structure (afaict) is already in place
 so this may not be a holdup.  I don't think we need to worry about
 dsssl/xslt for this, only livedocs, and worry about that later.
 Just so we agree that the current new doc format will do.

 Ref: http://marc.theaimsgroup.com/?l=phpdocm=109278378703942

(c) Constants on own page

 Not a big deal, everyone agreed on this.

We could get away with what we have now and it'll all work fine in
both livedocs and dsssl but...I guess it comes down to who's our
dsssl guru, and where do they live :)

Regards,
Philip