[PHP-DOC] #24568 [Bgs]: IIS 5 instructions irrelevant

2003-07-10 Thread p dot wolstenholme at computer dot org
 ID:   24568
 User updated by:  p dot wolstenholme at computer dot org
 Reported By:  p dot wolstenholme at computer dot org
 Status:   Bogus
 Bug Type: Documentation problem
 Operating System: MS Windows 2000 Pro
 PHP Version:  4.3.1
 New Comment:

Thanks, [EMAIL PROTECTED]  In IIS 5.0 this area is hard to locate. It is
accessed by Control Panel  Administrative Tools  Computer Management
 Server Applications  Services  Internet Information Services. There
is no longer an Internet Services Manager.
Perhaps the doc ought to mention this access path, or at least advise a
search in the IIS 5 doc for IIS Snap-in. (In fact my system was set
up for php but IIS still can not see it. Thanks anyway.) P.W.


Previous Comments:


[2003-07-10 00:48:53] [EMAIL PROTECTED]

I have Win2000 as well and the instructions are ok.

You get to these pages by viewing Propperties on the web site (Home
Directory tab), A virtual Directory or a Directory within the web site.



[2003-07-09 15:59:16] p dot wolstenholme at computer dot org

Description:

For  IIS 4, the current manual says:
 If you want to use the CGI binary, do the following: 

 Under 'Home Directory', 'Virtual Directory',  or 'Directory', click
on the 'Configuration' button, and  then enter the App Mappings tab. 

 Click Add, and in the Executable box, type:  c:\php\php.exe (assuming
that you have unziped PHP in c:\php\). 

My W2000 has IIS 5 and these instructions are meaningless. No such tabs
or buttons. I have checked all the tricks I could find, and php runs
php -i from the command line O.K., but I can not inform IIS about its
presence. Not bug 16336!






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


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



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

2003-07-10 Thread Mehdi Achour
didou   Thu Jul 10 04:29:55 2003 EDT

  Modified files:  
/phpdoc/en/reference/var/functions  isset.xml 
  Log:
  rephrasing
  
Index: phpdoc/en/reference/var/functions/isset.xml
diff -u phpdoc/en/reference/var/functions/isset.xml:1.10 
phpdoc/en/reference/var/functions/isset.xml:1.11
--- phpdoc/en/reference/var/functions/isset.xml:1.10Sat Jun 21 12:06:19 2003
+++ phpdoc/en/reference/var/functions/isset.xml Thu Jul 10 04:29:54 2003
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.10 $ --
+!-- $Revision: 1.11 $ --
 !-- splitted from ./en/functions/var.xml, last change in rev 1.2 --
   refentry id=function.isset
refnamediv
@@ -20,7 +20,7 @@
 /simpara
 para
  If a variable has been unset with functionunset/function, it will no
- longer be functionisset/function. functionisset/function will
+ longer be set. functionisset/function will
  return false; if testing a variable that has been set to null;. Also
  note that a null; byte (literal\0/literal) is not equivalent to
  the PHP null; constant.



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



[PHP-DOC] cvs: phpdoc /scripts/rtlpatch HtmlExtParser.class.php

2003-07-10 Thread Moshe Doron
momoThu Jul 10 05:23:31 2003 EDT

  Modified files:  
/phpdoc/scripts/rtlpatchHtmlExtParser.class.php 
  Log:
  mute warning
  
Index: phpdoc/scripts/rtlpatch/HtmlExtParser.class.php
diff -u phpdoc/scripts/rtlpatch/HtmlExtParser.class.php:1.8 
phpdoc/scripts/rtlpatch/HtmlExtParser.class.php:1.9
--- phpdoc/scripts/rtlpatch/HtmlExtParser.class.php:1.8 Fri May 30 08:25:14 2003
+++ phpdoc/scripts/rtlpatch/HtmlExtParser.class.php Thu Jul 10 05:23:30 2003
@@ -16,7 +16,7 @@
   | Authors:Moshe Doron [EMAIL PROTECTED] |
   +--+
   
