| noreply@php.net 2004-05-06, 10:37 pm |
|
========================================
=============================
FAILED TEST SUMMARY
---------------------------------------------------------------------
session object deserialization [ext/session/tests/003.phpt]
session_set_save_handler test [ext/session/tests/004.phpt]
custom save handler, multiple session_start()s, complex data structure test. [ext/session/tests/005.phpt]
correct instantiation of references between variables in sessions [ext/session/tests/006.phpt]
bug compatibility: unset($c) with enabled register_globals [ext/session/tests/007.phpt]
bug compatibility: global is used albeit register_globals=0 [ext/session/tests/008-php4.2.3.phpt]
unset($_SESSION["name"]); should work with register_globals=off [ext/session/tests/009.phpt]
registering $_SESSION should not segfault [ext/session/tests/012.phpt]
redefining SID should not cause warnings [ext/session/tests/013.phpt]
a script should not be able to modify session.use_trans_sid [ext/session/tests/014.phpt]
use_trans_sid should not affect SID [ext/session/tests/015.phpt]
setting $_SESSION before session_start() should not cause segfault [ext/session/tests/017.phpt]
rewriter correctly handles attribute names which contain dashes [ext/session/tests/018.phpt]
serializing references test case using globals [ext/session/tests/019.phpt]
rewriter uses arg_seperator.output for modifying URLs [ext/session/tests/020.phpt]
rewriter handles form and fieldset tags correctly [ext/session/tests/021.phpt]
Bug #26862 (ob_flush() before output_reset_rewrite_vars() results in data loss) [ext/session/tests/bug26862.phpt]
Bug #27780 (strtotime(+1 xxx) returns a wrong date/time) [ext/standard/tests/time/bug27780.phpt]
========================================
=============================
========================================
=============================
TEST RESULT SUMMARY
---------------------------------------------------------------------
Exts skipped : 70
Exts tested : 17
---------------------------------------------------------------------
Number of tests : 592
Tests skipped : 251 (42.4%)
Tests warned : 0 ( 0.0%)
Tests failed : 18 ( 3.0%)
Tests passed : 323 (54.6%)
---------------------------------------------------------------------
Time taken : 79 seconds
========================================
=============================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/003.phpt
========================================
========================================
---- EXPECTED OUTPUT
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
array(1) {
[3]=>
&object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
}
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/003.php on line 10
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
array(1) {
[3]=>
&object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
}
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/003.php on line 18
---- FAILED
========================================
========================================
001- object(foo)(2) {
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/003.php on line 10
002- ["bar"]=>
002+ object(foo)(2) {
003- string(2) "ok"
003+ ["bar"]=>
004- ["yes"]=>
004+ string(2) "ok"
005- int(2)
005+ ["yes"]=>
006- }
006+ int(2)
007- array(1) {
007+ }
008- [3]=>
008+ array(1) {
009- &object(foo)(2) {
009+ [3]=>
010- ["bar"]=>
010+ &object(foo)(2) {
011- string(2) "ok"
011+ ["bar"]=>
012- ["yes"]=>
012+ string(2) "ok"
013- int(2)
013+ ["yes"]=>
014- }
014+ int(2)
015- }
015+ }
016+ }
017+
018+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/003.php on line 18
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/004.phpt
========================================
========================================
---- EXPECTED OUTPUT
OPEN: PHPSESSID
READ: abtest
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
array(1) {
[3]=>
&object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
}
WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}}
OPEN: PHPSESSID
READ: abtest
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
array(1) {
[3]=>
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
}
DESTROY: abtest
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/004.php on line 47
Fatal error: Call to a member function on a non-object in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/004.php on line 48
---- FAILED
========================================
========================================
001- OPEN: PHPSESSID
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/004.php on line 47
002- READ: abtest
002+
003- object(foo)(2) {
003+ Fatal error: Call to a member function on a non-object in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/004.php on line 48
004- ["bar"]=>
005- string(2) "ok"
006- ["yes"]=>
007- int(2)
008- }
009- array(1) {
010- [3]=>
011- &object(foo)(2) {
012- ["bar"]=>
013- string(2) "ok"
014- ["yes"]=>
015- int(2)
016- }
017- }
018- WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}}
019- OPEN: PHPSESSID
020- READ: abtest
021- object(foo)(2) {
022- ["bar"]=>
023- string(2) "ok"
024- ["yes"]=>
025- int(2)
026- }
027- array(1) {
028- [3]=>
029- object(foo)(2) {
030- ["bar"]=>
031- string(2) "ok"
032- ["yes"]=>
033- int(2)
034- }
035- }
036- DESTROY: abtest
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/005.phpt
========================================
========================================
---- EXPECTED OUTPUT
OPEN: PHPSESSID
READ: abtest
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
array(1) {
[3]=>
&object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(2)
}
}
WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}}
CLOSE
OPEN: PHPSESSID
READ: abtest
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(3)
}
array(1) {
[3]=>
&object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(3)
}
}
int(123)
WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:3;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:3;}}c|i:123;
CLOSE
OPEN: PHPSESSID
READ: abtest
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(3)
}
array(1) {
[3]=>
object(foo)(2) {
["bar"]=>
string(2) "ok"
["yes"]=>
int(3)
}
}
int(123)
DESTROY: abtest
CLOSE
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/005.php on line 49
Fatal error: Call to a member function on a non-object in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/005.php on line 50
---- FAILED
========================================
========================================
001- OPEN: PHPSESSID
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/005.php on line 49
002- READ: abtest
002+
003- object(foo)(2) {
003+ Fatal error: Call to a member function on a non-object in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/005.php on line 50
004- ["bar"]=>
005- string(2) "ok"
006- ["yes"]=>
007- int(2)
008- }
009- array(1) {
010- [3]=>
011- &object(foo)(2) {
012- ["bar"]=>
013- string(2) "ok"
014- ["yes"]=>
015- int(2)
016- }
017- }
018- WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}}
019- CLOSE
020- OPEN: PHPSESSID
021- READ: abtest
022- object(foo)(2) {
023- ["bar"]=>
024- string(2) "ok"
025- ["yes"]=>
026- int(3)
027- }
028- array(1) {
029- [3]=>
030- &object(foo)(2) {
031- ["bar"]=>
032- string(2) "ok"
033- ["yes"]=>
034- int(3)
035- }
036- }
037- int(123)
038- WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:3;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:3;}}c|i:123;
039- CLOSE
040- OPEN: PHPSESSID
041- READ: abtest
042- object(foo)(2) {
043- ["bar"]=>
044- string(2) "ok"
045- ["yes"]=>
046- int(3)
047- }
048- array(1) {
049- [3]=>
050- object(foo)(2) {
051- ["bar"]=>
052- string(2) "ok"
053- ["yes"]=>
054- int(3)
055- }
056- }
057- int(123)
058- DESTROY: abtest
059- CLOSE
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/006.phpt
========================================
========================================
---- EXPECTED OUTPUT
original values:
object(a)(1) {
["test"]=>
string(5) "hallo"
}
object(b)(1) {
["a"]=>
&object(a)(1) {
["test"]=>
string(5) "hallo"
}
}
values after session:
object(a)(1) {
["test"]=>
string(5) "hallo"
}
object(b)(1) {
["a"]=>
&object(a)(1) {
["test"]=>
string(5) "hallo"
}
}
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/006.php on line 5
original values:
object(a)(1) {
["test"]=>
string(5) "hallo"
}
object(b)(1) {
["a"]=>
&object(a)(1) {
["test"]=>
string(5) "hallo"
}
}
values after session:
object(a)(1) {
["test"]=>
string(5) "hallo"
}
object(b)(1) {
["a"]=>
&object(a)(1) {
["test"]=>
string(5) "hallo"
}
}
---- FAILED
========================================
========================================
001- original values:
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/006.php on line 5
002- object(a)(1) {
002+ original values:
003- ["test"]=>
003+ object(a)(1) {
004- string(5) "hallo"
004+ ["test"]=>
005- }
005+ string(5) "hallo"
006- object(b)(1) {
006+ }
007- ["a"]=>
007+ object(b)(1) {
008- &object(a)(1) {
008+ ["a"]=>
009- ["test"]=>
009+ &object(a)(1) {
010- string(5) "hallo"
010+ ["test"]=>
011- }
011+ string(5) "hallo"
012- }
012+ }
013- values after session:
013+ }
014- object(a)(1) {
014+ values after session:
015- ["test"]=>
015+ object(a)(1) {
016- string(5) "hallo"
016+ ["test"]=>
017- }
017+ string(5) "hallo"
018- object(b)(1) {
018+ }
019- ["a"]=>
019+ object(b)(1) {
020- &object(a)(1) {
020+ ["a"]=>
021- ["test"]=>
021+ &object(a)(1) {
022- string(5) "hallo"
022+ ["test"]=>
023- }
023+ string(5) "hallo"
024- }
024+ }
025+ }
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/007.phpt
========================================
========================================
---- EXPECTED OUTPUT
float(3.14)
array(1) {
["c"]=>
&float(3.14)
}
float(3.14)
array(1) {
["c"]=>
&float(3.14)
}
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/007.php on line 7
float(3.14)
array(1) {
["c"]=>
&float(3.14)
}
float(3.14)
array(1) {
["c"]=>
&float(3.14)
}
---- FAILED
========================================
========================================
001- float(3.14)
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/007.php on line 7
002- array(1) {
002+ float(3.14)
003- ["c"]=>
003+ array(1) {
004- &float(3.14)
004+ ["c"]=>
005- }
005+ &float(3.14)
006- float(3.14)
006+ }
007- array(1) {
007+ float(3.14)
008- ["c"]=>
008+ array(1) {
009- &float(3.14)
009+ ["c"]=>
010- }
010+ &float(3.14)
011+ }
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/008-php4.2.3.phpt
========================================
========================================
---- EXPECTED OUTPUT
NULL
Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality
and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively.
array(1) {
["c"]=>
float(3.14)
}
NULL
array(1) {
["c"]=>
float(3.14)
}
---- ACTUAL OUTPUT
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/008-php4.2.3.php on line 6
NULL
Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality
and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively.
array(1) {
["c"]=>
float(3.14)
}
NULL
array(1) {
["c"]=>
float(3.14)
}
---- FAILED
========================================
========================================
001- NULL
001+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/008-php4.2.3.php on line 6
002- Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this function
ality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively.
002+ NULL
003- array(1) {
003+ Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this function
ality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively.
004- ["c"]=>
004+ array(1) {
005- float(3.14)
005+ ["c"]=>
006- }
006+ float(3.14)
007- NULL
007+ }
008- array(1) {
008+ NULL
009- ["c"]=>
009+ array(1) {
010- float(3.14)
010+ ["c"]=>
011- }
011+ float(3.14)
012+ }
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/009.phpt
========================================
========================================
---- EXPECTED OUTPUT
array(0) {
}
array(1) {
["name"]=>
string(3) "foo"
}
array(1) {
["name"]=>
string(3) "foo"
}
array(0) {
}
array(0) {
}
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/009.php on line 7
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/009.php on line 8
array(0) {
}
array(1) {
["name"]=>
string(3) "foo"
}
array(1) {
["name"]=>
string(3) "foo"
}
array(0) {
}
array(0) {
}
---- FAILED
========================================
========================================
001- array(0) {
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/009.php on line 7
002- }
002+
003- array(1) {
003+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/009.php on line 8
004- ["name"]=>
004+ array(0) {
005- string(3) "foo"
005+ }
006- }
006+ array(1) {
007- array(1) {
007+ ["name"]=>
008- ["name"]=>
008+ string(3) "foo"
009- string(3) "foo"
009+ }
010- }
010+ array(1) {
011- array(0) {
011+ ["name"]=>
012- }
012+ string(3) "foo"
013- array(0) {
013+ }
014- }
014+ array(0) {
015+ }
016+ array(0) {
017+ }
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/012.phpt
========================================
========================================
---- EXPECTED OUTPUT
I live
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/012.php on line 7
I live
---- FAILED
========================================
========================================
001- I live
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/012.php on line 7
002+ I live
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/013.phpt
========================================
========================================
---- EXPECTED OUTPUT
I live
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/013.php on line 5
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/013.php on line 6
I live
---- FAILED
========================================
========================================
001- I live
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/013.php on line 5
002+
003+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/013.php on line 6
004+ I live
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/014.phpt
========================================
========================================
---- EXPECTED OUTPUT
<a href="/link?PHPSESSID=abtest">
<a href="/link?PHPSESSID=abtest">
<a href="/link?PHPSESSID=abtest">
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/014.php on line 5
<a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
<a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
<a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/014.php on line 18
---- FAILED
========================================
========================================
001- <a href="/link?PHPSESSID=abtest">
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/014.php on line 5
002- <a href="/link?PHPSESSID=abtest">
002+ <a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
003- <a href="/link?PHPSESSID=abtest">
003+ <a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
004+ <a href="/link? PHPSESSID=d0bde663d0848dcbd9d16d335d9da5
d3">
005+
006+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/014.php on line 18
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/015.phpt
========================================
========================================
---- EXPECTED OUTPUT
<a href="/link?PHPSESSID=abtest&PHPSESSID=abtest">
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/015.php on line 5
<a href="/link? PHPSESSID=ee83f0a2512950f9da52f5e879168b
d6& PHPSESSID=ee83f0a2512950f9da52f5e879168b
d6">
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/015.php on line 9
---- FAILED
========================================
========================================
001- <a href="/link?PHPSESSID=abtest&PHPSESSID=abtest">
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/015.php on line 5
002+ <a href="/link? PHPSESSID=ee83f0a2512950f9da52f5e879168b
d6& PHPSESSID=ee83f0a2512950f9da52f5e879168b
d6">
003+
004+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/015.php on line 9
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/017.phpt
========================================
========================================
---- EXPECTED OUTPUT
I live
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/017.php on line 8
I live
---- FAILED
========================================
========================================
001- I live
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/017.php on line 8
002+ I live
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/018.phpt
========================================
========================================
---- EXPECTED OUTPUT
<form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID" value="abtest" />
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/018.php on line 6
<form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID" value="375f8cc2306f079a9264c2bf19aa7513" />
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/018.php on line 10
---- FAILED
========================================
========================================
001- <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID" value="abtest" />
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/018.php on line 6
002+ <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID" value="375f8cc2306f079a9264c2bf19aa7513" />
003+
004+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/018.php on line 10
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/019.phpt
========================================
========================================
---- EXPECTED OUTPUT
array(2) {
["o1"]=>
&object(tfoo)(1) {
["c"]=>
int(42)
}
["o2"]=>
&object(tfoo)(1) {
["c"]=>
int(42)
}
}
array(2) {
["o1"]=>
&object(tfoo)(1) {
["c"]=>
int(44)
}
["o2"]=>
&object(tfoo)(1) {
["c"]=>
int(44)
}
}
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/019.php on line 16
array(2) {
["o1"]=>
&object(tfoo)(1) {
["c"]=>
int(42)
}
["o2"]=>
&object(tfoo)(1) {
["c"]=>
int(42)
}
}
array(2) {
["o1"]=>
&object(tfoo)(1) {
["c"]=>
int(44)
}
["o2"]=>
&object(tfoo)(1) {
["c"]=>
int(44)
}
}
---- FAILED
========================================
========================================
001- array(2) {
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/019.php on line 16
002- ["o1"]=>
002+ array(2) {
003- &object(tfoo)(1) {
003+ ["o1"]=>
004- ["c"]=>
004+ &object(tfoo)(1) {
005- int(42)
005+ ["c"]=>
006- }
006+ int(42)
007- ["o2"]=>
007+ }
008- &object(tfoo)(1) {
008+ ["o2"]=>
009- ["c"]=>
009+ &object(tfoo)(1) {
010- int(42)
010+ ["c"]=>
011- }
011+ int(42)
012- }
012+ }
013- array(2) {
013+ }
014- ["o1"]=>
014+ array(2) {
015- &object(tfoo)(1) {
015+ ["o1"]=>
016- ["c"]=>
016+ &object(tfoo)(1) {
017- int(44)
017+ ["c"]=>
018- }
018+ int(44)
019- ["o2"]=>
019+ }
020- &object(tfoo)(1) {
020+ ["o2"]=>
021- ["c"]=>
021+ &object(tfoo)(1) {
022- int(44)
022+ ["c"]=>
023- }
023+ int(44)
024- }
024+ }
025+ }
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/020.phpt
========================================
========================================
---- EXPECTED OUTPUT
<a href="link.php?a=b&PHPSESSID=abtest">
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/020.php on line 6
<a href="link.php?a=b& amp;PHPSESSID=d8375c6ca3b48aa8f193696792
9fad7c">
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/020.php on line 10
---- FAILED
========================================
========================================
001- <a href="link.php?a=b&PHPSESSID=abtest">
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/020.php on line 6
002+ <a href="link.php?a=b& amp;PHPSESSID=d8375c6ca3b48aa8f193696792
9fad7c">
003+
004+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/020.php on line 10
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/021.phpt
========================================
========================================
---- EXPECTED OUTPUT
<form><input type="hidden" name="PHPSESSID" value="abtest" />
<fieldset><input type="hidden" name="PHPSESSID" value="abtest" />
<form><input type="hidden" name="PHPSESSID" value="abtest" />
<fieldset>
<form><input type="hidden" name="PHPSESSID" value="abtest" />
<fieldset>
<form>
<fieldset><input type="hidden" name="PHPSESSID" value="abtest" />
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/021.php on line 6
<form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
<fieldset><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
<form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
<fieldset>
<form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
<fieldset>
<form>
<fieldset><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/021.php on line 39
---- FAILED
========================================
========================================
001- <form><input type="hidden" name="PHPSESSID" value="abtest" />
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/021.php on line 6
002- <fieldset><input type="hidden" name="PHPSESSID" value="abtest" />
002+ <form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
003- <form><input type="hidden" name="PHPSESSID" value="abtest" />
003+ <fieldset><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
004- <fieldset>
004+ <form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
005- <form><input type="hidden" name="PHPSESSID" value="abtest" />
005+ <fieldset>
006- <fieldset>
006+ <form><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
007- <form>
007+ <fieldset>
008- <fieldset><input type="hidden" name="PHPSESSID" value="abtest" />
008+ <form>
009+ <fieldset><input type="hidden" name="PHPSESSID" value="bd7fe692316501b0bbb7d6c3169bb322" />
010+
011+ Warning: session_destroy(): Session object destruction failed in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/021.php on line 39
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/bug26862.phpt
========================================
========================================
---- EXPECTED OUTPUT
<a href="file.php?var=value">link</a><a href="file.php">link</a>
---- ACTUAL OUTPUT
Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/bug26862.php on line 2
<a href="file.php?var=value">link</a><a href="file.php">link</a>
---- FAILED
========================================
========================================
001- <a href="file.php?var=value">link</a><a href="file.php">link</a>
001+ Notice: A session had already been started - ignoring session_start() in /usr/ports/lang/php4/work/php-4.3.6/ext/session/tests/bug26862.php on line 2
002+ <a href="file.php?var=value">link</a><a href="file.php">link</a>
========================================
========================================
========================================
========================================
/usr/ports/lang/php4/work/php-4.3.6/ext/standard/tests/time/bug27780.phpt
========================================
========================================
---- EXPECTED OUTPUT
America/Chicago
1076824799 [2004-02-14 23:59:59 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076824800 [2004-02-15 00:00:00 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076824801 [2004-02-15 00:00:01 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079503200 [2004-03-17 00:00:00 CST] [2004-04-07 00:00:00 -21 days]
1080367200 [2004-03-27 00:00:00 CST] [2004-04-07 00:00:00 11 days ago]
1080460800 [2004-03-28 02:00:00 CST] [2004-04-07 00:00:00 -10 day +2 hours]
1081227600 [2004-04-06 00:00:00 CDT] [2004-04-07 00:00:00 -1 day]
1081314000 [2004-04-07 00:00:00 CDT] [2004-04-07 00:00:00]
1081317600 [2004-04-07 01:00:00 CDT] [2004-04-07 00:00:00 +1 hour]
1081321200 [2004-04-07 02:00:00 CDT] [2004-04-07 00:00:00 +2 hour]
1081400400 [2004-04-08 00:00:00 CDT] [2004-04-07 00:00:00 +1 day]
1081400400 [2004-04-08 00:00:00 CDT] [2004-04-07 00:00:00 1 day]
1083128400 [2004-04-28 00:00:00 CDT] [2004-04-07 00:00:00 +21 days]
Europe/Amsterdam
1076799599 [2004-02-14 23:59:59 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076799600 [2004-02-15 00:00:00 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076799601 [2004-02-15 00:00:01 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079478000 [2004-03-17 00:00:00 CET] [2004-04-07 00:00:00 -21 days]
1080342000 [2004-03-27 00:00:00 CET] [2004-04-07 00:00:00 11 days ago]
1080435600 [2004-03-28 03:00:00 CEST] [2004-04-07 00:00:00 -10 day +2 hours]
1081202400 [2004-04-06 00:00:00 CEST] [2004-04-07 00:00:00 -1 day]
1081288800 [2004-04-07 00:00:00 CEST] [2004-04-07 00:00:00]
1081292400 [2004-04-07 01:00:00 CEST] [2004-04-07 00:00:00 +1 hour]
1081296000 [2004-04-07 02:00:00 CEST] [2004-04-07 00:00:00 +2 hour]
1081375200 [2004-04-08 00:00:00 CEST] [2004-04-07 00:00:00 +1 day]
1081375200 [2004-04-08 00:00:00 CEST] [2004-04-07 00:00:00 1 day]
1083103200 [2004-04-28 00:00:00 CEST] [2004-04-07 00:00:00 +21 days]
Asia/Jerusalem
1076795999 [2004-02-14 23:59:59 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076796000 [2004-02-15 00:00:00 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076796001 [2004-02-15 00:00:01 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079474400 [2004-03-17 00:00:00 IST] [2004-04-07 00:00:00 -21 days]
1080338400 [2004-03-27 00:00:00 IST] [2004-04-07 00:00:00 11 days ago]
1080432000 [2004-03-28 02:00:00 IST] [2004-04-07 00:00:00 -10 day +2 hours]
1081202400 [2004-04-06 00:00:00 IST] [2004-04-07 00:00:00 -1 day]
1081288800 [2004-04-07 00:00:00 IST] [2004-04-07 00:00:00]
1081292400 [2004-04-07 02:00:00 IDT] [2004-04-07 00:00:00 +1 hour]
1081292400 [2004-04-07 02:00:00 IDT] [2004-04-07 00:00:00 +2 hour]
1081371600 [2004-04-08 00:00:00 IDT] [2004-04-07 00:00:00 +1 day]
1081371600 [2004-04-08 00:00:00 IDT] [2004-04-07 00:00:00 1 day]
1083099600 [2004-04-28 00:00:00 IDT] [2004-04-07 00:00:00 +21 days]
Asia/Singapore
1076774399 [2004-02-14 23:59:59 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076774400 [2004-02-15 00:00:00 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076774401 [2004-02-15 00:00:01 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079452800 [2004-03-17 00:00:00 SGT] [2004-04-07 00:00:00 -21 days]
1080316800 [2004-03-27 00:00:00 SGT] [2004-04-07 00:00:00 11 days ago]
1080410400 [2004-03-28 02:00:00 SGT] [2004-04-07 00:00:00 -10 day +2 hours]
1081180800 [2004-04-06 00:00:00 SGT] [2004-04-07 00:00:00 -1 day]
1081267200 [2004-04-07 00:00:00 SGT] [2004-04-07 00:00:00]
1081270800 [2004-04-07 01:00:00 SGT] [2004-04-07 00:00:00 +1 hour]
1081274400 [2004-04-07 02:00:00 SGT] [2004-04-07 00:00:00 +2 hour]
1081353600 [2004-04-08 00:00:00 SGT] [2004-04-07 00:00:00 +1 day]
1081353600 [2004-04-08 00:00:00 SGT] [2004-04-07 00:00:00 1 day]
1083081600 [2004-04-28 00:00:00 SGT] [2004-04-07 00:00:00 +21 days]
America/Sao_Paulo
1076810399 [2004-02-14 23:59:59 BRST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076810400 [2004-02-14 23:00:00 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076810401 [2004-02-14 23:00:01 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079492400 [2004-03-17 00:00:00 BRT] [2004-04-07 00:00:00 -21 days]
1080356400 [2004-03-27 00:00:00 BRT] [2004-04-07 00:00:00 11 days ago]
1080450000 [2004-03-28 02:00:00 BRT] [2004-04-07 00:00:00 -10 day +2 hours]
1081220400 [2004-04-06 00:00:00 BRT] [2004-04-07 00:00:00 -1 day]
1081306800 [2004-04-07 00:00:00 BRT] [2004-04-07 00:00:00]
1081310400 [2004-04-07 01:00:00 BRT] [2004-04-07 00:00:00 +1 hour]
1081314000 [2004-04-07 02:00:00 BRT] [2004-04-07 00:00:00 +2 hour]
1081393200 [2004-04-08 00:00:00 BRT] [2004-04-07 00:00:00 +1 day]
1081393200 [2004-04-08 00:00:00 BRT] [2004-04-07 00:00:00 1 day]
1083121200 [2004-04-28 00:00:00 BRT] [2004-04-07 00:00:00 +21 days]
---- ACTUAL OUTPUT
America/Chicago
1076824799 [2004-02-14 23:59:59 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076824800 [2004-02-15 00:00:00 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076824801 [2004-02-15 00:00:01 CST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079503200 [2004-03-17 00:00:00 CST] [2004-04-07 00:00:00 -21 days]
1080367200 [2004-03-27 00:00:00 CST] [2004-04-07 00:00:00 11 days ago]
1080460800 [2004-03-28 02:00:00 CST] [2004-04-07 00:00:00 -10 day +2 hours]
1081227600 [2004-04-06 00:00:00 CDT] [2004-04-07 00:00:00 -1 day]
1081314000 [2004-04-07 00:00:00 CDT] [2004-04-07 00:00:00]
1081317600 [2004-04-07 01:00:00 CDT] [2004-04-07 00:00:00 +1 hour]
1081321200 [2004-04-07 02:00:00 CDT] [2004-04-07 00:00:00 +2 hour]
1081400400 [2004-04-08 00:00:00 CDT] [2004-04-07 00:00:00 +1 day]
1081400400 [2004-04-08 00:00:00 CDT] [2004-04-07 00:00:00 1 day]
1083128400 [2004-04-28 00:00:00 CDT] [2004-04-07 00:00:00 +21 days]
Europe/Amsterdam
1076799599 [2004-02-14 23:59:59 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076799600 [2004-02-15 00:00:00 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076799601 [2004-02-15 00:00:01 CET] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079478000 [2004-03-17 00:00:00 CET] [2004-04-07 00:00:00 -21 days]
1080342000 [2004-03-27 00:00:00 CET] [2004-04-07 00:00:00 11 days ago]
-1 [1970-01-01 00:59:59 CET] [2004-04-07 00:00:00 -10 day +2 hours]
1081202400 [2004-04-06 00:00:00 CEST] [2004-04-07 00:00:00 -1 day]
1081288800 [2004-04-07 00:00:00 CEST] [2004-04-07 00:00:00]
1081292400 [2004-04-07 01:00:00 CEST] [2004-04-07 00:00:00 +1 hour]
1081296000 [2004-04-07 02:00:00 CEST] [2004-04-07 00:00:00 +2 hour]
1081375200 [2004-04-08 00:00:00 CEST] [2004-04-07 00:00:00 +1 day]
1081375200 [2004-04-08 00:00:00 CEST] [2004-04-07 00:00:00 1 day]
1083103200 [2004-04-28 00:00:00 CEST] [2004-04-07 00:00:00 +21 days]
Asia/Jerusalem
1076795999 [2004-02-14 23:59:59 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076796000 [2004-02-15 00:00:00 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076796001 [2004-02-15 00:00:01 IST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079474400 [2004-03-17 00:00:00 IST] [2004-04-07 00:00:00 -21 days]
1080338400 [2004-03-27 00:00:00 IST] [2004-04-07 00:00:00 11 days ago]
1080432000 [2004-03-28 02:00:00 IST] [2004-04-07 00:00:00 -10 day +2 hours]
1081202400 [2004-04-06 00:00:00 IST] [2004-04-07 00:00:00 -1 day]
1081288800 [2004-04-07 00:00:00 IST] [2004-04-07 00:00:00]
-1 [1970-01-01 01:59:59 IST] [2004-04-07 00:00:00 +1 hour]
1081292400 [2004-04-07 02:00:00 IDT] [2004-04-07 00:00:00 +2 hour]
1081371600 [2004-04-08 00:00:00 IDT] [2004-04-07 00:00:00 +1 day]
1081371600 [2004-04-08 00:00:00 IDT] [2004-04-07 00:00:00 1 day]
1083099600 [2004-04-28 00:00:00 IDT] [2004-04-07 00:00:00 +21 days]
Asia/Singapore
1076774399 [2004-02-14 23:59:59 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076774400 [2004-02-15 00:00:00 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076774401 [2004-02-15 00:00:01 SGT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079452800 [2004-03-17 00:00:00 SGT] [2004-04-07 00:00:00 -21 days]
1080316800 [2004-03-27 00:00:00 SGT] [2004-04-07 00:00:00 11 days ago]
1080410400 [2004-03-28 02:00:00 SGT] [2004-04-07 00:00:00 -10 day +2 hours]
1081180800 [2004-04-06 00:00:00 SGT] [2004-04-07 00:00:00 -1 day]
1081267200 [2004-04-07 00:00:00 SGT] [2004-04-07 00:00:00]
1081270800 [2004-04-07 01:00:00 SGT] [2004-04-07 00:00:00 +1 hour]
1081274400 [2004-04-07 02:00:00 SGT] [2004-04-07 00:00:00 +2 hour]
1081353600 [2004-04-08 00:00:00 SGT] [2004-04-07 00:00:00 +1 day]
1081353600 [2004-04-08 00:00:00 SGT] [2004-04-07 00:00:00 1 day]
1083081600 [2004-04-28 00:00:00 SGT] [2004-04-07 00:00:00 +21 days]
America/Sao_Paulo
1076813999 [2004-02-14 23:59:59 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
1076814000 [2004-02-15 00:00:00 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
1076814001 [2004-02-15 00:00:01 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
1079492400 [2004-03-17 00:00:00 BRT] [2004-04-07 00:00:00 -21 days]
1080356400 [2004-03-27 00:00:00 BRT] [2004-04-07 00:00:00 11 days ago]
1080450000 [2004-03-28 02:00:00 BRT] [2004-04-07 00:00:00 -10 day +2 hours]
1081220400 [2004-04-06 00:00:00 BRT] [2004-04-07 00:00:00 -1 day]
1081306800 [2004-04-07 00:00:00 BRT] [2004-04-07 00:00:00]
1081310400 [2004-04-07 01:00:00 BRT] [2004-04-07 00:00:00 +1 hour]
1081314000 [2004-04-07 02:00:00 BRT] [2004-04-07 00:00:00 +2 hour]
1081393200 [2004-04-08 00:00:00 BRT] [2004-04-07 00:00:00 +1 day]
1081393200 [2004-04-08 00:00:00 BRT] [2004-04-07 00:00:00 1 day]
1083121200 [2004-04-28 00:00:00 BRT] [2004-04-07 00:00:00 +21 days]
---- FAILED
========================================
========================================
022- 1080435600 [2004-03-28 03:00:00 CEST] [2004-04-07 00:00:00 -10 day +2 hours]
022+ -1 [1970-01-01 00:59:59 CET] [2004-04-07 00:00:00 -10 day +2 hours]
040- 1081292400 [2004-04-07 02:00:00 IDT] [2004-04-07 00:00:00 +1 hour]
040+ -1 [1970-01-01 01:59:59 IST] [2004-04-07 00:00:00 +1 hour]
062- 1076810399 [2004-02-14 23:59:59 BRST] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
062+ 1076813999 [2004-02-14 23:59:59 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +59 seconds]
063- 1076810400 [2004-02-14 23:00:00 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
063+ 1076814000 [2004-02-15 00:00:00 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +60 seconds]
064- 1076810401 [2004-02-14 23:00:01 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
064+ 1076814001 [2004-02-15 00:00:01 BRT] [2004-04-07 00:00:00 -2 months +7 days +23 hours +59 minutes +61 seconds]
========================================
========================================
========================================
========================================
BUILD ENVIRONMENT
========================================
========================================
OS:
FreeBSD - FreeBSD newt.alethe.net 4.8-STABLE FreeBSD 4.8-STABLE #0: Sun May i386
Automake:
Autoconf:
autoconf (GNU Autoconf) 2.53
Written by David J. MacKenzie and Akim Demaille.
Copyright 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Libtool:
ltmain.sh (GNU libtool) 1.4.3 (1.922.2.110 2002/10/23 01:39:54)
Compiler:
Using builtin specs.
gcc version 2.95.4 20020320 [FreeBSD]
Bison:
bison (GNU Bison) 1.75
Written by Robert Corbett and Richard Stallman.
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Libraries:
/usr/ports/lang/php4/work/php-4.3.6/sapi/cli/php:
libcrypto.so.3 => /usr/local/lib/libcrypto.so.3 (0x281c3000)
libssl.so.3 => /usr/local/lib/libssl.so.3 (0x282b0000)
libcrypt.so.2 => /usr/lib/libcrypt.so.2 (0x282de000)
libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x282f7000)
libexpat.so.5 => /usr/local/lib/libexpat.so.5 (0x283e5000)
libpq.so.2 => /usr/local/lib/libpq.so.2 (0x28402000)
libmysqlclient.so.12 => /usr/local/lib/mysql/libmysqlclient.so.12 (0x28413000)
libming.so.3 => /usr/local/lib/libming.so.3 (0x28433000)
libm.so.2 => /usr/lib/libm.so.2 (0x28466000)
libt1.so.5 => /usr/local/lib/libt1.so.5 (0x28481000)
libfreetype.so.9 => /usr/local/lib/libfreetype.so.9 (0x284cd000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28534000)
libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x2860d000)
libpng.so.5 => /usr/local/lib/libpng.so.5 (0x2861b000)
libz.so.2 => /usr/lib/libz.so.2 (0x2863e000)
libjpeg.so.9 => /usr/local/lib/libjpeg.so.9 (0x2864b000)
libbz2.so.1 => /usr/lib/libbz2.so.1 (0x28669000)
libc.so.4 => /usr/lib/libc.so.4 (0x28679000)
libXThrStub.so.6 => /usr/X11R6/lib/libXThrStub.so.6 (0x28712000)
User's E-mail: cognosco at tentacle dot net
========================================
========================================
PHPINFO
========================================
========================================
phpinfo()
PHP Version => 4.3.6
System => FreeBSD newt.alethe.net 4.8-STABLE FreeBSD 4.8-STABLE #0: Sun May i386
Build Date => May 5 2004 14:16:04
Configure Command => './configure' '--enable-versioning' '--enable-memory-limit' '--with-layout=GNU' '--with-zlib-dir=/usr' '--disable-all' '--with-regex=php' '--with-pear' '--with-bz2=/usr' '--enable-calendar' '--enable-ctype' '--with-gd' '--enable-gd-n
ative-ttf' '--enable-gd-jis-conv' '--with-freetype-dir=/usr/local' '--with-t1lib=/usr/local' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--with-xpm-dir=/usr/X11R6' '--with-iconv-dir=/usr/local' '--with-ming=/usr/local' '--with-mysql=/usr/loc
al' '--with-openssl-dir=/usr/local' '--with-openssl=/usr/local' '--enable-overload' '--with-pcre-regex=yes' '--enable-posix' '--with-pgsql=/usr/local' '--enable-session' '--enable-tokenizer' '--with-expat-dir=/usr/local' '--enable-xml' '--with-xmlrpc' '--
with-zlib=yes' '--with-apxs=/usr/local/sbin/apxs' '--prefix=/usr/local' 'i386-portbld-freebsd4.8'
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /usr/local/etc/php.ini
PHP API => 20020918
PHP Extension => 20020429
Zend Extension => 20021010
Debug Build => no
Thread Safety => disabled
Registered PHP Streams => php, http, ftp, https, ftps, compress.bzip2, compress.zlib
This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
________________________________________
_______________________________
Configuration
PHP Core
Directive => Local Value => Master Value
allow_call_time_pass_reference => Off => Off
allow_url_fopen => On => On
always_populate_raw_post_data => Off => Off
arg_separator.input => & => &
arg_separator.output => & => &
asp_tags => Off => Off
auto_append_file => no value => no value
auto_prepend_file => no value => no value
browscap => no value => no value
default_charset => no value => no value
default_mimetype => text/html => text/html
define_syslog_variables => Off => Off
disable_classes => no value => no value
disable_functions => no value => no value
display_errors => Off => Off
display_startup_errors => Off => Off
doc_root => no value => no value
docref_ext => no value => no value
docref_root => no value => no value
enable_dl => On => On
error_append_string => no value => no value
error_log => no value => no value
error_prepend_string => no value => no value
error_reporting => 2047 => 2047
expose_php => On => On
extension_dir => ./ => ./
file_uploads => On => On
gpc_order => GPC => GPC
highlight.bg => #FFFFFF => #FFFFFF
highlight.comment => #FF8000 => #FF8000
highlight.default => #0000BB => #0000BB
highlight.html => #000000 => #000000
highlight.keyword => #007700 => #007700
highlight.string => #DD0000 => #DD0000
html_errors => Off => On
ignore_repeated_errors => Off => Off
ignore_repeated_source => Off => Off
ignore_user_abort => Off => Off
implicit_flush => On => Off
include_path => .:/usr/local/share/pear => .:/usr/local/share/pear
log_errors => On => On
log_errors_max_len => 1024 => 1024
magic_quotes_gpc => Off => Off
magic_quotes_runtime => Off => Off
magic_quotes_sybase => Off => Off
max_execution_time => 0 => 30
max_input_time => 60 => 60
memory_limit => 8M => 8M
open_basedir => no value => no value
output_buffering => 0 => 4096
output_handler => no value => no value
post_max_size => 8M => 8M
precision => 14 => 14
register_argc_argv => On => Off
register_globals => Off => Off
report_memleaks => On => On
safe_mode => Off => Off
safe_mode_exec_dir => no value => no value
safe_mode_gid => Off => Off
safe_mode_include_dir => no value => no value
sendmail_from => me@localhost.com => me@localhost.com
sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i
serialize_precision => 100 => 100
short_open_tag => On => On
SMTP => localhost => localhost
smtp_port => 25 => 25
sql.safe_mode => Off => Off
track_errors => Off => Off
unserialize_callback_func => no value => no value
upload_max_filesize => 16M => 16M
upload_tmp_dir => no value => no value
user_dir => no value => no value
variables_order => GPCS => GPCS
xmlrpc_error_number => 0 => 0
xmlrpc_errors => Off => Off
y2k_compliance => On => On
bz2
BZip2 Support => Enabled
BZip2 Version => 1.0.2, 30-Dec-2001
calendar
Calendar support => enabled
ctype
ctype functions => enabled
gd
GD Support => enabled
GD Version => bundled (2.0.22 compatible)
FreeType Support => enabled
FreeType Linkage => with freetype
T1Lib Support => enabled
GIF Read Support => enabled
GIF Create Support => enabled
JPG Support => enabled
PNG Support => enabled
WBMP Support => enabled
XBM Support => enabled
JIS-mapped Japanese Font Support => enabled
ming
Ming SWF output library => enabled
Version => 0.2a
mysql
MySQL Support => enabled
Active Persistent Links => 0
Active Links => 0
Client API version => 4.0.18
MYSQL_MODULE_TYPE => external
MYSQL_SOCKET => /tmp/mysql.sock
MYSQL_INCLUDE => -I/usr/local/include/mysql
MYSQL_LIBS => -L/usr/local/lib/mysql -lmysqlclient
Directive => Local Value => Master Value
mysql.allow_persistent => On => On
mysql.connect_timeout => 60 => 60
mysql.default_host => no value => no value
mysql.default_password => no value => no value
mysql.default_port => no value => no value
mysql.default_socket => no value => no value
mysql.default_user => no value => no value
mysql.max_links => Unlimited => Unlimited
mysql.max_persistent => Unlimited => Unlimited
mysql.trace_mode => Off => Off
openssl
OpenSSL support => enabled
OpenSSL Version => OpenSSL 0.9.7d 17 Mar 2004
overload
User-Space Object Overloading Support => enabled
pcre
PCRE (Perl Compatible Regular Expressions) Support => enabled
PCRE Library Version => 4.5 01-December-2003
pgsql
PostgreSQL Support => enabled
PostgreSQL(libpq) Version => 7.2.4
Multibyte character support => enabled
SSL support => enabled
Active Persistent Links => 0
Active Links => 0
Directive => Local Value => Master Value
pgsql.allow_persistent => On => On
pgsql.auto_reset_persistent => Off => Off
pgsql.ignore_notice => Off => Off
pgsql.log_notice => Off => Off
pgsql.max_links => Unlimited => Unlimited
pgsql.max_persistent => Unlimited => Unlimited
posix
Revision => $Revision: 1.51.2.2 $
session
Session Support => enabled
Registered save handlers => files user
Directive => Local Value => Master Value
session.auto_start => On => On
session.bug_compat_42 => Off => Off
session.bug_compat_warn => On => On
session.cache_expire => 180 => 180
session.cache_limiter => nocache => nocache
session.cookie_domain => no value => no value
session.cookie_lifetime => 0 => 0
session.cookie_path => / => /
session.cookie_secure => Off => Off
session.entropy_file => no value => no value
session.entropy_length => 0 => 0
session.gc_divisor => 1000 => 1000
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 1 => 1
session.name => PHPSESSID => PHPSESSID
session.referer_check => no value => no value
session.save_handler => files => files
session.save_path => /tmp => /tmp
session.serialize_handler => php => php
session.use_cookies => On => On
session.use_only_cookies => Off => Off
session.use_trans_sid => Off => Off
standard
Regex Library => Bundled library enabled
Dynamic Library Support => enabled
Path to sendmail => /usr/sbin/sendmail -t -i
Directive => Local Value => Master Value
assert.active => 1 => 1
assert.bail => 0 => 0
assert.callback => no value => no value
assert.quiet_eval => 0 => 0
assert.warning => 1 => 1
auto_detect_line_endings => 0 => 0
default_socket_timeout => 60 => 60
safe_mode_allowed_env_vars => PHP_ => PHP_
safe_mode_protected_env_vars => LD_LIBRARY_PATH => LD_LIBRARY_PATH
url_rewriter.tags => a=href,area=href,frame=src,input=src,for
m=fakeentry => a=href,area=href,frame=src,input=src,for
m=fakeentry
user_agent => no value => no value
tokenizer
Tokenizer Support => enabled
xml
XML Support => active
XML Namespace Support => active
EXPAT Version => expat_1.95.7
xmlrpc
core library version => xmlrpc-epi v. 0.51
php extension version => 0.51
author => Dan Libby
homepage => http://xmlrpc-epi.sourceforge.net
open sourced by => Epinions.com
zlib
ZLib Support => enabled
Compiled Version => 1.1.4
Linked Version => 1.1.4
Directive => Local Value => Master Value
zlib.output_compression => Off => Off
zlib.output_compression_level => -1 => -1
zlib.output_handler => no value => no value
Additional Modules
Module Name
Environment
Variable => Value
CONTENT_TYPE =>
ARCH => i386
OPSYS => FreeBSD
MACHTYPE => i386
USER => root
OPENSSLINC => /usr/local/include
MAIL => /var/mail/root
CXXFLAGS => -O -pipe -I/usr/local/include/ -L/usr/local/lib/
MANPREFIX => /usr/local
SHLVL => 1
VENDOR => intel
X11BASE => /usr/X11R6
QUERY_STRING =>
OLDPWD => /usr/ports/lang/php4
HOME => /root
TEST_PHP_SRCDIR => /usr/ports/lang/php4/work/php-4.3.6
OPENSSLDIR => /usr/local/openssl
PKG_DBDIR => /usr/db/pkg
PAGER => less
LDFLAGS => -lcrypto -lssl -rpath=/usr/local/lib
BSD_INSTALL_SCRIPT => install -c -o root -g wheel -m 555
CONTENT_LENGTH =>
SCRIPT_FILENAME =>
PATH_TRANSLATED =>
GROUP => wheel
OSREL => 4.8
LOGNAME => root
LIBDIR => /usr/lib
TEST_PHP_EXECUTABLE => /usr/ports/lang/php4/work/php-4.3.6/sapi/cli/php
TERM => xterm-color
BLOCKSIZE => K
BSD_INSTALL_DATA => install -c -o root -g wheel -m 444
PORTOBJFORMAT => elf
PATH => /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/usr/local/java/bin
CFLAGS => -O -pipe -I/usr/local/include/ -L/usr/local/lib/
SYSTEMVERSION =>
OSVERSION => 480100
PREFIX => /usr/local
HOST => newt.alethe.net
SHELL => /bin/sh
REDIRECT_STATUS =>
OPENSSLBASE => /usr/local
LOCALBASE => /usr/local
REQUEST_METHOD =>
OSTYPE => FreeBSD
LC_ALL => en_US.ISO8859-1
PWD => /usr/ports/lang/php4/work/php-4.3.6
BSD_INSTALL_MAN => install -c -o root -g wheel -m 444
TZ => America/Los_Angeles
FTP_PASSIVE_MODE => YES
MOTIFLIB => -L/usr/X11R6/lib -lXm -lXp
CC => cc
HOSTTYPE => FreeBSD
EDITOR => vi
OPENSSLLIB => /usr/local/lib
BSD_INSTALL_PROGRAM => install -c -s -o root -g wheel -m 555
PHP Variables
Variable => Value
_SERVER["CONTENT_TYPE"] =>
_SERVER["ARCH"] => i386
_SERVER["OPSYS"] => FreeBSD
_SERVER["MACHTYPE"] => i386
_SERVER["USER"] => root
_SERVER["OPENSSLINC"] => /usr/local/include
_SERVER["MAIL"] => /var/mail/root
_SERVER["CXXFLAGS"] => -O -pipe -I/usr/local/include/ -L/usr/local/lib/
_SERVER["MANPREFIX"] => /usr/local
_SERVER["SHLVL"] => 1
_SERVER["VENDOR"] => intel
_SERVER["X11BASE"] => /usr/X11R6
_SERVER["QUERY_STRING"] =>
_SERVER["OLDPWD"] => /usr/ports/lang/php4
_SERVER["HOME"] => /root
_SERVER["TEST_PHP_SRCDIR"] => /usr/ports/lang/php4/work/php-4.3.6
_SERVER["OPENSSLDIR"] => /usr/local/openssl
_SERVER["PKG_DBDIR"] => /usr/db/pkg
_SERVER["PAGER"] => less
_SERVER["LDFLAGS"] => -lcrypto -lssl -rpath=/usr/local/lib
_SERVER["BSD_INSTALL_SCRIPT"] => install -c -o root -g wheel -m 555
_SERVER["CONTENT_LENGTH"] =>
_SERVER["SCRIPT_FILENAME"] =>
_SERVER["PATH_TRANSLATED"] =>
_SERVER["GROUP"] => wheel
_SERVER["OSREL"] => 4.8
_SERVER["LOGNAME"] => root
_SERVER["LIBDIR"] => /usr/lib
_SERVER["TEST_PHP_EXECUTABLE"] => /usr/ports/lang/php4/work/php-4.3.6/sapi/cli/php
_SERVER["TERM"] => xterm-color
_SERVER["BLOCKSIZE"] => K
_SERVER["BSD_INSTALL_DATA"] => install -c -o root -g wheel -m 444
_SERVER["PORTOBJFORMAT"] => elf
_SERVER["PATH"] => /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/usr/local/java/bin
_SERVER["CFLAGS"] => -O -pipe -I/usr/local/include/ -L/usr/local/lib/
_SERVER["SYSTEMVERSION"] =>
_SERVER["OSVERSION"] => 480100
_SERVER["PREFIX"] => /usr/local
_SERVER["HOST"] => newt.alethe.net
_SERVER["SHELL"] => /bin/sh
_SERVER["REDIRECT_STATUS"] =>
_SERVER["OPENSSLBASE"] => /usr/local
_SERVER["LOCALBASE"] => /usr/local
_SERVER["REQUEST_METHOD"] =>
_SERVER["OSTYPE"] => FreeBSD
_SERVER["LC_ALL"] => en_US.ISO8859-1
_SERVER["PWD"] => /usr/ports/lang/php4/work/php-4.3.6
_SERVER["BSD_INSTALL_MAN"] => install -c -o root -g wheel -m 444
_SERVER["TZ"] => America/Los_Angeles
_SERVER["FTP_PASSIVE_MODE"] => YES
_SERVER["MOTIFLIB"] => -L/usr/X11R6/lib -lXm -lXp
_SERVER["CC"] => cc
_SERVER["HOSTTYPE"] => FreeBSD
_SERVER["EDITOR"] => vi
_SERVER["OPENSSLLIB"] => /usr/local/lib
_SERVER["BSD_INSTALL_PROGRAM"] => install -c -s -o root -g wheel -m 555
_SERVER["PHP_SELF"] =>
_SERVER["SCRIPT_NAME"] =>
_SERVER["DOCUMENT_ROOT"] =>
_SERVER["argv"] => Array
(
)
_SERVER["argc"] => 0
PHP License
This program is free software; you can redistribute it and/or modify
it under the terms of the PHP License as published by the PHP Group
and included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If you did not receive a copy of the PHP license, or have any
questions about PHP licensing, please contact license@php.net.
|