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

2007-08-28 Thread Damien Seguy
damsTue Aug 28 19:27:52 2007 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  synch between the table and the detail for session_path
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.49r2=1.50diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.49 
phpdoc/en/reference/session/ini.xml:1.50
--- phpdoc/en/reference/session/ini.xml:1.49Thu Aug 16 12:53:05 2007
+++ phpdoc/en/reference/session/ini.xml Tue Aug 28 19:27:52 2007
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.49 $ --
+!-- $Revision: 1.50 $ --
 section xml:id=session.configuration xmlns=http://docbook.org/ns/docbook;
  reftitle.runtime;
  extension.runtime;
@@ -18,7 +18,7 @@
tbody
 row
  entrysession.save_path/entry
- entry/entry
+ entry/tmp/entry
  entryPHP_INI_ALL/entry
  entry/entry
 /row


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

2007-08-16 Thread Jakub Vrana
vrana   Thu Aug 16 12:53:05 2007 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  use_only_cookies default (bug #41894)
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.48r2=1.49diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.48 
phpdoc/en/reference/session/ini.xml:1.49
--- phpdoc/en/reference/session/ini.xml:1.48Wed Jun 20 22:25:22 2007
+++ phpdoc/en/reference/session/ini.xml Thu Aug 16 12:53:05 2007
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.48 $ --
+!-- $Revision: 1.49 $ --
 section xml:id=session.configuration xmlns=http://docbook.org/ns/docbook;
  reftitle.runtime;
  extension.runtime;
@@ -437,6 +437,7 @@
  cookies to store the session id on the client side.
  Enabling this setting prevents attacks involved passing session
  ids in URLs. This setting was added in PHP 4.3.0.
+ Defaults to literal1/literal (enabled) since PHP 6.0.
 /simpara
/listitem
   /varlistentry


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

2007-05-31 Thread Hannes Magnusson
bjori   Thu May 31 18:43:03 2007 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Reword and make the explaination a note (thanks Alex Songe!)
  
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.46r2=1.47diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.46 
phpdoc/en/reference/session/ini.xml:1.47
--- phpdoc/en/reference/session/ini.xml:1.46Thu Jan 18 16:40:54 2007
+++ phpdoc/en/reference/session/ini.xml Thu May 31 18:43:03 2007
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.46 $ --
+!-- $Revision: 1.47 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -455,10 +455,13 @@
  literal0/literal. See also
  functionsession_get_cookie_params/function and
  functionsession_set_cookie_params/function.
- Since the cookie is returned by the browser, it is not prolonged to
- suffice the lifetime. It must be sent manually by
- functionsetcookie/function.
 /simpara
+note
+ para
+  The expiration timestamp is set relative to the server time, which is
+  not necessarily the same as the time in the client's browser.
+ /para
+/note 
/listitem
   /varlistentry
 


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

2007-01-18 Thread Nuno Lopes
nlopess Thu Jan 18 16:40:54 2007 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  session.hash_function supports ext/hash algos in php 6
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.45r2=1.46diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.45 
phpdoc/en/reference/session/ini.xml:1.46
--- phpdoc/en/reference/session/ini.xml:1.45Tue Dec 19 22:00:01 2006
+++ phpdoc/en/reference/session/ini.xml Thu Jan 18 16:40:54 2007
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.45 $ --
+!-- $Revision: 1.46 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -627,7 +627,7 @@
   varlistentry id=ini.session.hash-function
term
 parametersession.hash_function/parameter
-typeinteger/type
+typemixed/type
/term
listitem
 simpara
@@ -635,6 +635,13 @@
  algorithm used to generate the session IDs. '0' means MD5 (128 bits) and
  '1' means SHA-1 (160 bits).
 /simpara
+para
+ Since PHP 6.0.0 it is also possible to specify any of the algorithms
+ provided by the link linkend=ref.hashhash extension/link (if it is
+ available), like literalsha512/literal or
+ literalwhirlpool/literal. A complete list of supported algorithms can
+ be obtained with the functionhash_algos/function function.
+/para
 note
  para
   This was introduced in PHP 5.


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

2006-12-19 Thread Sean Coates
seanTue Dec 19 22:00:01 2006 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  document handlers can be found in phpinfo()
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.44r2=1.45diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.44 
phpdoc/en/reference/session/ini.xml:1.45
--- phpdoc/en/reference/session/ini.xml:1.44Fri Dec  8 08:17:14 2006
+++ phpdoc/en/reference/session/ini.xml Tue Dec 19 22:00:01 2006
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.44 $ --
+!-- $Revision: 1.45 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -193,7 +193,10 @@
  literalsession.save_handler/literal defines the name of the
  handler which is used for storing and retrieving data
  associated with a session. Defaults to
- literalfiles/literal. See also
+ literalfiles/literal. Note that individual extensions may register
+ their own literalsave_handler/literals; registered handlers can be
+ obtained on a per-installation basis by referring to
+ functionphpinfo/function. See also
  functionsession_set_save_handler/function.
 /simpara
/listitem


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

2006-08-16 Thread Jakub Vrana
vrana   Wed Aug 16 12:31:25 2006 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Further description of GC and cookie_lifetime
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/session/ini.xml?r1=1.41r2=1.42diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.41 
phpdoc/en/reference/session/ini.xml:1.42
--- phpdoc/en/reference/session/ini.xml:1.41Fri Aug 11 16:21:54 2006
+++ phpdoc/en/reference/session/ini.xml Wed Aug 16 12:31:24 2006
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.41 $ --
+!-- $Revision: 1.42 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -338,7 +338,7 @@
 simpara
  literalsession.gc_maxlifetime/literal specifies the number
  of seconds after which data will be seen as 'garbage' and
- cleaned up.
+ cleaned up. Garbage collection occurs during session start.
 /simpara
 note
  para
@@ -452,6 +452,9 @@
  literal0/literal. See also
  functionsession_get_cookie_params/function and
  functionsession_set_cookie_params/function.
+ Since the cookie is returned by the browser, it is not prolonged to
+ suffice the lifetime. It must be sent manually by
+ functionsetcookie/function.
 /simpara
/listitem
   /varlistentry


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

2006-02-07 Thread Nuno Lopes
nlopess Tue Feb  7 16:54:21 2006 UTC

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  fix #36279: multiple default values for use_only_cookies
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/session/ini.xml?r1=1.39r2=1.40diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.39 
phpdoc/en/reference/session/ini.xml:1.40
--- phpdoc/en/reference/session/ini.xml:1.39Mon Dec 26 12:12:12 2005
+++ phpdoc/en/reference/session/ini.xml Tue Feb  7 16:54:21 2006
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.39 $ --
+!-- $Revision: 1.40 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -435,8 +435,7 @@
 simpara
  literalsession.use_only_cookies/literal specifies whether
  the module will emphasis role=strongonly/emphasis use
- cookies to store the session id on the client side. Defaults
- to literal0/literal (disabled, for backward compatibility).
+ cookies to store the session id on the client side.
  Enabling this setting prevents attacks involved passing session
  ids in URLs. This setting was added in PHP 4.3.0.
 /simpara


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

2005-12-18 Thread Martin Samesch
samesch Sun Dec 18 14:03:20 2005 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  typo
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/session/ini.xml?r1=1.36r2=1.37diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.36 
phpdoc/en/reference/session/ini.xml:1.37
--- phpdoc/en/reference/session/ini.xml:1.36Thu Oct 13 13:44:48 2005
+++ phpdoc/en/reference/session/ini.xml Sun Dec 18 14:03:20 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.36 $ --
+!-- $Revision: 1.37 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -347,7 +347,7 @@
 note
  para
   If different scripts have different values of
-  literalsession.gc_maxlifetime/literal but shares the same place for
+  literalsession.gc_maxlifetime/literal but share the same place for
   storing the session data then the script with the minimum value will be
   cleaning the data. In this case, use this directive together with link
   linkend=ini.session.save-pathsession.save_path/link.


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

2005-12-18 Thread Jean-S�bastien Goupil
jsgoupilSun Dec 18 17:17:12 2005 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  fix is = are
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/session/ini.xml?r1=1.37r2=1.38diff_format=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.37 
phpdoc/en/reference/session/ini.xml:1.38
--- phpdoc/en/reference/session/ini.xml:1.37Sun Dec 18 14:03:20 2005
+++ phpdoc/en/reference/session/ini.xml Sun Dec 18 17:17:12 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.37 $ --
+!-- $Revision: 1.38 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -290,7 +290,7 @@
  literalsession.serialize_handler/literal defines the name
  of the handler which is used to serialize/deserialize
  data. Currently, a PHP internal format (name
- literalphp/literal) and WDDX is supported (name
+ literalphp/literal) and WDDX are supported (name
  literalwddx/literal). WDDX is only available, if PHP is
  compiled with link linkend=ref.wddxWDDX
  support/link. Defaults to literalphp/literal.


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

2005-08-30 Thread Jakub Vrana
vrana   Tue Aug 30 10:49:58 2005 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Meaning of empty cookie_domain (bug #33947)
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.34r2=1.35ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.34 
phpdoc/en/reference/session/ini.xml:1.35
--- phpdoc/en/reference/session/ini.xml:1.34Wed Apr 27 10:20:09 2005
+++ phpdoc/en/reference/session/ini.xml Tue Aug 30 10:49:57 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.34 $ --
+!-- $Revision: 1.35 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -475,8 +475,9 @@
listitem
 simpara
  literalsession.cookie_domain/literal specifies the domain to
- set in session_cookie. Default is none at all. See also
- functionsession_get_cookie_params/function and
+ set in session_cookie. Default is none at all meaning the host name of
+ the server which generated the cookie according to cookies specification.
+ See also functionsession_get_cookie_params/function and
  functionsession_set_cookie_params/function.
 /simpara
/listitem


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

2005-04-26 Thread Jakub Vrana
vrana   Tue Apr 26 11:47:22 2005 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  session.bug_compat (bug #23465)
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.32r2=1.33ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.32 
phpdoc/en/reference/session/ini.xml:1.33
--- phpdoc/en/reference/session/ini.xml:1.32Sat Mar 26 08:22:31 2005
+++ phpdoc/en/reference/session/ini.xml Tue Apr 26 11:47:21 2005
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.32 $ --
+!-- $Revision: 1.33 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -568,12 +568,13 @@
/term
listitem
 simpara
- PHP versions 4.2.0 and lower have an undocumented feature/bug that
+ PHP versions 4.2.3 and lower have an undocumented feature/bug that
  allows you to to initialize a session variable in the global scope,
  albeit link linkend=ini.register-globalsregister_globals/link
  is disabled.  PHP 4.3.0 and later will warn you, if this feature is
  used, and if link linkend=ini.session.bug-compat-warn
- session.bug_compat_warn/link is also enabled.  
+ session.bug_compat_warn/link is also enabled.  This feature/bug can be
+ disabled by disabling this directive.
 /simpara
/listitem
   /varlistentry
@@ -585,7 +586,7 @@
/term
listitem
 simpara
- PHP versions 4.2.0 and lower have an undocumented feature/bug that
+ PHP versions 4.2.3 and lower have an undocumented feature/bug that
  allows you to to initialize a session variable in the global scope,
  albeit link linkend=ini.register-globalsregister_globals/link
  is disabled.  PHP 4.3.0 and later will warn you, if this feature is


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

2004-12-20 Thread Sean Coates
seanMon Dec 20 14:58:30 2004 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  wez fixed this in 4.3.4
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.26r2=1.27ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.26 
phpdoc/en/reference/session/ini.xml:1.27
--- phpdoc/en/reference/session/ini.xml:1.26Tue Aug 10 12:30:20 2004
+++ phpdoc/en/reference/session/ini.xml Mon Dec 20 14:58:30 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.26 $ --
+!-- $Revision: 1.27 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -217,8 +217,8 @@
 /warning
 note
  simpara
-  Windows users have to change this variable in order to use PHP's 
-  session functions. Make sure to specify a valid path, e.g.:
+  Prior to PHP 4.3.4, Windows users had to change this variable in order
+  to use PHP's session functions. A valid path must be specified, e.g.:
   filenamec:/temp/filename.
  /simpara
 /note


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

2004-12-20 Thread Sean Coates
seanMon Dec 20 15:08:44 2004 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  erm.. 4.3.6
  # *learns to read the changelog*
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.27r2=1.28ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.27 
phpdoc/en/reference/session/ini.xml:1.28
--- phpdoc/en/reference/session/ini.xml:1.27Mon Dec 20 14:58:30 2004
+++ phpdoc/en/reference/session/ini.xml Mon Dec 20 15:08:43 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.27 $ --
+!-- $Revision: 1.28 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -217,7 +217,7 @@
 /warning
 note
  simpara
-  Prior to PHP 4.3.4, Windows users had to change this variable in order
+  Prior to PHP 4.3.6, Windows users had to change this variable in order
   to use PHP's session functions. A valid path must be specified, e.g.:
   filenamec:/temp/filename.
  /simpara


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

2004-07-23 Thread Jakub Vrana
vrana   Fri Jul 23 07:38:14 2004 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Missing spaces
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.23r2=1.24ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.23 
phpdoc/en/reference/session/ini.xml:1.24
--- phpdoc/en/reference/session/ini.xml:1.23Tue Jun  1 15:50:45 2004
+++ phpdoc/en/reference/session/ini.xml Fri Jul 23 07:38:13 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.23 $ --
+!-- $Revision: 1.24 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -420,7 +420,7 @@
  literalsession.cookie_lifetime/literal specifies the lifetime of
  the cookie in seconds which is sent to the browser. The value 0
  means until the browser is closed. Defaults to
- literal0/literal.See also
+ literal0/literal. See also
  functionsession_get_cookie_params/function and
  functionsession_set_cookie_params/function.
 /simpara
@@ -435,7 +435,7 @@
listitem
 simpara
  literalsession.cookie_path/literal specifies path to set
- in session_cookie. Defaults to literal//literal.See also
+ in session_cookie. Defaults to literal//literal. See also
  functionsession_get_cookie_params/function and
  functionsession_set_cookie_params/function.
 /simpara


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

2004-07-23 Thread Antony Dovgal
tony2001Fri Jul 23 10:00:45 2004 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  ession.use_trans_sid can be changed anywhere (thanks to Jasper Bedaux for noticing)
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.24r2=1.25ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.24 
phpdoc/en/reference/session/ini.xml:1.25
--- phpdoc/en/reference/session/ini.xml:1.24Fri Jul 23 07:38:13 2004
+++ phpdoc/en/reference/session/ini.xml Fri Jul 23 10:00:45 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.24 $ --
+!-- $Revision: 1.25 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -113,7 +113,7 @@
 row
  entrysession.use_trans_sid/entry
  entry0/entry
- entryPHP_INI_SYSTEM | PHP_INI_PERDIR/entry
+ entryPHP_INI_ALL/entry
 /row
 row
  entrysession.bug_compat_42/entry


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

2004-02-09 Thread Nuno Lopes
nlopess Mon Feb  9 12:21:30 2004 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  fix #23432
  
http://cvs.php.net/diff.php/phpdoc/en/reference/session/ini.xml?r1=1.19r2=1.20ty=u
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.19 
phpdoc/en/reference/session/ini.xml:1.20
--- phpdoc/en/reference/session/ini.xml:1.19Wed Jan 28 19:35:29 2004
+++ phpdoc/en/reference/session/ini.xml Mon Feb  9 12:21:30 2004
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.19 $ --
+!-- $Revision: 1.20 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -310,10 +310,12 @@
 /simpara
 note
  simparaIf you are using the default file-based session handler, your
- filesystem must keep track of access times (atime).  Windows FAT does
+ filesystem must keep track of access times (atime). Windows FAT does
  not so you will have to come up with another way to handle garbage
  collecting your session if you are stuck with a FAT filesystem or any
  other fs where atime tracking is not available.
+ Since PHP 4.2.3 it's used mtime (modified date) instead of atime. So, you
+ won't have problems with filesystems where atime tracking is not available.
  /simpara
 /note
/listitem


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

2003-07-18 Thread Philip Olson
philip  Fri Jul 18 02:27:59 2003 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Added docs from php.ini for session.bug_compat_42 and session.bug_compat_warn 
  as per doc bug #23465.  This doesn't yet close the bug as this strange issue
  needs additional documentation, somewhere.
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.15 
phpdoc/en/reference/session/ini.xml:1.16
--- phpdoc/en/reference/session/ini.xml:1.15Fri Jul  4 18:32:25 2003
+++ phpdoc/en/reference/session/ini.xml Fri Jul 18 02:27:59 2003
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.15 $ --
+!-- $Revision: 1.16 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -111,6 +111,16 @@
  entryPHP_INI_SYSTEM | PHP_INI_PERDIR/entry
 /row
 row
+ entrysession.bug_compat_42/entry
+ entry1/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entrysession.bug_compat_warn/entry
+ entry1/entry
+ entryPHP_INI_ALL/entry
+/row
+row
  entryurl_rewriter.tags/entry
  entrya=href,area=href,frame=src,input=src,form=fakeentry/entry
  entryPHP_INI_ALL/entry
@@ -486,6 +496,42 @@
   always, for example.
  /simpara
 /note
+   /listitem
+  /varlistentry
+  
+  varlistentry id=ini.session.bug-compat-42
+   term
+parametersession.bug_compat_42/parameter
+typeboolean/type
+   /term
+   listitem
+simpara
+ PHP versions 4.2.0 and lower have an undocumented feature/bug that
+ allows you to to initialize a session variable in the global scope,
+ albeit link linkend=ini.register-globalsregister_globals/link
+ is disabled.  PHP 4.3.0 and later will warn you, if this feature is
+ used, and if link linkend=ini.session.bug-compat-warn
+ session.bug_compat_warn/link is also enabled.  
+/simpara
+   /listitem
+  /varlistentry
+  
+  varlistentry id=ini.session.bug-compat-warn
+   term
+parametersession.bug_compat_warn/parameter
+typeboolean/type
+   /term
+   listitem
+simpara
+ PHP versions 4.2.0 and lower have an undocumented feature/bug that
+ allows you to to initialize a session variable in the global scope,
+ albeit link linkend=ini.register-globalsregister_globals/link
+ is disabled.  PHP 4.3.0 and later will warn you, if this feature is
+ used by enabling both 
+ link linkend=ini.session.bug-compat-42session.bug_compat_42/link
+ and link linkend=ini.session.bug-compat-warn
+ session.bug_compat_warn/link.
+/simpara
/listitem
   /varlistentry
 



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



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

2003-07-04 Thread Hartmut Holzgraefe
hholzgraFri Jul  4 18:32:25 2003 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  a little extra whitespace to enable additional line wrapping if 
  the long table lines do not fit the screen (bug #24352)
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.14 
phpdoc/en/reference/session/ini.xml:1.15
--- phpdoc/en/reference/session/ini.xml:1.14Mon Jun 16 13:26:59 2003
+++ phpdoc/en/reference/session/ini.xml Fri Jul  4 18:32:25 2003
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.14 $ --
+!-- $Revision: 1.15 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -108,7 +108,7 @@
 row
  entrysession.use_trans_sid/entry
  entry0/entry
- entryPHP_INI_SYSTEM|PHP_INI_PERDIR/entry
+ entryPHP_INI_SYSTEM | PHP_INI_PERDIR/entry
 /row
 row
  entryurl_rewriter.tags/entry



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



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

2003-06-16 Thread Damien Seguy
damsMon Jun 16 13:26:59 2003 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  no _ in ini ids
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.13 
phpdoc/en/reference/session/ini.xml:1.14
--- phpdoc/en/reference/session/ini.xml:1.13Wed May 14 10:19:03 2003
+++ phpdoc/en/reference/session/ini.xml Mon Jun 16 13:26:59 2003
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.13 $ --
+!-- $Revision: 1.14 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -343,7 +343,7 @@
/listitem
   /varlistentry
 
-  varlistentry id=ini.session.use-only_cookies
+  varlistentry id=ini.session.use-only-cookies
term
 parametersession.use_only_cookies/parameter
 typeboolean/type
@@ -459,7 +459,7 @@
/listitem
   /varlistentry
 
-  varlistentry id=ini.session.use-trans_sid
+  varlistentry id=ini.session.use-trans-sid
term
 parametersession.use_trans_sid/parameter
 typeboolean/type



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



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

2003-02-10 Thread Jani Taskinen
sniper  Mon Feb 10 19:50:03 2003 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  Add note about the XHTML conformity for url_rewriter.tags
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.11 
phpdoc/en/reference/session/ini.xml:1.12
--- phpdoc/en/reference/session/ini.xml:1.11Mon Nov 25 09:26:53 2002
+++ phpdoc/en/reference/session/ini.xml Mon Feb 10 19:50:03 2003
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.11 $ --
+!-- $Revision: 1.12 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -484,8 +484,14 @@
  literalurl_rewriter.tags/literal specifies which html tags
  are rewritten to include session id if transparent sid support
  is enabled. Defaults to
- literala=href,area=href,frame=src,input=src,form=fakeentry/literal
+ literala=href,area=href,frame=src,input=src,form=fakeentry,fieldset=/literal
 /simpara
+note
+ simpara
+  If you want XHTML conformity, remove the literalform/literal entry and
+  use the lt;fieldsetgt; tags around your form fields.
+ /simpara
+/note
/listitem
   /varlistentry
  /variablelist



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




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

2002-11-25 Thread Friedhelm Betz
betzMon Nov 25 09:26:56 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  function name corrected
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.10 
phpdoc/en/reference/session/ini.xml:1.11
--- phpdoc/en/reference/session/ini.xml:1.10Sat Nov 23 17:59:51 2002
+++ phpdoc/en/reference/session/ini.xml Mon Nov 25 09:26:53 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.10 $ --
+!-- $Revision: 1.11 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -165,7 +165,7 @@
  Defaults to literal/tmp/literal. If
  literalsession.save_path/literal's path depth is more than
  2, garbage collection will not be performed. See also
- functionsession_set_save_path/function.
+ functionsession_save_path/function.
 /simpara
 warning
  para



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




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

2002-11-23 Thread Martin Samesch
samesch Sat Nov 23 17:47:32 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  for accordance with descriptions of other settings...
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.8 phpdoc/en/reference/session/ini.xml:1.9
--- phpdoc/en/reference/session/ini.xml:1.8 Sun Nov 17 08:42:10 2002
+++ phpdoc/en/reference/session/ini.xml Sat Nov 23 17:47:32 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.8 $ --
+!-- $Revision: 1.9 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -401,8 +401,9 @@
/term
listitem
 simpara
- Wether cookies should only be sent over secure connections.
- Defaults to literaloff/literal.
+ literalsession.cookie_secure/literal specifies wether cookies
+ should only be sent over secure connections. Defaults to
+ literaloff/literal.
  This setting was added in literalPHP/literal
  4.0.4. See also
  functionsession_get_cookie_params/function and



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




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

2002-11-23 Thread Martin Samesch
samesch Sat Nov 23 17:59:52 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  s/wether/whether/ (wether = Hammel ;-)
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.9 
phpdoc/en/reference/session/ini.xml:1.10
--- phpdoc/en/reference/session/ini.xml:1.9 Sat Nov 23 17:47:32 2002
+++ phpdoc/en/reference/session/ini.xml Sat Nov 23 17:59:51 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.9 $ --
+!-- $Revision: 1.10 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -401,8 +401,8 @@
/term
listitem
 simpara
- literalsession.cookie_secure/literal specifies wether cookies
- should only be sent over secure connections. Defaults to
+ literalsession.cookie_secure/literal specifies whether
+ cookies should only be sent over secure connections. Defaults to
  literaloff/literal.
  This setting was added in literalPHP/literal
  4.0.4. See also



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




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

2002-11-17 Thread Friedhelm Betz
betzSun Nov 17 08:42:10 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  reordering of  session.cookie*  list
  documentation for session.cookie_secure added
  See also's  to related function added.
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.7 phpdoc/en/reference/session/ini.xml:1.8
--- phpdoc/en/reference/session/ini.xml:1.7 Fri Oct 25 13:07:40 2002
+++ phpdoc/en/reference/session/ini.xml Sun Nov 17 08:42:10 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.7 $ --
+!-- $Revision: 1.8 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
@@ -146,7 +146,8 @@
  literalsession.save_handler/literal defines the name of the
  handler which is used for storing and retrieving data
  associated with a session. Defaults to
- literalfiles/literal.
+ literalfiles/literal. See also
+ functionsession_set_save_handler/function.
 /simpara
/listitem
   /varlistentry
@@ -163,7 +164,8 @@
  handler, this is the path where the files are created.
  Defaults to literal/tmp/literal. If
  literalsession.save_path/literal's path depth is more than
- 2, garbage collection will not be performed.
+ 2, garbage collection will not be performed. See also
+ functionsession_set_save_path/function.
 /simpara
 warning
  para
@@ -193,6 +195,7 @@
  literalsession.name/literal specifies the name of the
  session which is used as cookie name. It should only contain
  alphanumeric characters. Defaults to literalPHPSESSID/literal.
+ See also functionsession_name/function.
 /simpara
/listitem
   /varlistentry
@@ -211,21 +214,6 @@
/listitem
   /varlistentry
 
-  varlistentry id=ini.session.cookie-lifetime
-   term
-parametersession.cookie_lifetime/parameter
-typeinteger/type
-   /term
-   listitem
-simpara
- literalsession.cookie_lifetime/literal specifies the lifetime of
- the cookie in seconds which is sent to the browser. The value 0
- means until the browser is closed. Defaults to
- literal0/literal.
-/simpara
-   /listitem
-  /varlistentry
-
   varlistentry id=ini.session.serialize-handler
term
 parametersession.serialize_handler/parameter
@@ -358,6 +346,24 @@
/listitem
   /varlistentry
 
+
+  varlistentry id=ini.session.cookie-lifetime
+   term
+parametersession.cookie_lifetime/parameter
+typeinteger/type
+   /term
+   listitem
+simpara
+ literalsession.cookie_lifetime/literal specifies the lifetime of
+ the cookie in seconds which is sent to the browser. The value 0
+ means until the browser is closed. Defaults to
+ literal0/literal.See also
+ functionsession_get_cookie_params/function and
+ functionsession_set_cookie_params/function.
+/simpara
+   /listitem
+  /varlistentry
+
   varlistentry id=ini.session.cookie-path
term
 parametersession.cookie_path/parameter
@@ -366,7 +372,9 @@
listitem
 simpara
  literalsession.cookie_path/literal specifies path to set
- in session_cookie. Defaults to literal//literal.
+ in session_cookie. Defaults to literal//literal.See also
+ functionsession_get_cookie_params/function and
+ functionsession_set_cookie_params/function.
 /simpara
/listitem
   /varlistentry
@@ -378,8 +386,27 @@
/term
listitem
 simpara
- literalsession.cookie_domain/literal specifies domain to
- set in session_cookie. Default is none at all.
+ literalsession.cookie_domain/literal specifies the domain to
+ set in session_cookie. Default is none at all. See also
+ functionsession_get_cookie_params/function and
+ functionsession_set_cookie_params/function.
+/simpara
+   /listitem
+  /varlistentry
+
+  varlistentry id=ini.session.cookie-secure
+   term
+parametersession.cookie_secure/parameter
+typeboolean/type
+   /term
+   listitem
+simpara
+ Wether cookies should only be sent over secure connections.
+ Defaults to literaloff/literal.
+ This setting was added in literalPHP/literal
+ 4.0.4. See also
+ functionsession_get_cookie_params/function and
+ functionsession_set_cookie_params/function.
 /simpara
/listitem
   /varlistentry
@@ -394,7 +421,8 @@
  literalsession.cache_limiter/literal specifies cache
  control method to use for session pages
  (none/nocache/private/private_no_expire/public). Defaults to
- literalnocache/literal.
+ literalnocache/literal. See also
+ functionsession_cache_limiter/function.
 /simpara
/listitem
   /varlistentry
@@ -409,7 +437,8 @@
 simpara
  literalsession.cache_expire/literal specifies time-to-live
  for cached session pages in minutes, this has no effect for
- nocache limiter. Defaults to literal180/literal.
+ nocache limiter. Defaults to literal180/literal. See also
+ 

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

2002-10-25 Thread Friedhelm Betz
betzFri Oct 25 13:07:40 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  varlist instead  of simplelist
  ensure the possibility to link to session settings
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.6 phpdoc/en/reference/session/ini.xml:1.7
--- phpdoc/en/reference/session/ini.xml:1.6 Fri Oct  4 11:47:37 2002
+++ phpdoc/en/reference/session/ini.xml Fri Oct 25 13:07:40 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.6 $ --
+!-- $Revision: 1.7 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
 -130,220 +130,353 
  For further details and definition of the PHP_INI_* constants see
  functionini_set/function.
  /para
-para
- The session management system supports a number of configuration
- options which you can place in your php.ini; file. We will give a
- short overview.
- itemizedlist
-  listitem
-   simpara
-literalsession.save_handler/literal defines the name of the
-handler which is used for storing and retrieving data
-associated with a session.  Defaults to
-literalfiles/literal.
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.save_path/literal defines the argument which
-is passed to the save handler. If you choose the default files
-handler, this is the path where the files are created.
-Defaults to literal/tmp/literal. If
-literalsession.save_path/literal's path depth is more than
-2, garbage collection will not be performed.
-   /simpara
-   warning
-para
- If you leave this set to a world-readable directory, such as
- filename/tmp/filename (the default), other users on the
- server may be able to hijack sessions by getting the list of
- files in that directory.
-/para
-   /warning
-   note
-simpara
- Windows users have to change this variable in order to use PHP's 
- session functions. Make sure to specify a valid path, e.g.:
- filenamec:/temp/filename.
-/simpara
-   /note
-  /listitem
-  listitem
-   simpara
-literalsession.name/literal specifies the name of the
-session which is used as cookie name. It should only contain
-alphanumeric characters.  Defaults to
-literalPHPSESSID/literal.
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.auto_start/literal specifies whether the
-session module starts a session automatically on request
-startup. Defaults to literal0/literal (disabled).
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.cookie_lifetime/literal specifies the lifetime of
-the cookie in seconds which is sent to the browser. The value 0
-means until the browser is closed. Defaults to
-literal0/literal.
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.serialize_handler/literal defines the name
-of the handler which is used to serialize/deserialize
-data. Currently, a PHP internal format (name
-literalphp/literal) and WDDX is supported (name
-literalwddx/literal). WDDX is only available, if PHP is
-compiled with link linkend=ref.wddxWDDX
-support/link. Defaults to literalphp/literal.
-/simpara
-  /listitem
-  listitem
-   simpara
-literalsession.gc_probability/literal specifies the
-probability that the gc (garbage collection) routine is started
-on each request in percent. Defaults to literal1/literal.
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.gc_maxlifetime/literal specifies the number
-of seconds after which data will be seen as 'garbage' and
-cleaned up.
-   /simpara
-   note
-simparaIf you are using the default file-based session handler, your
-filesystem must keep track of access times (atime).  Windows FAT does
-not so you will have to come up with another way to handle garbage
-collecting your session if you are stuck with a FAT filesystem or any
-other fs where atime tracking is not available.
-/simpara
-   /note
-  /listitem
-  listitem
-   simpara
-literalsession.referer_check/literal contains the
-substring you want to check each HTTP Referer for. If the
-Referer was sent by the client and the substring was not
-found, the embedded session id will be marked as invalid.
-Defaults to the empty string.
-   /simpara
-  /listitem
-  listitem
-   simpara
-literalsession.entropy_file/literal gives a path to an
-external resource (file) which will be used as an additional
- 

Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Tal Peer

Martin Samesch wrote:

sameschFri Oct  4 07:25:24 2002 EDT

  Modified files:  
/phpdoc/en/reference/session   ini.xml 
  Log:
  fixed typo, c:/temp isn't a valid Windows path
  


But PHP uses windows paths with unix-slashes, no? (i hardly use php on 
win, so i'm not sure..)

Tal

  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.4 
phpdoc/en/reference/session/ini.xml:1.5
--- phpdoc/en/reference/session/ini.xml:1.4Sat Sep 28 10:48:57 2002
+++ phpdoc/en/reference/session/ini.xmlFri Oct  4 07:25:24 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.4 $ --
+!-- $Revision: 1.5 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
 -164,7 +164,7 
 simpara
  Windows users have to change this variable in order to use PHP's 
  session functions. Make sure to specify a valid path, e.g.:
- filenamec:/temp/filename.
+ filenamec:\temp/filename.
 /simpara
/note
   /listitem



  





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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Martin Samesch

Tal Peer wrote:
 
 Martin Samesch wrote:
 
 sameschFri Oct  4 07:25:24 2002 EDT
 
   Modified files:
 /phpdoc/en/reference/session   ini.xml
   Log:
   fixed typo, c:/temp isn't a valid Windows path
 
 
 
 But PHP uses windows paths with unix-slashes, no? (i hardly use php on
 win, so i'm not sure..)

Ooops, to be honest, I'm not sure about that, too (I never use PHP on
win), but...

$ grep path /etc/php4/apache/php.ini
[...]
include_path = [...]  ; UNIX: /path1:/path2  Windows:
\path1;\path2

Martin

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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Tal Peer

Martin Samesch wrote:

Tal Peer wrote:
  

Martin Samesch wrote:



sameschFri Oct  4 07:25:24 2002 EDT

 Modified files:
   /phpdoc/en/reference/session   ini.xml
 Log:
 fixed typo, c:/temp isn't a valid Windows path


  

But PHP uses windows paths with unix-slashes, no? (i hardly use php on
win, so i'm not sure..)



Ooops, to be honest, I'm not sure about that, too (I never use PHP on
win), but...

$ grep path /etc/php4/apache/php.ini
[...]
include_path = [...]  ; UNIX: /path1:/path2  Windows:
\path1;\path2
  


Any Windows user to comment on this?

Tal

Martin

  





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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread holliwell

  Modified files:
/phpdoc/en/reference/session   ini.xml
  Log:
  fixed typo, c:/temp isn't a valid Windows path
 
 
   
 
 But PHP uses windows paths with unix-slashes, no? (i hardly use php on
 win, so i'm not sure..)
 
 
 
 Ooops, to be honest, I'm not sure about that, too (I never use PHP on
 win), but...
 
 $ grep path /etc/php4/apache/php.ini
 [...]
 include_path = [...]  ; UNIX: /path1:/path2  Windows:
 \path1;\path2
   
 
 
 Any Windows user to comment on this?
 
 Tal

To my experience (i was the one who wrote this note ;-))
both is possible \ and /.

IMHO it should be consistent with other path  notations in the docs.
Also to my experience it helps to avoid conflicts to use the unix convention
(like apache for win)

Friedhelm


-- 
+++ GMX - Mail, Messaging  more  http://www.gmx.net +++
NEU: Mit GMX ins Internet. Günstige DSL-  Modem/ISDN-Tarife!


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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Steph

hm, usually it doesn't make any difference - but if I cd to root using
the unix slash it doesn't work.

Microsoft(R) Windows 98
   (C)Copyright Microsoft Corp 1981-1998.

C:\WINDOWScd \

C:\

Microsoft(R) Windows 98
   (C)Copyright Microsoft Corp 1981-1998.

C:\WINDOWScd /
Invalid switch - /

C:\WINDOWS

- Original Message -
From: [EMAIL PROTECTED]
To: Tal Peer [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, October 04, 2002 12:33 PM
Subject: Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml


   Modified files:
 /phpdoc/en/reference/session   ini.xml
   Log:
   fixed typo, c:/temp isn't a valid Windows path
  
  
  
  
  But PHP uses windows paths with unix-slashes, no? (i hardly use
php on
  win, so i'm not sure..)
  
  
  
  Ooops, to be honest, I'm not sure about that, too (I never use PHP
on
  win), but...
  
  $ grep path /etc/php4/apache/php.ini
  [...]
  include_path = [...]  ; UNIX: /path1:/path2  Windows:
  \path1;\path2
  
  
 
  Any Windows user to comment on this?
 
  Tal

 To my experience (i was the one who wrote this note ;-))
 both is possible \ and /.

 IMHO it should be consistent with other path  notations in the docs.
 Also to my experience it helps to avoid conflicts to use the unix
convention
 (like apache for win)

 Friedhelm


 --
 +++ GMX - Mail, Messaging  more  http://www.gmx.net +++
 NEU: Mit GMX ins Internet. Günstige DSL-  Modem/ISDN-Tarife!


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




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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread holliwell

 hm, usually it doesn't make any difference - but if I cd to root using
 the unix slash it doesn't work.
 
 Microsoft(R) Windows 98
(C)Copyright Microsoft Corp 1981-1998.
 
 C:\WINDOWScd \
 
 C:\
 
 Microsoft(R) Windows 98
(C)Copyright Microsoft Corp 1981-1998.
 
 C:\WINDOWScd /
 Invalid switch - /
 
 C:\WINDOWS
 

Yep, right, it doesnt work with cd in the win shell, but its valid for e.g.
php and apache.

Friedhelm

-- 
+++ GMX - Mail, Messaging  more  http://www.gmx.net +++
NEU: Mit GMX ins Internet. Günstige DSL-  Modem/ISDN-Tarife!


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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Steph

valid, yes.  Correct? .. hmm.

surely if you have C:\ in there at all it's win32 documentation,
regardless of the way you point your slashes :)

- Original Message -
From: [EMAIL PROTECTED]
To: Steph [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Friday, October 04, 2002 12:53 PM
Subject: Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml


  hm, usually it doesn't make any difference - but if I cd to root
using
  the unix slash it doesn't work.
 
  Microsoft(R) Windows 98
 (C)Copyright Microsoft Corp 1981-1998.
 
  C:\WINDOWScd \
 
  C:\
 
  Microsoft(R) Windows 98
 (C)Copyright Microsoft Corp 1981-1998.
 
  C:\WINDOWScd /
  Invalid switch - /
 
  C:\WINDOWS
 

 Yep, right, it doesnt work with cd in the win shell, but its valid for
e.g.
 php and apache.

 Friedhelm

 --
 +++ GMX - Mail, Messaging  more  http://www.gmx.net +++
 NEU: Mit GMX ins Internet. Günstige DSL-  Modem/ISDN-Tarife!


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



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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread holliwell

 valid, yes.  Correct? .. hmm.
 
 surely if you have C:\ in there at all it's win32 documentation,
 regardless of the way you point your slashes :)

Sure.
I don't care about at all ;-)  and I am in no way any kind of religious
about this pointas long as the docs are consistent.

Friedhelm

-- 
+++ GMX - Mail, Messaging  more  http://www.gmx.net +++
NEU: Mit GMX ins Internet. Günstige DSL-  Modem/ISDN-Tarife!


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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Gabor Hojtsy

 samesch Fri Oct  4 07:25:24 2002 EDT
 
   Modified files:  
 /phpdoc/en/reference/session ini.xml 
   Log:
   fixed typo, c:/temp isn't a valid Windows path

AFAIK, path values can be used with / instead of \ in php.ini
on windows. At least I use these kind of values, and all thigs
work. So as far as php cares, c:/temp seems to be a valid path.

Goba



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




Re: [PHP-DOC] cvs: phpdoc /en/reference/session ini.xml

2002-10-04 Thread Gabor Hojtsy

  valid, yes.  Correct? .. hmm.
  
  surely if you have C:\ in there at all it's win32 documentation,
  regardless of the way you point your slashes :)
 
 Sure.
 I don't care about at all ;-)  and I am in no way any kind of religious
 about this pointas long as the docs are consistent.

It's better to use c:/somedir/subdir all in php.ini php code and apache,
as it does not need any escapes (c:\\somedir\\subdir), and works in
all these environments.

Goba



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




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

2002-09-28 Thread Friedhelm Betz

betzSat Sep 28 10:48:57 2002 EDT

  Modified files:  
/phpdoc/en/reference/sessionini.xml 
  Log:
  where to set session.use_trans_sid corrected
  
  
Index: phpdoc/en/reference/session/ini.xml
diff -u phpdoc/en/reference/session/ini.xml:1.3 phpdoc/en/reference/session/ini.xml:1.4
--- phpdoc/en/reference/session/ini.xml:1.3 Sun Sep 15 11:21:55 2002
+++ phpdoc/en/reference/session/ini.xml Sat Sep 28 10:48:57 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.3 $ --
+!-- $Revision: 1.4 $ --
 section id=session.configuration
  reftitle.runtime;
  extension.runtime;
 -108,7 +108,7 
 row
  entrysession.use_trans_sid/entry
  entry0/entry
- entryPHP_INI_ALL/entry
+ entryPHP_INI_SYSTEM|PHP_INI_PERDIR/entry
 /row
 row
  entryurl_rewriter.tags/entry



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