SourceForge logo
SourceForge logo
Menu

phpwiki-bugs — bug reports for PhpWiki

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
S M T W T F S




1
2
3
(2)
4
5
6
(1)
7
(1)
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

Showing 4 results of 4

From: SourceForge.net <no...@so...> - 2012年03月07日 17:05:21
Bugs item #3498728, was opened at 2012年03月07日 09:05
Message generated for change (Tracker Item Submitted) made by philiph
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3498728&group_id=6121
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: version 1.4.x (current)
Group: PHP error
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Philip J. Hollenback (philiph)
Assigned to: Nobody/Anonymous (nobody)
Summary: PHP Fatal error: Class 'DB' not found
Initial Comment:
I'm seeing a lot of this in my logs:
[Wed Mar 07 07:13:22 2012] [error] [client 173.245.50.240] PHP Fatal error: Cannot use object of type Request_AccessLogEntry as array in /var/www/phpwiki/lib/plugin/RecentReferrers.php on line 69
[Wed Mar 07 07:13:22 2012] [error] [client 173.245.50.240] PHP Fatal error: Class 'DB' not found in /var/www/phpwiki/lib/pear/DB/mysql.php on line 207
Once that starts happening the class DB not found error keeps happening over and over again. My website still seems o be up and working though. There's also lots of this sort of stuff intermingled:
[Mon Mar 05 00:30:44 2012] [error] [client 66.249.67.179] File does not exist: /var/www/ImpossibleEmailDates
the problem goes away for a while after I restart my apache2. I'm using the mysql backend and the svn phpwiki as of about feb. 24 2012. php-5.3.
----------------------------------------------------------------------
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3498728&group_id=6121
From: SourceForge.net <no...@so...> - 2012年03月06日 16:19:52
Bugs item #3492111, was opened at 2012年02月23日 07:19
Message generated for change (Comment added) made by vargenau
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3492111&group_id=6121
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: version 1.4.x (current)
>Group: Database
>Status: Closed
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Philip J. Hollenback (philiph)
>Assigned to: Marc-Etienne Vargenau (vargenau)
Summary: Invalid comment line in mysql-destroy.sql
Initial Comment:
The current mysql-destroy.sql in the schema directory has a typo:
--drop table if exists user;
mysql complains about this line. To fix, insert a space:
-- drop table if exists user;
I'm looking at the current phpwiki in svn as of 2/20/12.
----------------------------------------------------------------------
>Comment By: Marc-Etienne Vargenau (vargenau)
Date: 2012年03月06日 08:19
Message:
Fixed in Subversion 8245
----------------------------------------------------------------------
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3492111&group_id=6121
From: SourceForge.net <no...@so...> - 2012年03月03日 22:35:53
Bugs item #3496655, was opened at 2012年03月03日 14:35
Message generated for change (Tracker Item Submitted) made by philiph
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3496655&group_id=6121
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: version 1.4.x (current)
Group: PHP error
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Philip J. Hollenback (philiph)
Assigned to: Nobody/Anonymous (nobody)
Summary: Call to undefined method XmlContent::setAttr()
Initial Comment:
Seeing this in my logs on www.hollenback.net:
[Sat Mar 03 06:23:13 2012] [error] [client 173.245.56.228] PHP Fatal error: Call to undefined method XmlContent::setAttr() in /var/www/phpwiki/lib/plugin/RecentChanges.php on line 628
that's happening in fuction DiffLink:
 function diffLink ($rev) {
 $linkurl = parent::diffLink($rev);
 $linkurl->setAttr('target', '_content'); // this line
 $linkurl->setAttr('rel', 'nofollow');
 // FIXME: Smelly hack to get smaller diff buttons in sidebar
 $linkurl = new RawXML(str_replace('<img ', '<img style="height:2ex" ', asXML($linkurl)));
 return $linkurl;
 }
Can someone help me troubleshoot this? Thanks.
----------------------------------------------------------------------
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3496655&group_id=6121
From: SourceForge.net <no...@so...> - 2012年03月03日 22:31:18
Bugs item #3496654, was opened at 2012年03月03日 14:31
Message generated for change (Tracker Item Submitted) made by philiph
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3496654&group_id=6121
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: version 1.4.x (current)
Group: PHP error
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Philip J. Hollenback (philiph)
Assigned to: Nobody/Anonymous (nobody)
Summary: PHP Fata error cannot use object of type HtmlElement
Initial Comment:
Seeing a lot o these in my logs on www.hollenback.net:
[Fri Mar 02 22:38:31 2012] [error] [client 199.27.128.228] PHP Fatal error: Cannot use object of type HtmlElement as array in /var/www/phpwiki/lib/CachedMarkup.php on line 559, referer: http://www.google.com/search?q=tag+on+tag+off+clipper+card&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
code:
 function _expand($url, $label = false) {
 global $WikiTheme;
 $m = $this->_expandurl($url);
 $class = 'wiki';
 // do not link to the attribute value, but to the attribute
 $is_attribute = ($m[2] == ':='); // this is the line that fails
 if ($WikiTheme->DUMP_MODE and $WikiTheme->VALID_LINKS) {
 if (isset($this->_page) and !in_array($this->_page, $WikiTheme->VALID_LINKS))
 return HTML($label ? $label : ($is_attribute ? $this->_relation : $this->_page));
 }
please give me some advice on how to troubleshoot this. I tried commenting out that line, but that then leads to:
[Sat Mar 03 14:23:05 2012] [error] [client 173.245.55.234] PHP Fatal error: Cannot use object of type HtmlElement as array in /var/www/phpwiki/lib/CachedMarkup.php on line 591, referer: http://www.google.com/search?hl=en&client=safari&sa=X&ei=WJpST4alDojPgAfyrrkr&ved=0CBsQvwUoAQ&q=how+to+connect+directv+to+my+dd-+wrt+router&spell=1&biw=320&bih=416
in the line
 HTML::span(array('class'=>'relation-symbol'), $m[2]),
so it seems that $m[2] does not contain valid data when this happens.
----------------------------------------------------------------------
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106121&aid=3496654&group_id=6121

Showing 4 results of 4

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /