phplib-trackers Mailing List for PHPLIB (Page 18)
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...> - 2002-02-26 06:27:30
|
Bugs item #480851, was opened at 2001-11-12 02:02 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 Category: None Group: None Status: Closed Resolution: Fixed Priority: 1 Submitted By: Nobody/Anonymous (nobody) >Assigned to: Richard Archer (richardarcher) Summary: Warnings in sessions.inc Initial Comment: Hi, I get following warnings on using "sessions.inc": Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 262 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 273 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 304 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 305 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 311 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 392 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 117 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 404 By the way, I have switched "allow_call_time_pass_reference" to true, but it doesn't matter. Can someone help me? ---------------------------------------------------------------------- >Comment By: Richard Archer (richardarcher) Date: 2002-02-25 22:27 Message: Logged In: YES user_id=279311 fixed. ---------------------------------------------------------------------- Comment By: Richard Archer (richardarcher) Date: 2002-02-25 22:26 Message: Logged In: YES user_id=279311 fixed. ---------------------------------------------------------------------- Comment By: Bogdan Stancescu (b_stancescu) Date: 2002-02-25 19:52 Message: Logged In: YES user_id=341406 I don't know if this is late - or if my solution is appropriate - but since the bug is still open... I included phplib in another GPL project and have to make sure it works properly for both PHP3 and PHP4 - especially 4.1.x. Since I noticed that the $str which causes all the trouble is only used in the session class, I created a class-wide "var $daString" and pass that - no references - instead of &$str. Seems to be working fine but I must say that I don't know if this is really a valid solution because I believe I use a rather old version of phplib, and it's quite crippled because I didn't need all the functionality included in the regular release. Hope this helps. ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 04:44 Message: Logged In: YES user_id=114789 NB: the previous comment stated that the error lies in file session.inc, while it actually is in user.inc: not the function definition (it is correct in 7.2d and later), but the function usage For a fix look at the patch I submitted (a new version of file user.inc) ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 02:52 Message: Logged In: YES user_id=114789 It depends on php.ini settings: in version 4.1 the default value for allow_call_time_pass_reference has been set to Off. If you have this, and error_reporting = ALL, you will get some warnings (the warnings come before PHPLIB sends the headers for caching, thus generating the rest of the warnings). The problem lies in calls to seesion- >serialize() in session.inc wrongly using &$string instead of $string. Short-term Solution: set allow_call_time_pass_reference to On Long-term Solution: fix damn calls to session->serialize() in session.inc (PLEEZ, SOMEONE WITH A CVS ACCOUNT DO THIS BEFORE 7.4 FINAL IS OUT)!!! ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2001-12-09 21:10 Message: Logged In: NO I am running into the same problem. Has anyone come up with a solution to this? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 |
|
From: <no...@so...> - 2002-02-26 06:26:52
|
Bugs item #480851, was opened at 2001-11-12 02:02 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed >Priority: 1 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Warnings in sessions.inc Initial Comment: Hi, I get following warnings on using "sessions.inc": Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 262 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 273 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 304 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 305 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 311 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 392 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 117 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 404 By the way, I have switched "allow_call_time_pass_reference" to true, but it doesn't matter. Can someone help me? ---------------------------------------------------------------------- >Comment By: Richard Archer (richardarcher) Date: 2002-02-25 22:26 Message: Logged In: YES user_id=279311 fixed. ---------------------------------------------------------------------- Comment By: Bogdan Stancescu (b_stancescu) Date: 2002-02-25 19:52 Message: Logged In: YES user_id=341406 I don't know if this is late - or if my solution is appropriate - but since the bug is still open... I included phplib in another GPL project and have to make sure it works properly for both PHP3 and PHP4 - especially 4.1.x. Since I noticed that the $str which causes all the trouble is only used in the session class, I created a class-wide "var $daString" and pass that - no references - instead of &$str. Seems to be working fine but I must say that I don't know if this is really a valid solution because I believe I use a rather old version of phplib, and it's quite crippled because I didn't need all the functionality included in the regular release. Hope this helps. ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 04:44 Message: Logged In: YES user_id=114789 NB: the previous comment stated that the error lies in file session.inc, while it actually is in user.inc: not the function definition (it is correct in 7.2d and later), but the function usage For a fix look at the patch I submitted (a new version of file user.inc) ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 02:52 Message: Logged In: YES user_id=114789 It depends on php.ini settings: in version 4.1 the default value for allow_call_time_pass_reference has been set to Off. If you have this, and error_reporting = ALL, you will get some warnings (the warnings come before PHPLIB sends the headers for caching, thus generating the rest of the warnings). The problem lies in calls to seesion- >serialize() in session.inc wrongly using &$string instead of $string. Short-term Solution: set allow_call_time_pass_reference to On Long-term Solution: fix damn calls to session->serialize() in session.inc (PLEEZ, SOMEONE WITH A CVS ACCOUNT DO THIS BEFORE 7.4 FINAL IS OUT)!!! ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2001-12-09 21:10 Message: Logged In: NO I am running into the same problem. Has anyone come up with a solution to this? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 |
|
From: <no...@so...> - 2002-02-26 05:34:28
|
Bugs item #469502, was opened at 2001-10-09 03:23 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=469502&group_id=31885 Category: None Group: None >Status: Closed >Resolution: Fixed >Priority: 1 Submitted By: Nobody/Anonymous (nobody) Assigned to: Richard Archer (richardarcher) Summary: False variable $handle in template.inc Initial Comment: In the function finish of the template class it must be $this->handle for correct function. ---------------------------------------------------------------------- >Comment By: Richard Archer (richardarcher) Date: 2002-02-25 21:34 Message: Logged In: YES user_id=279311 Already fixed. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=469502&group_id=31885 |
|
From: <no...@so...> - 2002-02-26 03:52:22
|
Bugs item #480851, was opened at 2001-11-12 02:02 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Warnings in sessions.inc Initial Comment: Hi, I get following warnings on using "sessions.inc": Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 262 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 273 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 304 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 305 Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in session.inc on line 311 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 392 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 117 Warning: Cannot add header information - headers already sent by (output started at session.inc:262) in session.inc on line 404 By the way, I have switched "allow_call_time_pass_reference" to true, but it doesn't matter. Can someone help me? ---------------------------------------------------------------------- Comment By: Bogdan Stancescu (b_stancescu) Date: 2002-02-25 19:52 Message: Logged In: YES user_id=341406 I don't know if this is late - or if my solution is appropriate - but since the bug is still open... I included phplib in another GPL project and have to make sure it works properly for both PHP3 and PHP4 - especially 4.1.x. Since I noticed that the $str which causes all the trouble is only used in the session class, I created a class-wide "var $daString" and pass that - no references - instead of &$str. Seems to be working fine but I must say that I don't know if this is really a valid solution because I believe I use a rather old version of phplib, and it's quite crippled because I didn't need all the functionality included in the regular release. Hope this helps. ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 04:44 Message: Logged In: YES user_id=114789 NB: the previous comment stated that the error lies in file session.inc, while it actually is in user.inc: not the function definition (it is correct in 7.2d and later), but the function usage For a fix look at the patch I submitted (a new version of file user.inc) ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 02:52 Message: Logged In: YES user_id=114789 It depends on php.ini settings: in version 4.1 the default value for allow_call_time_pass_reference has been set to Off. If you have this, and error_reporting = ALL, you will get some warnings (the warnings come before PHPLIB sends the headers for caching, thus generating the rest of the warnings). The problem lies in calls to seesion- >serialize() in session.inc wrongly using &$string instead of $string. Short-term Solution: set allow_call_time_pass_reference to On Long-term Solution: fix damn calls to session->serialize() in session.inc (PLEEZ, SOMEONE WITH A CVS ACCOUNT DO THIS BEFORE 7.4 FINAL IS OUT)!!! ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2001-12-09 21:10 Message: Logged In: NO I am running into the same problem. Has anyone come up with a solution to this? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 |
|
From: <no...@so...> - 2002-02-22 04:21:01
|
Support Requests item #521320, was opened at 2002-02-21 20:21 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=521320&group_id=31885 Category: Install Problem (example) Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: PHPLIB (is page_open() defined): No Initial Comment: Hi I am tryint to set up imp with my webserver, but I am getting a fatal error wheni am trying to run it. I have set up horde and imp following the instructions precisely. My test.php3 page in the horde directory lists the follwing configuration. Horde Versions Horde: 1.2.7 IMP: 2.2.7 PHP Version PHP Version: 3.0.18 PHP Major Version: 3 PHP Minor Version: 18 PHP Version Classification: release Your PHP3 version is recent. You should not have any problems with Horde modules, provided that you have applied the patch(es) described in horde/docs/INSTALL. PHP Module Capabilities IMAP Support: Yes LDAP Support: No MySQL Support: Yes PostgreSQL Support: No PHPLIB Configuration track_vars: Yes PHPLIB (is page_open() defined): No Miscellaneous PHP Settings magic_quotes_gpc set to Off: Yes magic_quotes_runtime set to Off: Yes I configured defaults.php3 with the setup.php3 script. The only thing I do not have is ispell (so I left it blank). Perhaps somewhat unusual also is that sendmail sits in an different location, in /usr/lib/, as I have everything running on an SGI Irix machine (Irix 6.5.04) - and that's where it puts sendmail. I also configured mysql with the script provided - the username exists, and the "horde" database has been created as per instructions. However, when I go to the http://www.fractalgraphics.com.au/horde/index.php3 page,(www.fractalgraphics.com.au is my webserver) then click on the imp link, I get the following error: Fatal error: Call to unsupported or undefined function page_open() in mailbox.php3 on line 104 If I have a look at the mailpox.php3 script, the function on p 104 is as follows: page_open(array('sess' => 'HordeSession')); I get the same error when I try to open newuser.php3, i.e. go to http://www.fractalgraphics.com.au/horde/newuser.php3 . The error points toline 19, whhere the same function is accessed: page_open(array('sess' => 'HordeSession')); I think the problem lies in the fact that my test.php3 script lists: PHPLIB (is page_open() defined): No But I can't seem to change it. Can anyone help me with this? Your help will be greatly appreciated. Thanks Hugo ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=521320&group_id=31885 |
|
From: <no...@so...> - 2002-02-22 01:45:54
|
Support Requests item #520989, was opened at 2002-02-21 06:42 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=520989&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: add a LINK to Docs Initial Comment: HELLO ... seems like it would be the intellegent thing to do... Please add http://milinux.net/docs/phpLib/documentation.html to the doc You can add html in the admin for docs .. I know, I have a project on here. ---------------------------------------------------------------------- >Comment By: Dr Tarique Sani (tarique) Date: 2002-02-21 17:45 Message: Logged In: YES user_id=269695 Hi we are trying to get something more intellegent started at http://www.sanisoft.com/phplib/ It is a manual with PHP.net style add comments etc, hopefully a link to this new manual will be in place soon ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=520989&group_id=31885 |
|
From: <no...@so...> - 2002-02-21 14:42:17
|
Support Requests item #520989, was opened at 2002-02-21 06:42 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=520989&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: add a LINK to Docs Initial Comment: HELLO ... seems like it would be the intellegent thing to do... Please add http://milinux.net/docs/phpLib/documentation.html to the doc You can add html in the admin for docs .. I know, I have a project on here. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=520989&group_id=31885 |
|
From: <no...@so...> - 2002-02-16 04:07:37
|
Patches item #518198, was opened at 2002-02-15 14:39 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=518198&group_id=31885 Category: Widget (example) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Erik Norvelle (enorvelle) Assigned to: Nobody/Anonymous (nobody) Summary: oc_time control submitted for oohforms Initial Comment: The attached file is an instantiation of a time input control, derived from oc_calendar by Sanisoft. ---------------------------------------------------------------------- >Comment By: Dr Tarique Sani (tarique) Date: 2002-02-15 20:07 Message: Logged In: YES user_id=269695 Cool!! and thanks will put it in the next release?!! of of_cal BUT of_cal is not a part of PHPlib as yet :-) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=518198&group_id=31885 |
|
From: <no...@so...> - 2002-02-16 00:36:22
|
Support Requests item #518253, was opened at 2002-02-15 16:36 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=518253&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Suggestion: more shortcuts Initial Comment: Having used PHPlib since v5? I 'd like to suggest some addtions to the DB wrapper classes since I use these almost exclusively now: /* query->fetch, a onestep shortcut for single row queries returns the number of rows so it can be used in if statements */ function qf($query) { $this->query($query); $this->next_record(); return $this->num_rows(); } /* query - make the query, return the number of rows */ function numquery($query) { $this->query($query); return $this->num_rows(); } /* returns number of affected rows after the query is made can be used in if statements true/false */ function truequery($query) { $this->query($query); return $this->affected_rows(); } /* returns queryID after the query is made - Silent suppresses any mysql errors */ function silentquery($query) { $this->Silent=1; $this->query($query); return $this->Query_ID(); } /* returns queryID affter the query is made */ function lockquery($query, $table) { $this->lock($table); $this->query($query); $this->unlock(); return $this->affected_rows(); } /* returns the 'fetch array' row - handy for sinlge 'gets'*/ function getRow() { $this->next_record(); return $this->Record; } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=518253&group_id=31885 |
|
From: <no...@so...> - 2002-02-15 22:39:46
|
Patches item #518198, was opened at 2002-02-15 14:39 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=518198&group_id=31885 Category: Widget (example) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Erik Norvelle (enorvelle) Assigned to: Nobody/Anonymous (nobody) Summary: oc_time control submitted for oohforms Initial Comment: The attached file is an instantiation of a time input control, derived from oc_calendar by Sanisoft. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=518198&group_id=31885 |
|
From: <no...@so...> - 2002-02-13 20:43:26
|
Feature Requests item #517158, was opened at 2002-02-13 12:43 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=517158&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: lock out after 3 failed login attempts Initial Comment: reposted from a Christopher Vrooman email: >P.P.S. Have you ever seen a post to the MARC PHPLIB mailing list or elsewhere, >about how to incorporate a "3 strikes, yer locked out" to the login process? I >assume there would have to be an extra table to keep track of who has logged >in/tried to login, how long since the last attempt and how many attempts in a >given period of time, etc. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=517158&group_id=31885 |
|
From: <no...@so...> - 2002-02-13 20:32:32
|
Bugs item #517150, was opened at 2002-02-13 12:32 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=517150&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: prepend.php3 needs ct_cookie mods Initial Comment: Reposted from an email from Christopher Vrooman: And in the prepend.php3 v1.21, I modified the following: # Do you intend to use custom session save handlers (PHP4 only) ? if ($_PHPLIB["version"] == "4") { // do not change this # set to true or false $_PHPLIB["custom_save_handler"] = true; to include the following: # Load CT_Cookie classes require($_PHPLIB["libdir"] . "/ct_cookie.inc"); require($_PHPLIB["libdir"] . "/ct_cookie_rc4.inc"); because they were necessary for the new Cookie classes in local4.inc. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=517150&group_id=31885 |
|
From: <no...@so...> - 2002-02-12 23:11:14
|
Feature Requests item #516694, was opened at 2002-02-12 15:11 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=516694&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: nextid() missing in db_odbc.inc Initial Comment: Hello, I use PHPShop which uses PHPLIB and the nextid() database function. But that function is not present in the db_odbc.inc. And therefore there lacks a bit of functionality. I've seen the problem is noticed before, but I haven't found a solution. Is there one (besides writing it myself :)? grtz, Mark ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=516694&group_id=31885 |
|
From: <no...@so...> - 2002-02-11 09:50:51
|
Feature Requests item #515817, was opened at 2002-02-11 01:50 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=515817&group_id=31885 Category: None Group: Next Release (example) Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: save array's pointer Initial Comment: I came across the problem that I had a persistent array defined in one of my classes. After reloading the page it's pointer position was of course resetted to the beginning of the array. For convenience it would be good if PHPLIB would be able also to save the current index in the array and restore it after reinitilization of the session. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=515817&group_id=31885 |
|
From: <no...@so...> - 2002-02-06 21:56:56
|
Bugs item #513977, was opened at 2002-02-06 13:56 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=513977&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: devel prepend.php3 inconsistency Initial Comment: Problems reported via email by Christopher Vrooman: In prepend.php3 (v 1.21) of the development CVS: 1. you added: # Load session management class require($_PHPLIB["libdir"] . "session/session" . $_PHPLIB["version"] . (($_PHPLIB ["custom_save_handler"]) ? "_custom" : "") . ".inc"); but isn't the PHPLIB v3 session file usually "session.inc", so shouldn't it be something like: require($_PHPLIB["libdir"] . "session/session" . . (($_PHPLIB["version"] == "4") ? "4" : "") . (($_PHPLIB ["custom_save_handler"]) ? "_custom" : "") . ".inc"); to avoid a filename change?? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=513977&group_id=31885 |
|
From: <no...@so...> - 2002-02-06 20:11:28
|
Bugs item #513935, was opened at 2002-02-06 12:11 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=513935&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Richard Archer (richardarcher) Assigned to: Nobody/Anonymous (nobody) Summary: local.inc inconsistencies Initial Comment: Problems reported via email by Christopher Vrooman: I noticed a couple of things when I compared the latest local.inc (v 1.8 2001/08/29 12:34:47 richardarcher) and local4.inc (v 1.3 2001/09/01 07:09:42 richardarcher) that are in the PHPLIB CVS: 1. in local.inc a check of: if ($this->db->num_rows() == 0) { return false; } was added to the classes Example_Challenge_Auth and Example_Challenge_Crypt_Auth; however, local4.inc does not have this check in any of the Auth classes. 2. in the Example_Challenge_Crypt_Auth of local4.inc the new variable "$passenc" was added, but is not used anywhere in the class, and 3. shouldn't the comment from this comment read something like, ## This provides access for "CRCloginform.ihtml" (and if so, then the same change should be made to the stable local.inc v1.8 in the CVS): if(isset($username)) { $this->auth["uname"]=$username; ## This provides access for "loginform.ihtml" } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=513935&group_id=31885 |
|
From: <no...@so...> - 2002-02-04 16:03:12
|
Bugs item #512813, was opened at 2002-02-04 08:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=512813&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: db_pgsql.inc : obsolete function name Initial Comment: db_pgsql.inc is using function names that will be obsolete in php version 4.2.0 http://www.php.net/manual/en/ref.pgsql.php PostgreSQL function names will be changed in 4.2.0 release to confirm current coding standard. Most of new names will have additional under score(s), e.g. pg_lo_open(). Some functions are renamed to different name for consistency. e.g. pg_exec() to pg_query(). Older names may be used in 4.2.0 and a few releases from 4.2.0, but they may be deleted in the future. CVS version has new function names. Example 1. Function names changed OLD NAME NEW NAME pg_exec pg_query getlastoid pg_last_oid pg_cmdtuples pg_affected_rows pg_errormessage pg_last_error pg_numrows pg_num_rows pg_numfields pg_num_fields pg_fieldname pg_field_name pg_fieldsize pg_field_size pg_fieldtype pg_field_type pg_fieldnum pg_field_num pg_fieldprtlen pg_field_prtlen pg_fieldisnull pg_field_is_null pg_freeresult pg_free_result pg_result pg_fetch_result pg_loreadall pg_lo_read_all pg_locreate pg_lo_create pg_lounlink pg_lo_unlink pg_loopen pg_lo_open pg_loclose pg_lo_close pg_loread pg_lo_read pg_lowrite pg_lo_write pg_loimport pg_lo_import pg_loexport pg_lo_export Obsolete pg_connect()/pg_pconnect() syntax will be depreciated to support async connect feature in the future. Please use connection string for pg_connect() and pg_pconnect(). ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=512813&group_id=31885 |
|
From: <no...@so...> - 2002-02-01 09:56:11
|
Bugs item #511639, was opened at 2002-02-01 01:56 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=511639&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Rune Kallhovd (choozo) Assigned to: Nobody/Anonymous (nobody) Summary: ORA-00997 (phplib 7.4 pr1) Initial Comment: PHP 4.0.4.pl1, Oracle 8.1.7 When setting up the basics and accessing the ../pages/index.php3 file, I get the following error: "Warning: OCIStmtExecute: ORA-00997: illegal use of LONG datatype in /usr/local/apache/php/db_oci8.inc on line 69" "ORA-00997: illegal use of LONG datatype Query :"select count(*) from active_sessions where val='RXhhbXBsZV9TZXNzaW9uOiR0aGlzLT5pbiA9ICcwJzsgJHRoaXMtPnB0ID0gYXJyYXkoKTsgJHRoaXMtPnB0WydzJ10gPSAnMSc7ICRHTE9CQUxTWydzJ10gPSAnMSc7IA==' and changed='20020201104234' and sid='e4b3d2080c584cb390de104b299ff54a' and name='Example_Session'" ----------------------------------------- Editing the function 'ac_store()' ($squery) in ct_sql.inc as follows 'fixes' this, but this is probably not what one want to do?: (removed "val='%s'" from the 'sprintf()', and commented '$str'.) $squery = sprintf("select count(*) from %s where changed='%s' and sid='%s' and name='%s'", $this->database_table, # $str, $now, $id, $name); ------------------------------------------ Cheers :-) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=511639&group_id=31885 |
|
From: <no...@so...> - 2002-01-31 22:47:01
|
Patches item #511458, was opened at 2002-01-31 14:46 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=511458&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Thomas L. Kjeldsen (tlk) Assigned to: Nobody/Anonymous (nobody) Summary: Patches for phplib7.2c Initial Comment: Hi, about one year ago I made some patches for phplib7.2c which makes the code in db_mysql.inc more robust. I believe the patches are still relevant for phplib7.2d. A description of the problem and patches is available at http://intra.dipcard.com/people/tlk/phplib/ regards, Thomas L. Kjeldsen ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=511458&group_id=31885 |
|
From: <no...@so...> - 2002-01-26 12:21:50
|
Patches item #508534, was opened at 2002-01-25 09:06 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=508534&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dieter Steinwedel (dsteinwe) Assigned to: Nobody/Anonymous (nobody) Summary: Patch for auth/session with post_vars Initial Comment: This patch fixes the problem with post_vars in auth and session. This patch is developed for "phplib-7.2d". Have fun with it ... Dieter ---------------------------------------------------------------------- >Comment By: Dieter Steinwedel (dsteinwe) Date: 2002-01-26 04:21 Message: Logged In: YES user_id=373951 I have fixed in the new version some bugs ... ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=508534&group_id=31885 |
|
From: <no...@so...> - 2002-01-25 17:06:59
|
Patches item #508534, was opened at 2002-01-25 09:06 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=508534&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dieter Steinwedel (dsteinwe) Assigned to: Nobody/Anonymous (nobody) Summary: Patch for auth/session with post_vars Initial Comment: This patch fixes the problem with post_vars in auth and session. This patch is developed for "phplib-7.2d". Have fun with it ... Dieter ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=508534&group_id=31885 |
|
From: <no...@so...> - 2002-01-25 17:05:52
|
Patches item #472136, was opened at 2001-10-17 09:41 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=472136&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Oliver Kurz (ojk) Assigned to: Nobody/Anonymous (nobody) Summary: Bug in session.inc with HTTP_POST_VARS Initial Comment: We realized in one of our projects a little "bug" in the file session.inc (PHPLib 7.2c). If you set the mode to cookie and the fallbackmode to get and then sending the session__id with post through a html-form, than your session is lost. The reason is, the function release_token only looks in $HTTP_GET_VARS for the session_id, if fallbackmode is necessary. But not in $HTTP_POST_VARS, but this could also be possible, if no cookies are allowed and the session_id is transmitted by a hidden form field. We fixed the function as you can see at the bottom of this text. Now the function looks for fallbackmode also in the post-vars for the session_id, if it isn't set in cookie- or get-vars. // Fix function release_token(){ // Old Version // global $HTTP_COOKIE_VARS, $HTTP_GET_VARS, $HTTP_HOST, $HTTPS; // New Version global $HTTP_COOKIE_VARS, $HTTP_GET_VARS, $HTTP_HOST, $HTTPS, $HTTP_POST_VARS; if ( isset($this->fallback_mode) && ( "get" == $this->fallback_mode ) && ( "cookie" == $this->mode ) && ( ! isset($HTTP_COOKIE_VARS[$this->name]) ) ) { // Old Version // if ( isset($HTTP_GET_VARS[$this->name]) ) { // New Version if ( isset($HTTP_GET_VARS[$this->name]) || isset($HTTP_POST_VARS[$this->name]) ) { $this->mode = $this->fallback_mode; } else { header("Status: 302 Moved Temporarily"); $this->get_id($sid); $this->mode = $this->fallback_mode; if( isset($HTTPS) && $HTTPS == 'on' ){ ## You will need to fix suexec as well, if you use Apache and CGI PHP $PROTOCOL='https'; } else { $PROTOCOL='http'; } header("Location: ". $PROTOCOL. "://".$HTTP_HOST.$this->self_url()); exit; } } } ---------------------------------------------------------------------- Comment By: Dieter Steinwedel (dsteinwe) Date: 2002-01-25 09:05 Message: Logged In: YES user_id=373951 I have written a patch for submitted post_vars. If you are interested in, look for the title "Patch for auth/session with post_vars". Dieter ---------------------------------------------------------------------- Comment By: Gaetano Giunta (ggiunta) Date: 2002-01-10 04:28 Message: Logged In: YES user_id=114789 Well, fallback='get' gives you a clear idea of supported fallback methods. Instead of adding post support this way another (cleaner ?) idea would be to add a 'post' and 'both' options to fallback. The main problem is that there is no easy way in PHP to send POST data to a web page (there are hacks involving use of sockets, but I dunno if they're bulletproof). And the id data needs to be sent not only expressly by the user when clicking on forms with hidden fields, but also by phplib itself (e.g. it adds it to urls with sess_url()). My best guess is the POST only method is completely impracticable, so maybe your hack is the best option in the end) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=472136&group_id=31885 |
|
From: <no...@so...> - 2002-01-24 14:20:07
|
Support Requests item #507969, was opened at 2002-01-24 06:20 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=507969&group_id=31885 Category: Install Problem (example) Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: install phplib with PHP Version 4.0.6 ? Initial Comment: In the install-documentation PHP3 is required. How can i use, respectivly install PHPlib on SunSolaris with PHP4.0.6 ? I've tried a lot of time, but it doesn't work. Please answer to hub...@ao... ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=507969&group_id=31885 |
|
From: <no...@so...> - 2002-01-24 14:18:20
|
Support Requests item #507967, was opened at 2002-01-24 06:18 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=507967&group_id=31885 Category: Install Problem (example) Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: install phplib witrh PHP Version 4.0.6 ? Initial Comment: In the install-documentation PHP3 is required. How can i use, respectivly install PHPlib on SunSolaris with PHP4.0.6 ? I've tried a lot of time, but it doesn't work. Please help me. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=507967&group_id=31885 |
|
From: <no...@so...> - 2002-01-21 00:25:37
|
Bugs item #500340, was opened at 2002-01-07 02:50 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=500340&group_id=31885 Category: None Group: None >Status: Closed Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: bug in function query() in db_mysql.inc Initial Comment: function query() in db_mysql.inc dont take care of the Record field. a line shoul be added : $this->Record = @mysql_fetch_array($this->Query_ID); cheers, miko_il ---------------------------------------------------------------------- >Comment By: nathan hruby (nhruby) Date: 2002-01-20 16:25 Message: Logged In: YES user_id=19736 Closign bug per user request. reminder, Users can close bugs as well :) ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2002-01-18 13:57 Message: Logged In: NO THIS IS WRONG!!! Please ignore it and remove it ASAP. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=500340&group_id=31885 |