- $Id: HtmlExtParser.class.php,v 1.8 2003/05/30 12:25:14 momo Exp $
+ $Id: HtmlExtParser.class.php,v 1.9 2003/07/10 09:23:30 momo Exp $
 */
 
 class CHtmlExtParse extends CHtmlParse{
@@ -35,8 +35,12 @@

// fix functions '()':
if($tmp = 
$this-get_element_id_by_rule(array(tag=div,properties=array(class,refsect1{
-   $this-ATE[$tmp+6][data] = span 
dir=ltr.$this-ATE[$tmp+6][data];
-   $this-ATE[$tmp+10][data] .= /span;
+   if(isset($this-ATE[$tmp+6][data])){
+   $this-ATE[$tmp+6][data] = span 
dir=ltr.$this-ATE[$tmp+6][data];
+   $this-ATE[$tmp+10][data] .= /span;
+   } else {
+   //TODO: find exceptions (on the stream part there are 
some) 
+   }
}
$b = $HEType[b];
if(isset($this-EBT[$b])){



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



[PHP-DOC] #24586 [NEW]: French translation error on http://www.php.net/manual/fr/function.defined.php

2003-07-10 Thread jucrouzet at online dot fr
From: jucrouzet at online dot fr
Operating system: Any
PHP version:  Irrelevant
PHP Bug Type: Documentation problem
Bug description:  French translation error on 
http://www.php.net/manual/fr/function.defined.php

Description:

On the french translation of the ``defined'' function we can see 
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une fonction , that means Verify if a
_function_ exists.

It should be 
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une constante , that means Verify if a
_constant_ exists.


Expected result:

defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une constante

Actual result:
--
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une fonction

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


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



[PHP-DOC] #24586 [Opn-Csd]: French translation error on http://www.php.net/manual/fr/function.defined.php

2003-07-10 Thread didou
 ID:   24586
 Updated by:   [EMAIL PROTECTED]
 Reported By:  jucrouzet at online dot fr
-Status:   Open
+Status:   Closed
 Bug Type: Documentation problem
 Operating System: Any
 PHP Version:  Irrelevant
 New Comment:

Fixed a few days ago : 
http://cvs.php.net/co.php/phpdoc-fr/reference/misc/functions/defined.xml?login=2r=1.4

Thank you for your report.

Mehdi


Previous Comments:


[2003-07-10 08:34:37] jucrouzet at online dot fr

Description:

On the french translation of the ``defined'' function we can see 
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une fonction , that means Verify if
a _function_ exists.

It should be 
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une constante , that means Verify if
a _constant_ exists.


Expected result:

defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une constante

Actual result:
--
defined
(PHP 3, PHP 4 )
defined -- Vérifie l'existence d'une fonction





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


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



[PHP-DOC] Re: [PHP-DEV] Re: [PEAR-DEV] karma question

2003-07-10 Thread Derick Rethans
On Thu, 10 Jul 2003, Allowee wrote:

 On Thursday 10 July 2003 15:50, Alan Knowles wrote:
  There where problems with the php mail server today. - it should be
  sorted out soon, as the server clears the backlog.
 
 I really hope that it's sorted out soon..
 
 I don't like it when things aren't working...

You should start by sending patched for it, and not request a cvs 
account right away. (And subscribe to [EMAIL PROTECTED] too).

Derick

-- 
Interpreting what the GPL actually means is a job best left to those
that read the future by examining animal entrails.
-
 Derick Rethans http://derickrethans.nl/ 
 International PHP Magazine  http://php-mag.net/
-


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



Re: [PHP-DOC] Re: [PHP-DEV] Re: [PEAR-DEV] karma question

2003-07-10 Thread Allowee
Sorry,
but It's not for the phpdoc..

I'm talking about peardoc.

2 people have told me to use the request form at php.net.

.: Allowee

On Thursday 10 July 2003 16:13, Derick Rethans wrote:
 On Thu, 10 Jul 2003, Allowee wrote:
  On Thursday 10 July 2003 15:50, Alan Knowles wrote:
   There where problems with the php mail server today. - it should be
   sorted out soon, as the server clears the backlog.
 
  I really hope that it's sorted out soon..
 
  I don't like it when things aren't working...

 You should start by sending patched for it, and not request a cvs
 account right away. (And subscribe to [EMAIL PROTECTED] too).

 Derick

 --
 Interpreting what the GPL actually means is a job best left to those
 that read the future by examining animal entrails.
 -
  Derick Rethans http://derickrethans.nl/
  International PHP Magazine  http://php-mag.net/
 -


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



[PHP-DOC] CVS Account Request: salman (fwd)

2003-07-10 Thread Sascha Schumann
Is there a project concerning that language already? If not,
is there a process in place to jumpstart one?

In any case, let me know whether the account should be
approved.

- Sascha

-- Forwarded message --
Date: 3 Jul 2003 02:28:54 -
From: Salman AS [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: CVS Account Request: salman

Translate PHP Manual to Bahasa Indonesia.

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