phplib-trackers Mailing List for PHPLIB (Page 21)
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-11-22 09:52:11
|
Patches item #484497, was opened at 2001-11-22 01:52 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=484497&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dieter Steinwedel (dsteinwe) Assigned to: Nobody/Anonymous (nobody) Summary: bug patched in page.inc Initial Comment: I've fixed the global vars using ... (changes are marked with "ds1" function page_close() { if (isset($feature["sess"])) global $sess; ## ds1: conditional global if (isset($feature["user"])) global $user; ## ds1: conditional global if (isset($sess)) { $sess->freeze(); if (isset($user)) { $user->freeze(); } } } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=484497&group_id=31885 |
|
From: <no...@so...> - 2001-11-16 04:05:09
|
Bugs item #482372, was opened at 2001-11-15 20:05 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=482372&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Russell McOrmond (russellmcormond) Assigned to: Nobody/Anonymous (nobody) Summary: problem in page.inc Initial Comment: phplib-7.2d , 7.2c (I upgraded to see if the upgrade would fix the problem) I just upgraded from PHP 4.0.4 to php 4.0.6 On my PHPSlash site I would get the following on the bottom of each page: Fatal error: Call to a member function on a non-object in /usr/share/phplib/page.inc on line 68 I am temporarily using the following patch which masks the problem, but I suspect something else is not properly happening at this point. --- page.inc Wed Jul 12 14:22:35 2000 +++ /usr/share/phplib/page.inc Thu Nov 15 22:54:52 2001 @@ -64,7 +64,7 @@ if (isset($sess)) { $sess->freeze(); - if (isset($user)) { + if (isset($user) && isset($user->freeze)) { $user->freeze(); } } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=482372&group_id=31885 |
|
From: <no...@so...> - 2001-11-12 10:13:36
|
Patches item #480854, was opened at 2001-11-12 02:13 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480854&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Dieter Steinwedel (dsteinwe) Assigned to: Nobody/Anonymous (nobody) Summary: some bugs fixed in "db_oracle.inc" Initial Comment: Hi, I hope, that is the right section ... There are some small mods in the attached file (search for "DS1"). I hope you are interested in. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480854&group_id=31885 |
|
From: <no...@so...> - 2001-11-12 10:02:58
|
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? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480851&group_id=31885 |
|
From: <no...@so...> - 2001-11-11 22:03:35
|
Patches item #480713, was opened at 2001-11-11 13:55 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480713&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Julian Ladisch (jula) Assigned to: Nobody/Anonymous (nobody) >Summary: template.inc: Backslashes disappear Initial Comment: Backslashes used in value strings of set_var() disappear. Example: $t = new Template(); $t->set_var("field", "\\\\"); // four escaped backslashes $t->set_var("area", "{field}"); $t->set_var("test", "{out}"); echo "field = " . $t->get_var("field"); echo ", area = " . $t->parse("out", "area"); echo ", test = " . $t->parse("out", "test"); Result is field = \\, area = \, test = \ It should be field = \\, area = \\, test = \\ Reason is preg_replace (pattern, replacement, subject). It needs preg_quote() for parameter pattern, which is already done, but also escaping of any backslash in parameter replacement, which is done for special cases (\[0-9], \[0-9]) only. The attached diff provides a patch for this. It is even faster because of using str_replace() instead of preg_replace(). This also fixes the following error: $t = new Template(); $t->set_var("foo", "\1 \1"); echo htmlspecialchars($t->get("foo")); Result is "\1 \1", it should be "\1 \1". ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480713&group_id=31885 |
|
From: <no...@so...> - 2001-11-11 21:55:19
|
Patches item #480713, was opened at 2001-11-11 13:55 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480713&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Julian Ladisch (jula) Assigned to: Nobody/Anonymous (nobody) Summary: templace.inc: Backslashes disappear Initial Comment: Backslashes used in value strings of set_var() disappear. Example: $t = new Template(); $t->set_var("field", "\\\\"); // four escaped backslashes $t->set_var("area", "{field}"); $t->set_var("test", "{out}"); echo "field = " . $t->get_var("field"); echo ", area = " . $t->parse("out", "area"); echo ", test = " . $t->parse("out", "test"); Result is field = \\, area = \, test = \ It should be field = \\, area = \\, test = \\ Reason is preg_replace (pattern, replacement, subject). It needs preg_quote() for parameter pattern, which is already done, but also escaping of any backslash in parameter replacement, which is done for special cases (\[0-9], \[0-9]) only. The attached diff provides a patch for this. It is even faster because of using str_replace() instead of preg_replace(). This also fixes the following error: $t = new Template(); $t->set_var("foo", "\1 \1"); echo htmlspecialchars($t->get("foo")); Result is "\1 \1", it should be "\1 \1". ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=480713&group_id=31885 |
|
From: <no...@so...> - 2001-11-10 18:48:04
|
Bugs item #480403, was opened at 2001-11-10 10:48 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480403&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Allan Høiberg (allanh) Assigned to: Nobody/Anonymous (nobody) Summary: prepend.php3 needs change in quickstart Initial Comment: In version 7.2d prepend.php has the line $_PHPLIB["libdir"] = "/home/nathan/webDevel/php-lib- stable/php/"; which effectively stops every PHP page from working once the quick guide has been followed. The line needs to be changed to whatever the include directory created in step 1 was called. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=480403&group_id=31885 |
|
From: <no...@so...> - 2001-11-07 03:47:49
|
Bugs item #478978, was opened at 2001-11-06 19:47 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=478978&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: function affected_rows() and ODBC Initial Comment: If you say "Many ODBC drivers don't support odbc_num_rows() on SELECT statements" -msaccess97 is one- why you use this function to set affected_rows()?? Will be better use your class function num_rows()? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=478978&group_id=31885 |
|
From: <no...@so...> - 2001-11-06 16:56:42
|
Feature Requests item #478769, was opened at 2001-11-06 08:56 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=478769&group_id=31885 Category: None Group: Next Release (example) Status: Open Priority: 5 Submitted By: Jacob Hanson (jacdx) Assigned to: Nobody/Anonymous (nobody) Summary: tpl_form help functionality Initial Comment: Right now, you only receive help messages if you try to submit a value that is illegal. I'd like to see the ability to have javascript alert popups for help (by clicking on an icon, for example) or a custom help popup window using an .ihtml. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=478769&group_id=31885 |
|
From: <no...@so...> - 2001-11-05 04:03:09
|
Bugs item #478215, was opened at 2001-11-04 20:03 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=478215&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: cache-headers bug Initial Comment: Pages are cached using Konqueror or Opera(linux). I use this headers to resolve it: header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-modified: ".gmdate("D, d M Y H:i:s")." GMT"); header("Cache-Control: no-store, no-cache, must-revalidate, proxy-revalidate, post-check=0, pre-check=0, max-age=0, s-maxage=0"); header("Pragma: no-cache"); max-age=0 and s-maxage=0 resolve the problem. Others can be usefull in other cases. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=478215&group_id=31885 |
|
From: Ronald W. <of...@we...> - 2001-10-27 16:40:33
|
Hi All, how and where to I change the mode of the login or registration ? If a user like to register, he should go to auth_registerform. If he is allready register, he have to go to auth_loginform, for this reason I have to change the mode log or reg. Thank you in advance Ronald |
|
From: <no...@so...> - 2001-10-24 14:59:45
|
Support Requests item #474492, was opened at 2001-10-24 07:59 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=474492&group_id=31885 Category: None Group: None Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: phplib, pear db, adodb benchmarks Initial Comment: Comparing ADODB with PhpLib, PEAR DB, Metabase and Native MySQL Benchmark was to select 82 rows from the products table 200 times. The tests were repeated 5 times. Connection times were excluded from the benchmark. Lower values are better. All numbers are in seconds. MySQL 1.12 1.12 1.17 1.15 1.14 ADODB 1.43 1.47 1.47 1.44 1.45 PhpLib 1.53 1.62 1.64 1.64 1.57 PEAR 2.91 2.90 2.85 2.83 2.84 (fetchInto) PEAR 3.14 3.13 3.22 3.12 3.16 (fetchRow) M'base 4.51 4.55 4.46 4.54 4.52 (numeric columns) M'base 4.99 4.72 4.71 4.71 4.72 (named columns) Average Overhead MySQL 1.14 - ADODB 1.45 27% PhpLib 1.60 40% PEAR 2.87 152% (fetchInto) PEAR 3.15 176% (fetchRow) M'base 2.52 296% (numeric cols) M'base 4.77 318% (named cols) I was still surprised at how slow some of the libraries were, even though a code inspection had already given strong hints on the expected performance of the class libraries. Methodology Results on Pentium 800 Mhz running Win 2000, PHP 4.0.6 ISAPI on IIS5 with MySQL 3.23, all on the same machine. PEAR DB from PHP 4.0.6, ADODB 1.40, PhpLib 7.2d and Metabase 1.57 were used. Code revised on 22nd October 2001. PhpLib tests added 24th October 2001. Source code for these tests is available from http://phplens.com/lens/adodb/ - John Lim ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403612&aid=474492&group_id=31885 |
|
From: <no...@so...> - 2001-10-24 14:29:30
|
Bugs item #474480, was opened at 2001-10-24 07:29 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474480&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jaros³aw Zabie³³o (zbiru) Assigned to: Nobody/Anonymous (nobody) Summary: db_mssql.inc and metadata() another bug Initial Comment: If you are using MS-SQL7, you should delete from function metadata() the following line: $this->free_result(); Without this, you can get sth like that: Warning: Supplied argument is not a valid MS SQL- result resource in I:\phplib\db_mssql.inc on line 46 ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474480&group_id=31885 |
|
From: <no...@so...> - 2001-10-24 14:24:11
|
Bugs item #474478, was opened at 2001-10-24 07:24 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474478&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jaros³aw Zabie³³o (zbiru) Assigned to: Nobody/Anonymous (nobody) Summary: ac_store.inc and MS-SQL7 Initial Comment: I changed "val='%s'" to "val like '%'" because MSSQL7 cannot use variable='values' as a part of WHERE subquery. val should be also defined as TEXT, not VARCHAR(xxx). Open file ac.store.inc and change old: $squery = sprintf("select count(*) from %s where val = '%s' and changed='%s' and sid='%s' and name='%s'", new: $squery = sprintf("select count(*) from %s where val like '%s' and changed='%s' and sid='%s' and name='%s'", ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474478&group_id=31885 |
|
From: <no...@so...> - 2001-10-24 14:18:21
|
Bugs item #474476, was opened at 2001-10-24 07:18 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474476&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jaros³aw Zabie³³o (zbiru) Assigned to: Nobody/Anonymous (nobody) Summary: stuff/create_database.mssql7 attached Initial Comment: /* Author: Jaros³aw Zabie³³o, web...@wa..., 2001-10-24 Gererated from server MS-SQL7 SP3 by Enterprise Manager */ /****** Object: Table [dbo].[active_sessions] Script Date: 2001-10-23 23:14:28 ******/ if exists (select * from sysobjects where id = object_id(N'[dbo].[active_sessions]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[active_sessions] GO /****** Object: Table [dbo]. [active_sessions_split] Script Date: 2001-10-23 23:14:28 ******/ if exists (select * from sysobjects where id = object_id(N'[dbo].[active_sessions_split]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[active_sessions_split] GO /****** Object: Table [dbo].[auth_user] Script Date: 2001-10-23 23:14:28 ******/ if exists (select * from sysobjects where id = object_id(N'[dbo].[auth_user]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[auth_user] GO /****** Object: Table [dbo].[auth_user_md5] Script Date: 2001-10-23 23:14:28 ******/ if exists (select * from sysobjects where id = object_id(N'[dbo].[auth_user_md5]') and OBJECTPROPERTY (id, N'IsUserTable') = 1) drop table [dbo].[auth_user_md5] GO /****** Object: Table [dbo].[db_sequence] Script Date: 2001-10-23 23:14:28 ******/ if exists (select * from sysobjects where id = object_id(N'[dbo].[db_sequence]') and OBJECTPROPERTY (id, N'IsUserTable') = 1) drop table [dbo].[db_sequence] GO /****** Object: User dbo Script Date: 2001-10-23 23:14:28 ******/ /****** Object: Table [dbo].[active_sessions] Script Date: 2001-10-23 23:14:29 ******/ CREATE TABLE [dbo].[active_sessions] ( [sid] [varchar] (32) NOT NULL , [name] [varchar] (32) NOT NULL , [val] [text] NULL , [changed] [varchar] (14) NOT NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo]. [active_sessions_split] Script Date: 2001-10-23 23:14:29 ******/ CREATE TABLE [dbo].[active_sessions_split] ( [ct_sid] [varchar] (32) NOT NULL , [ct_name] [varchar] (32) NOT NULL , [ct_pos] [varchar] (6) NOT NULL , [ct_val] [text] NULL , [ct_changed] [varchar] (14) NOT NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[auth_user] Script Date: 2001-10-23 23:14:30 ******/ CREATE TABLE [dbo].[auth_user] ( [user_id] [varchar] (32) NOT NULL , [username] [varchar] (32) NOT NULL , [password] [varchar] (32) NOT NULL , [perms] [varchar] (255) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[auth_user_md5] Script Date: 2001-10-23 23:14:30 ******/ CREATE TABLE [dbo].[auth_user_md5] ( [user_id] [varchar] (32) NOT NULL , [username] [varchar] (32) NOT NULL , [password] [varchar] (32) NOT NULL , [perms] [varchar] (255) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[db_sequence] Script Date: 2001-10-23 23:14:30 ******/ CREATE TABLE [dbo].[db_sequence] ( [seq_name] [varchar] (127) NOT NULL , [nextid] [int] NOT NULL ) ON [PRIMARY] GO ALTER TABLE [dbo].[active_sessions] WITH NOCHECK ADD CONSTRAINT [DF_active_sessions_changed] DEFAULT ('') FOR [changed], CONSTRAINT [PK_active_sessions] PRIMARY KEY NONCLUSTERED ( [name], [sid] ) ON [PRIMARY] GO ALTER TABLE [dbo].[active_sessions_split] WITH NOCHECK ADD CONSTRAINT [DF_active_sessions_split_ct_sid] DEFAULT ('') FOR [ct_sid], CONSTRAINT [DF_active_sessions_split_ct_name] DEFAULT ('') FOR [ct_name], CONSTRAINT [DF_active_sessions_split_ct_pos] DEFAULT ('') FOR [ct_pos], CONSTRAINT [DF_active_sessions_split_ct_changed] DEFAULT ('') FOR [ct_changed], CONSTRAINT [PK_active_sessions_split] PRIMARY KEY NONCLUSTERED ( [ct_name], [ct_sid], [ct_pos] ) ON [PRIMARY] GO ALTER TABLE [dbo].[auth_user] WITH NOCHECK ADD CONSTRAINT [DF_auth_user_user_id] DEFAULT ('') FOR [user_id], CONSTRAINT [DF_auth_user_username] DEFAULT ('') FOR [username], CONSTRAINT [DF_auth_user_password] DEFAULT ('') FOR [password], CONSTRAINT [PK_auth_user] PRIMARY KEY NONCLUSTERED ( [user_id] ) ON [PRIMARY] GO ALTER TABLE [dbo].[auth_user_md5] WITH NOCHECK ADD CONSTRAINT [DF_auth_user_md5_user_id] DEFAULT ('') FOR [user_id], CONSTRAINT [DF_auth_user_md5_username] DEFAULT ('') FOR [username], CONSTRAINT [DF_auth_user_md5_password] DEFAULT ('') FOR [password], CONSTRAINT [PK_auth_user_md5] PRIMARY KEY NONCLUSTERED ( [user_id] ) ON [PRIMARY] GO ALTER TABLE [dbo].[db_sequence] WITH NOCHECK ADD CONSTRAINT [DF_db_sequence_seq_name] DEFAULT ('') FOR [seq_name], CONSTRAINT [DF_db_sequence_nextid] DEFAULT (0) FOR [nextid], CONSTRAINT [PK_db_sequence] PRIMARY KEY NONCLUSTERED ( [seq_name] ) ON [PRIMARY] GO CREATE INDEX [IX_active_sessions] ON [dbo]. [active_sessions]([changed]) ON [PRIMARY] GO CREATE INDEX [IX_active_sessions_split] ON [dbo]. [active_sessions_split]([ct_changed]) ON [PRIMARY] GO CREATE UNIQUE INDEX [IX_auth_user] ON [dbo]. [auth_user]([username]) ON [PRIMARY] GO CREATE UNIQUE INDEX [IX_auth_user_md5] ON [dbo]. [auth_user_md5]([username]) ON [PRIMARY] GO GRANT SELECT , UPDATE , INSERT , DELETE ON [dbo]. [active_sessions] TO [public] GO GRANT SELECT , UPDATE , INSERT , DELETE ON [dbo]. [active_sessions_split] TO [public] GO GRANT SELECT , UPDATE , INSERT , DELETE ON [dbo]. [auth_user] TO [public] GO GRANT SELECT , UPDATE , INSERT , DELETE ON [dbo]. [auth_user_md5] TO [public] GO GRANT SELECT , UPDATE , INSERT , DELETE ON [dbo]. [db_sequence] TO [public] GO INSERT INTO dbo.auth_user VALUES ('c14cbf141ab1b7cd009356f555b607dc','kris','test','admi n'); INSERT INTO dbo.auth_user_md5 VALUES ('c14cbf141ab1b7cd009356f555b607dc','kris','098f6bcd462 1d373cade4e832627b4f6','admin'); ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474476&group_id=31885 |
|
From: <no...@so...> - 2001-10-24 14:17:10
|
Bugs item #474475, was opened at 2001-10-24 07:17 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474475&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jaros³aw Zabie³³o (zbiru) Assigned to: Nobody/Anonymous (nobody) Summary: stuff/create_database.mssql7 Initial Comment: I prepared the correct SQL code for MS-SQL7. It should be launched with eg. Query Analizer. It contains definitions of some tables which should be created if you want to use phplib width MS-SQL7. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474475&group_id=31885 |
|
From: <no...@so...> - 2001-10-24 14:12:48
|
Bugs item #474472, was opened at 2001-10-24 07:12 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474472&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jaros³aw Zabie³³o (zbiru) Assigned to: Nobody/Anonymous (nobody) Summary: db_mssql.inc metadata() contains bugs Initial Comment: There is a bug in function metadata() in file db_mssql.inc (phplib 7.2d). In the line $info = mssql_fetch_field($id, $i); the $info variable is not array. It is object. So you should change code from: $res[$i]["name"] = $info["name"]; $res[$i]["len"] = $info["max_length"]; $res[$i]["flags"] = $info["numeric"]; to: $res[$i]["name"] = $info->{name}; $res[$i]["len"] = $info->{max_length}; $res[$i]["flags"] = $info->{numeric}; ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=474472&group_id=31885 |
|
From: <no...@so...> - 2001-10-20 17:27:14
|
Bugs item #473198, was opened at 2001-10-20 10:27 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=473198&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Andreas Stein (steinas) Assigned to: Nobody/Anonymous (nobody) Summary: oohforms falg_ instead of flag_ Initial Comment: file: oohforms.inc method: get_element() line: 278 should be flag_name... instead of falg_ ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=473198&group_id=31885 |
|
From: <no...@so...> - 2001-10-20 17:25:22
|
Bugs item #473196, was opened at 2001-10-20 10:25 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=473196&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Andreas Stein (steinas) Assigned to: Nobody/Anonymous (nobody) Summary: ac_get_lock() and MySQL Initial Comment: file: ct_sql.inc object: ct_sql method: ac_get_lock() function ac_get_lock() { if ( "" != $this->database_lock_semaphore ) { $query = sprintf("SELECT get_lock('%s')", $this- >database_lock_semaphore); while ( ! $this->db->query($query)) { $t = 1 + time(); while ( $t > time() ) { ; } } } } for MySQL the SQL statement should be: "SELECT GET_LOCK(str, time_out)" or "SELECT GET_LOCK(str, 0)" $db->query($query) is always true even if lock state is false ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=473196&group_id=31885 |
|
From: <no...@so...> - 2001-10-17 20:55:09
|
Feature Requests item #472240, was opened at 2001-10-17 13:55 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=472240&group_id=31885 Category: None Group: Next Release (example) Status: Open Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: product variations on the cart Initial Comment: the ability to have multiple variations on the somewhat basic cart class would be useful. eg guitar left handed maple neck 6 string also a checkout class would be good. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403614&aid=472240&group_id=31885 |
|
From: <no...@so...> - 2001-10-17 16:41:51
|
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; } } } ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=472136&group_id=31885 |
|
From: <no...@so...> - 2001-10-14 19:46:39
|
Bugs item #471094, was opened at 2001-10-14 12:46 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=471094&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Change file extensions Initial Comment: I think you should change all extensions from .php3 to .php which is much more standard. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=471094&group_id=31885 |
|
From: <no...@so...> - 2001-10-14 19:45:19
|
Bugs item #471092, was opened at 2001-10-14 12:45 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=471092&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Update Quick Start Initial Comment: In section 1.3 of the documentation it says: VERY IMPORTANT NOTE: This is a quick installation guide to get you started if you have an installation where you control the web server, PHP interpreter and database server completely. They are not suitable for a web hosting setup where you have only limited to no control over the installation. The fact is that if you're using apache, you can use .htaccess to change practically all settings of the php.ini file: #not php.ini, but you can set php extensions AddType application/x-httpd-php .phtml .php .inc .ihtml #PHP Options (only examples) php_value auto_prepend_file local.inc php_value include_path .:/usr/local/lib/php:/home/user/www/phplib php_flag asp_tags On So as long as you have access to everything else, this isn't a problem. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=471092&group_id=31885 |
|
From: <no...@so...> - 2001-10-14 16:38:52
|
Patches item #471048, was opened at 2001-10-14 09:38 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=471048&group_id=31885 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jens S. Benecke (jensb) Assigned to: Nobody/Anonymous (nobody) Summary: Javascript breakage patch in of_text.inc Initial Comment: I have changed the Javascript validation to use the form element NAMES instead of numbers because a) some browsers tend to name things differently than others in JS b) this breaks when you freeze() and unfreeze() random elements, at least it seems this way c) I felt like it. ;) Here's the patch: ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403613&aid=471048&group_id=31885 |
|
From: <no...@so...> - 2001-10-13 12:23:32
|
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: Open Resolution: None Priority: 5 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. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=403611&aid=469502&group_id=31885 |