phplib-trackers Mailing List for PHPLIB (Page 26)
Brought to you by:
nhruby,
richardarcher
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(91) |
Sep
(12) |
Oct
(26) |
Nov
(16) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(37) |
Feb
(22) |
Mar
(39) |
Apr
(74) |
May
(14) |
Jun
(17) |
Jul
(81) |
Aug
(32) |
Sep
(28) |
Oct
(18) |
Nov
(8) |
Dec
(6) |
2003 |
Jan
(6) |
Feb
(11) |
Mar
(5) |
Apr
(4) |
May
(6) |
Jun
(6) |
Jul
(5) |
Aug
(3) |
Sep
(8) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2004 |
Jan
(1) |
Feb
|
Mar
(3) |
Apr
(8) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
(2) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2006 |
Jan
|
Feb
(2) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(41) |
Nov
|
Dec
(78) |
From: <no...@so...> - 2001-08-13 22:40:20
|
Bugs item #450638, was opened at 2001-08-13 15:40 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450638&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: prob with session.inc/get_id() Initial Comment: This is Nathan's bug report from the NetUSE bugs forum. -- auto_init appears to always be loaded, whether the session is new or not. Fix: if ( "" == $id ) { $newid=true; $id = $this->that->ac_newid(md5(uniqid($this->magic)), $this->name); } else { $this->in = true; } in the get_id() method of the Session class where it is determined that the session is indeed new. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450638&group_id=31885 |
From: <no...@so...> - 2001-08-13 02:07:22
|
Bugs item #450387, was opened at 2001-08-12 19:07 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450387&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: Some files contain DOS line breaks Initial Comment: Some files in the CVS tree contain DOS line breaks. Should be converted to native text files. Some of these may have been fixed already: php-lib/pages/form/templates/form_main.tpl php-lib/php/ext/integratedtemplate.inc php-lib/php/ext/integratedtemplateextension.inc php-lib/php/form/Attic/assistant.inc php-lib/php/session/README_session4_custom php-lib/php/ct_dbm.inc php-lib/stuff/create_database.msaccess95 php-lib/CHANGES php-lib-stable/php/ct_dbm.inc php-lib-stable/stuff/create_database.msaccess95 ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450387&group_id=31885 |
From: <no...@so...> - 2001-08-12 23:01:32
|
Bugs item #450359, was opened at 2001-08-12 16:01 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450359&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Richard Archer (richardarcher) Summary: error handling in db_mysql.inc, line 312 Initial Comment: A change to merge in from the -devel tree. Execution should not continue after these errors. @@ -310,10 +254,14 @@ $this->connect(); $id = @mysql_list_fields($this->Database, $table); - if (!$id) + if (!$id) { $this->halt("Metadata query failed."); + return false; + } } else { $id = $this->Query_ID; - if (!$id) + if (!$id) { $this->halt("No query specified."); + return false; + } } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450359&group_id=31885 |
From: <no...@so...> - 2001-08-12 22:52:22
|
Bugs item #450358, was opened at 2001-08-12 15:52 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450358&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Richard Archer (richardarcher) Summary: error reporting in db_mysql.inc, line 80 Initial Comment: This is a change to merge in from the devel tree. @@ -78,5 +48,5 @@ if (!@mysql_select_db($Database,$this->Link_ID)) { - $this->halt("cannot use database ".$this->Database); + $this->halt("cannot use database ".$Database); return 0; } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450358&group_id=31885 |
From: <no...@so...> - 2001-08-12 09:30:01
|
Bugs item #446455, was opened at 2001-07-31 09:15 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=446455&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Failures with register_globals off Initial Comment: PHPLib should work when register_globals is off. Below is a work around, I added this to prepend.php3 // If we set "phpflags register_globals off" in .htaccess then the variable name // space can not be spammed by rogue clients. As a side effect certain PHPLib // scripts fail. Poor engineering on thier part. Below are the variables that // are need, that I have tracked down so far. These can be retrieved via the // HTTP_SERVER_VARS array. I may have missed some. HTTPS is suspect because I // don't have a secure server to test against. Here I make my own versions // globaly available from the HTTP_SERVER_VARS array $HTTPS = $HTTP_SERVER_VARS["HTTPS"]; $HTTP_HOST = $HTTP_SERVER_VARS["HTTP_HOST"]; $HTTP_REFERER = $HTTP_SERVER_VARS["HTTP_REFERER"]; $HTTP_USER_AGENT = $HTTP_SERVER_VARS ["HTTP_USER_AGENT"]; $PHP_SELF = $HTTP_SERVER_VARS["PHP_SELF"]; $QUERY_STRING = $HTTP_SERVER_VARS["QUERY_STRING"]; $REMOTE_ADDR = $HTTP_SERVER_VARS["REMOTE_ADDR"]; ---------------------------------------------------------------------- >Comment By: Richard Archer (richardarcher) Date: 2001-08-12 02:30 Message: Logged In: YES user_id=279311 This is a very effective short term fix, but wouldn't it be better in the long term to change all the references to these variables to use the HTTP_(SERVER|GET|POST)_VARS arrays? If the user prefers to have register_globals off it's a little rude of us to define all these globals :) It certainly runs into the problem of overlapping name-space. ---------------------------------------------------------------------- Comment By: Bob Gorman (rag56) Date: 2001-08-02 07:23 Message: Logged In: YES user_id=285806 I will code up fixes for this issue and submit them if you want me to. JLMK. ---------------------------------------------------------------------- Comment By: Bob Gorman (rag56) Date: 2001-08-02 07:21 Message: Logged In: YES user_id=285806 This also has ramifactions in local.inc. In Example_Auth the function auth_validatelogin() needs to declare and extract $username and $password from $HTTP_POST_VARS. For example: function auth_validatelogin() { global $username, $password; global $HTTP_POST_VARS; $username = $HTTP_POST_VARS["username"]; $password = $HTTP_POST_VARS["password"]; ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=446455&group_id=31885 |
From: <no...@so...> - 2001-08-12 09:23:06
|
Bugs item #445393, was opened at 2001-07-27 18:36 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=445393&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 1 Submitted By: Chris Johnson (chaska) Assigned to: Nobody/Anonymous (nobody) Summary: error handling problem in db_mysql.inc Initial Comment: db_mysql.inc -- lock() has the following error handling code: if (!$res) { $this->halt("lock($table, $mode) failed."); return 0; } This doesn't work well when $table is an array. ---------------------------------------------------------------------- >Comment By: Richard Archer (richardarcher) Date: 2001-08-12 02:23 Message: Logged In: YES user_id=279311 Perhaps the best way to approach this problem would be to change the error handling to: $this->halt("lock() failed."); This is the same behaviour as the following function unlock(). ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=445393&group_id=31885 |
From: <no...@so...> - 2001-08-12 05:24:06
|
Bugs item #447530, was opened at 2001-08-03 10:31 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447530&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Bob Gorman (rag56) Assigned to: Richard Archer (richardarcher) Summary: auth.inc, line 235 Initial Comment: PHPLib 7.2d auth.inc Line 235 Is: $this->auth["uid"] Should be: isset($this->auth["uid"]) && $this->auth["uid"] ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447530&group_id=31885 |
From: <no...@so...> - 2001-08-12 05:24:06
|
Bugs item #447526, was opened at 2001-08-03 10:19 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447526&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Bob Gorman (rag56) Assigned to: Richard Archer (richardarcher) Summary: db_mysql.inc, line 227 and 231 Initial Comment: PHPLib 7.2d db_mysql.inc Line 227 and 231 Original Source: function f($Name) { return $this->Record[$Name]; } function p($Name) { print $this->Record[$Name]; } Patched Source: function f($Name) { if (isset($this->Record[$Name])) return $this->Record [$Name]; } function p($Name) { if (isset($this->Record[$Name])) print $this->Record [$Name]; } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447526&group_id=31885 |
From: <no...@so...> - 2001-08-12 05:24:05
|
Bugs item #447487, was opened at 2001-08-03 08:42 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447487&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Bob Gorman (rag56) Assigned to: Richard Archer (richardarcher) Summary: session.inc, line 68 Initial Comment: PHPLib 7.2d session.inc Line 68 Is: if ($this->pt[$name] == true) Should be: if (!empty($this->pt[$name]) and $this->pt[$name] == true) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447487&group_id=31885 |
From: <no...@so...> - 2001-08-12 05:24:05
|
Bugs item #447479, was opened at 2001-08-03 08:24 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447479&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Bob Gorman (rag56) Assigned to: Richard Archer (richardarcher) Summary: auth.inc, line 52 Initial Comment: PHPLib 7.2d auth.inc Line 52 Is: if (! $this->in) { Should be: if (!isset($this->in) or !$this->in) { ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447479&group_id=31885 |
From: <no...@so...> - 2001-08-12 01:11:29
|
Bugs item #447530, was opened at 2001-08-03 10:31 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447530&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bob Gorman (rag56) >Assigned to: Richard Archer (richardarcher) Summary: auth.inc, line 235 Initial Comment: PHPLib 7.2d auth.inc Line 235 Is: $this->auth["uid"] Should be: isset($this->auth["uid"]) && $this->auth["uid"] ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447530&group_id=31885 |
From: <no...@so...> - 2001-08-12 01:11:29
|
Bugs item #447526, was opened at 2001-08-03 10:19 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447526&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bob Gorman (rag56) >Assigned to: Richard Archer (richardarcher) Summary: db_mysql.inc, line 227 and 231 Initial Comment: PHPLib 7.2d db_mysql.inc Line 227 and 231 Original Source: function f($Name) { return $this->Record[$Name]; } function p($Name) { print $this->Record[$Name]; } Patched Source: function f($Name) { if (isset($this->Record[$Name])) return $this->Record [$Name]; } function p($Name) { if (isset($this->Record[$Name])) print $this->Record [$Name]; } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447526&group_id=31885 |
From: <no...@so...> - 2001-08-12 01:11:29
|
Bugs item #447487, was opened at 2001-08-03 08:42 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447487&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bob Gorman (rag56) >Assigned to: Richard Archer (richardarcher) Summary: session.inc, line 68 Initial Comment: PHPLib 7.2d session.inc Line 68 Is: if ($this->pt[$name] == true) Should be: if (!empty($this->pt[$name]) and $this->pt[$name] == true) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447487&group_id=31885 |
From: <no...@so...> - 2001-08-12 01:11:29
|
Bugs item #447479, was opened at 2001-08-03 08:24 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447479&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Bob Gorman (rag56) >Assigned to: Richard Archer (richardarcher) Summary: auth.inc, line 52 Initial Comment: PHPLib 7.2d auth.inc Line 52 Is: if (! $this->in) { Should be: if (!isset($this->in) or !$this->in) { ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=447479&group_id=31885 |