You can subscribe to this list here.
| 2002 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
(3) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(14) |
Dec
(5) |
| 2004 |
Jan
(11) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
(11) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
| 2005 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
(2) |
Feb
(4) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(1) |
Jul
(7) |
Aug
(2) |
Sep
(9) |
Oct
(10) |
Nov
(24) |
Dec
(31) |
| 2009 |
Jan
(12) |
Feb
(10) |
Mar
(16) |
Apr
(15) |
May
(34) |
Jun
(19) |
Jul
(30) |
Aug
(7) |
Sep
(3) |
Oct
|
Nov
(4) |
Dec
(14) |
| 2010 |
Jan
(5) |
Feb
(6) |
Mar
(4) |
Apr
|
May
(1) |
Jun
(4) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
| 2012 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: SourceForge.net <no...@so...> - 2003-10-23 02:50:21
|
Bugs item #828587, was opened at 2003-10-23 01:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=828587&group_id=6121 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Rafael Vuijk (darkfader) Assigned to: Nobody/Anonymous (nobody) Summary: DB table locks not freed ? (MySQL) Initial Comment: I'm using MySQL + phpwiki-1.3.4 and after loading a few pages, it comes with this error: " lib/WikiDB/backend/PearDB.php:681: Fatal[256]: wikidb_backend_mysql: fatal database error DB Error: unknown error (LOCK TABLES page WRITE,version WRITE,link WRITE,recent WRITE,nonempty WRITE [nativecode=1044 ** Access denied for user: 'wikiuser@localhost' to database 'phpwiki']) " ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=828587&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-10-12 17:27:57
|
Bugs item #822268, was opened at 2003-10-12 19:27 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=822268&group_id=6121 Category: Postgresql Group: None Status: Open Resolution: None Priority: 5 Submitted By: Gerard H. Pille (ghp) Assigned to: Nobody/Anonymous (nobody) Summary: FullTextSearch fails to find words with uppercase characters Initial Comment: Hallo, phpwiki's fulltextsearch seems to have trouble finding names. I have eg. a page with info about "author Axel Bouts". I can't find Axel, I can't find Bouts, but there is no problem with author. The pages are stored in a 7.2.1 postgresql. Thanks, Gerard ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=822268&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-06-20 17:37:35
|
Bugs item #758044, was opened at 2003-06-20 19:37 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=758044&group_id=6121 Category: version 1.3.x (experimental) Group: PHP error Status: Open Resolution: None Priority: 5 Submitted By: Martin Baute (devsolar) Assigned to: Nobody/Anonymous (nobody) Summary: Plugin UnfoldSubpages does not sort (includes fix) Initial Comment: The plugin UnfoldSubpages advertises support for sorting, but never evaluates the $sort parameter. The code was in there in version 1.3 of phpwiki/lib/plugin/UnfoldSubpages.php, but commented out - sorting thus never worked. About line 129 of file version 1.7, I exchanged $subpages = array_reverse($subpages); with if ($sort != 'asc') { $subpages = array_reverse($subpages); } Worked for me. Hint: $sortby, another parameter to the plugin, also never gets evaluated... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=758044&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-06-10 21:58:15
|
Bugs item #752218, was opened at 2003-06-10 14:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=752218&group_id=6121 Category: All databases Group: User Authentication Status: Open Resolution: None Priority: 5 Submitted By: John Sechrest (sechrest) Assigned to: Nobody/Anonymous (nobody) Summary: User authentication sends passwd in clear text Initial Comment: It looks to me like the process of taking a username and then the password sends that password back to the server in clear text. Either the server needs to collect the password in SSL , or it needs to use the userAuth process to collect and encrypt the password at the browser. when I added user authentication to the old version of php wiki for myself, I used the browser to do the encryption using this library: <?PHP /// Auth example /// how to do authentication /// Assume a database like this: /// create table members ( /// member_id int auto_increment primary key, /// firstname varchar(40), /// lastname varchar(40), /// address varchar(60), /// city varchar(40), /// State varchar(16), /// zip varchar(16), /// Phone varchar(16), /// bphone varchar(16), /// email varchar(60), /// login varchar(16), /// passwd varchar(16), /// team int, /// admin int, /// comment varchar(255) /// ); /// Note, this need to add encryption on the passwd, which it does not do. /// Constants for the php database access /// auth code /// started from http://www.zend.com/zend/tut/authentication.php#Heading1 1 $auth = false; // Assume user is not authenticated if (isset( $PHP_AUTH_USER ) && isset($PHP_AUTH_PW)) { // Connect to MySQL mysql_connect( $authhost, $authdblogin, $authdbpasswd ) or die ( 'Unable to connect to server.' ); // Select database on MySQL server mysql_select_db( $authdatabase ) or die ( 'Unable to select database.' ); // Formulate the query $authsql = "SELECT * FROM $authtable WHERE login = '$PHP_AUTH_USER' AND passwd = '$PHP_AUTH_PW'"; // Execute the query and put results in $result $authresult = mysql_query( $authsql ) or die ( 'Unable to execute query for login.' ); // Get number of rows in $result. $authnum = mysql_numrows( $authresult ); if ( $authnum != 0 ) { // A matching row was found - the user is authenticated. for ($i = 0; $i < $authnum; $i++) { $admin = mysql_result($authresult, $i, "admin"); /// debug echo " admin = $admin\n" ; } $auth = true; } } if ( ! $auth ) { header( 'WWW-Authenticate: Basic realm=$wwwrealm' ); header( 'HTTP/1.0 401 Unauthorized' ); echo 'Authorization Required.'; echo ' You need to register'; exit; } ?> I am getting feedback that I need to fix this security hole for our use of the wiki. What will it take for that to happen? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=752218&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-06-02 22:11:32
|
Bugs item #747790, was opened at 2003-06-02 15:11 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=747790&group_id=6121 Category: version 1.3.x (experimental) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Michael van Dam (mvandam) Assigned to: Nobody/Anonymous (nobody) Summary: Loading (from zip dump) has problems if files have %20 (spc) Initial Comment: I am using CVS snapshot of phpwiki from last week. When trying to load in my wiki from a zip dump file into a freshly "deflowered" wiki, I get a couple of problems. First: any *new* file (in the dump, but not in the standard PgSrc), comes up as an edit conflict. There are buttons for "Merge" or "Load Anyways". Second: any file containg space (saved with %20) and presumably other special chars cannot be found by the system. Here is the error message: Loading '/tmp/wiki/Content Management' lib/FileFinder.php:143: Fatal[256]: /tmp/wiki/Content Management: file not found -------------------------------------------------------------------------------- Fatal PhpWiki Error lib/FileFinder.php:143: Fatal[256]: /tmp/wiki/Content Management: file not found What I had to do was: Unzip the zip file, and specify the DIRECTORY as source for dump files. Rename all files containing %20 to contain an actual SPACE instead. Then it works as expected. Seems like FileFinder is a bit broken. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=747790&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-05-30 22:44:16
|
Bugs item #746383, was opened at 2003-05-30 15:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=746383&group_id=6121 Category: Postgresql Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Max. db connections exceeded (open db connects not closing) Initial Comment: Maximum Database Connections Exceeded (open db connections to a PostgreSQL db not closing) As listed on the PHPWiki KnownBugs page (http://phpwiki.sourceforge.net/phpwiki/KnownBugs), like Thomas Wittich, I am also experiencing an issue with open db connections. My configuration consists of the following: * Windows XP SP1 with all updates thru 30 May 2003 * Apache for Windows v1.3.27 (binary installer) * PHP v4.3.2 (Apache ISAPI module php4apache.dll), complete with PEAR installed via go_pear.bat, etc. Some of the relevant settings of the php.ini file include safe_mode = on register_globals = off magic_quotes_gpc = on magic_quotes_runtime = on include_path = ".;C:\Inetpub\PHP\pear" * PostgreSQL v7.3.2-2 running under Cygwin 1.3.22-1 with CygIPC 1.14-1 (latest and greatest) * PHPWiki v1.3.4 (have NOT yet resorted to CVS snapshots, but notice nothing in ?ChangeLog to indicate fix), configured to use PostgreSQL db. Once I adjusted PHPWiki index.php by setting "define('DEFAULT_LANGUAGE', '');"--the default setting wreaked havoc on building the initial pages for some reason--all installation went well, and everything appeared to work just fine. HOWEVER, rather quickly I found that I was receiving a "max_connections exceeded" message in my PHPWiki pages. In test mode, with just myself going through pages, I would hit this after about 15 minutes of use, and then I would have to either shutdown/restart Apache or PostgreSQL to clear things. By default, PostgreSQL's configuration is to permit 32 connections maximum (with 2 held in reserve for administrative use). I adjusted the appropriate PostgreSQL configuration file (/usr/share/postgresql/data/postgresql.conf) and quadrupled max_connections from 32 to 128 (also making sure to adjust shared_buffers accordingly). However, I wanted to make sure this was not simply delaying the inevitable. So I started monitoring the TCP/IP connections via the 'netstat' command, and like Thomas Wittich before me, I found that once opened, database connections were not being closed...EVER. The list of connections continued to grow. I even left things idle for more than an hour (lunch has its purposes), but none of the connections cleared. Is there something that can be done to force the connections to close? I have not found any settings in PostgreSQL to force closing connections after a certain amount of idle time, so I am hoping there is such an ability from the client side (i.e., in PHPWiki). Whether in PEAR DB or PHPWiki itself, something needs to be adjusted to make connections close. I even tried copying over the newest PEAR code (DB v1.4.0), but to no avail. I recall reading somewhere in the Wiki code that persistent connections were the default for now. I'm not sure if/how that plays into things, as my understanding of a persistent connection is that queries would all use the SAME connection, not continually create new ones. Anyway, any insight into this would be greatly appreciated. --FrankSeesink | 30 May 2003 fr...@ma... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=746383&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-05-29 17:26:06
|
Bugs item #745640, was opened at 2003-05-29 10:26 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=745640&group_id=6121 Category: None Group: Wiki syntax Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: charset encoding (with Hungarian) Initial Comment: We have various issue with phpwiki regarding encoding set. The 'õ' and 'û' characters came back as "&#<number>;" These are the ones which different form latin-1 in latin-2, and used in Hungarian. We use 1.3.5pre from cvs and we have also the same issue with stable version. Is it a known issue ? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=745640&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-03-27 06:42:54
|
Bugs item #710555, was opened at 2003-03-26 22:56 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=710555&group_id=6121 Category: MySQL Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Installation Problem - Blank screen Initial Comment: I tried tp install from scratch the last version of PhpWiki downloaded from this site. I configured the application using the configurator and renamed the index-user file accordingly. I have created a MySQL db, created the tables and got ... a blank screen. I surely made a mistake somewhere but have no idea where I could have done it. I understand from reading the forum that I am not the first one to experience this problem, but I did not succeed to trace the fix. Many thanks in advance for any help. Best regards. Riskmanager ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=710555&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-03-16 09:50:53
|
Bugs item #704423, was opened at 2003-03-16 02:03 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=704423&group_id=6121 Category: None Group: Wiki syntax Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Non-linked parser bug Initial Comment: The parser doesn't handle escaped words that start with a single cap followed by a valid linkable reference. For example: ~CMyClassName doesn't work. ~CoMyClassName works. A workaround does exist: ~C~MyClassName ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=704423&group_id=6121 |
|
From: SourceForge.net <no...@so...> - 2003-03-10 18:14:38
|
Bugs item #701003, was opened at 2003-03-10 10:25 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=701003&group_id=6121 Category: version 1.3.x (experimental) Group: None Status: Open Resolution: None Priority: 5 Submitted By: Robby Russell (matchboy) Assigned to: Nobody/Anonymous (nobody) Summary: themes problem Initial Comment: Where would I find the proper function/php code that is adding these forward slashes? <link rel="stylesheet" title="PhpWiki" type="text/css" charset="iso-8859-1" href="//themes/default/phpwiki.css" /> (notice the // before themes?) it's doing that on all things related to the theme... such as graphics, stylesheets, etc. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106121&aid=701003&group_id=6121 |
|
From: Jean-Philippe G. <jpg...@ou...> - 2003-02-20 21:40:50
|
Jean-Philippe Georget <jpg...@ou...> a =E9crit :
> When I access for the first time to PhpWIki, I have this Warning in
> the bottom of the first page displayed.
>=20
>=20
> ****************************************************************
> PHP Warnings
>=20
>=20
> In template 'head'(In template 'html'?):67: Notice[8]: Use of undefined=
constant RECENT_CHANGES - assumed 'RECENT_CHANGES':
>=20
> * <link rel=3D"alternate" type=3D"application/rss+xml" title=3D"RSS=
" href=3D"<?=3DWikiURL(RECENT_CHANGES, array('format' =3D> 'rss'))?>" />
>=20
> ****************************************************************
There is no problem without using configurator.php.
--=20
Jean-Philippe Georget
jpg...@ou... - http://jpgeorget.ouvaton.org/
|
|
From: Jean-Philippe G. <jpg...@ou...> - 2003-02-20 01:06:57
|
I use PhpWiki on SF with dba.
I must comment out for example the line 187 in index.php version 1.100
'dsn' => 'mysql://guest@localhost/test',
then I have no more warning.
--
Jean-Philippe Georget
jpg...@ou... - http://jpgeorget.ouvaton.org/
|
|
From: Jean-Philippe G. <jpg...@ou...> - 2003-02-16 20:35:10
|
When I access for the first time to PhpWIki, I have this Warning in
the bottom of the first page displayed.
****************************************************************
PHP Warnings
In template 'head'(In template 'html'?):67: Notice[8]: Use of undefined constant RECENT_CHANGES - assumed 'RECENT_CHANGES':
* <link rel="alternate" type="application/rss+xml" title="RSS" href="<?=WikiURL(RECENT_CHANGES, array('format' => 'rss'))?>" />
****************************************************************
I change line 69 in themes/default/templates/head.tmpl
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?=WikiURL(RECENT_CHANGES, array('format' => 'rss'))?>" />
in
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?=WikiURL(_("RECENT_CHANGES"), array('format' => 'rss'))?>" />
^^ ^^
and it seems ok.
--
Jean-Philippe Georget
jpg...@ou... - http://jpgeorget.ouvaton.org/
|
|
From: <no...@so...> - 2002-01-21 12:15:55
|
Bugs item #506399, was opened at 2002-01-21 04:15 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=506399&group_id=6121 Category: version 1.3.x (experimental) Group: Linking Status: Open Resolution: None Priority: 5 Submitted By: Lawrence Akka (lakka) Assigned to: Nobody/Anonymous (nobody) Summary: Recursive page include when editing Initial Comment: Editing of TextFormatting Rules gives the folloiwng Notice: Notice[1024]: recursive inclusion of page TextFormattingRules ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=506399&group_id=6121 |
|
From: <no...@so...> - 2002-01-15 19:30:51
|
Bugs item #504020, was opened at 2002-01-15 11:29 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=504020&group_id=6121 Category: All databases Group: User Authentication Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: phpwiki with phpsessid's breaks URL's Initial Comment: If transparent session id's are compiled into php, and a user who has cookies blocked to your site either: * Views a page and clicks "edit" * Views pages while VIRTUAL_PATH is false and clicks on another linked page The URL's get FUBAR: http://server/wiki/index.php/Oracle%20Applications&?PHPSESSID=243fc4338a9871d6bb3f28d3f9ec6985#63;action=edit if you notice the "&" on the URL, it tries to edit a page called "Oracle Applications&", instead of having the PHPSESSID as a variable. I'm aware that phpwiki doesn't do any special PHPSESSID handling, but I couldn't uncover the issue with this bug in a cursory look.. I just commented out all the session handling since we don't need it inside this organization. Tested with both 1.3.0-jeffs-hacks and 1.3.2-jeffs-hacks, as well as Mozilla 0.9.7, Netscape 4.7, and Opera 6.0 ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=504020&group_id=6121 |
|
From: <no...@so...> - 2002-01-14 11:00:56
|
Bugs item #503268, was opened at 2002-01-14 03:00 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=503268&group_id=6121 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Neil Darlow (ndarlow) Assigned to: Nobody/Anonymous (nobody) Summary: run w/o register globals Initial Comment: phpwiki-1.2.2 requires a PHP installation with register globals enabled. This is a feature that I would really like to disable in my PHP configuration. For the future, would it be possible to recode phpwiki without the need for this feature? ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=503268&group_id=6121 |
|
From: <no...@so...> - 2002-01-14 00:29:20
|
Bugs item #503115, was opened at 2002-01-13 16:29 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=503115&group_id=6121 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Dummy Test Bug Initial Comment: This is a dummy test bug. (I'm hoping it gets reported to the phpwiki-bugs mailing list.) Jeff ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=106121&aid=503115&group_id=6121 |
|
From: Jeff D. <da...@da...> - 2002-01-14 00:14:13
|
Test . 1.2.3. If this list seems live (and no one else complains), I'm going to see if I a direct new bug announcements to this list. Jeff |