From: Bob A. <apt...@cy...> - 2004-02-14 22:45:58
|
Hi, Forwarded from one of my users; is there an easy way to coallesce multiple pages into a single page for easy viewing? I vaguely recall a plugin that might do this but I don't recall it off the top of my head. Thanks, -- Bob Begin forwarded message: >but thought I should ask anyway. Is there any way I can view a wiki or >subset of a wiki as one big nested page? I ask this because your info in >very heavily categorized. Good for research, bad for a straight read. |
From: Reini U. <ru...@x-...> - 2004-02-15 22:02:15
|
Bob Apthorpe schrieb: > Forwarded from one of my users; is there an easy way to coallesce > multiple pages into a single page for easy viewing? I vaguely recall a > plugin that might do this but I don't recall it off the top of my head. UnfoldSubpages does this and there's a IncludeSiteMap plugin somewhere. (not yet in CVS) -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |
From: Frank S. <fra...@rn...> - 2004-02-17 09:57:56
|
> >>> "ru...@x-..." 02/15/04 21:59 >>> > > Bob Apthorpe schrieb: > > Forwarded from one of my users; is there an easy way to coallesce > > multiple pages into a single page for easy viewing? I > vaguely recall a > > plugin that might do this but I don't recall it off the top > of my head. > > UnfoldSubpages does this and there's a IncludeSiteMap plugin > somewhere. > (not yet in CVS) As others have mentioned, the IncludePage plugin allows nice coalescing. Take a look at http://roke.angband.za.org/frank/RealtimeTransportProtocol for how I usually do this sort've stuff. frank |
From: Martin G. <gim...@gi...> - 2004-02-16 11:17:26
|
Bob Apthorpe <apt...@cy...> writes: > Hi, > > Forwarded from one of my users; is there an easy way to coallesce > multiple pages into a single page for easy viewing? I vaguely recall > a plugin that might do this but I don't recall it off the top of my > head. Yes, the IncludePage plugin does this for a single page, the UnfoldSubpages plugin can do it for all subpages for a particular page. -- Martin Geisler My GnuPG Key: 0xF7F6B57B See http://gimpster.com/ and http://phpweather.net/ for: PHP Weather: Shows the current weather on your webpage and PHP Shell: A telnet-connection (almost :-) in a PHP page. |
From: Tony L. <la...@is...> - 2004-02-26 17:53:26
|
According to: http://phpwiki.sourceforge.net/phpwiki/FixedBugs this bug has been fixed in the CVS. I tried the most recent PearDB.php but the problem persists. http://talking.to/isshowiki/?pagename=PolyglotBang Does it require some other file to be replaced? Thanks. -- Tony Laszlo irc://irc.freenode.net/issho talking.to/blog |
From: Reini U. <ru...@x-...> - 2004-02-27 00:14:35
|
Tony Laszlo schrieb: > According to: > http://phpwiki.sourceforge.net/phpwiki/FixedBugs > > this bug has been fixed in the CVS. > I tried the most recent PearDB.php but the problem persists. > http://talking.to/isshowiki/?pagename=PolyglotBang > > Does it require some other file to be replaced? No, according Jeff's problem description: DB Error: already exists ? (INSERT INTO ms_page (id,pagename,hits) VALUES (1137,' ',0) nativecode=Duplicate entry '' for key 2 ... your page or link table is corrupt. Try to delete all pages with empty pagename AND all links to it. Someone has a SQL statement handy? first try PhpWikiAdministration: Exorcise WikiDB Maybe this will work: (mysql for sure not) here i assume the wrong pagename = ' ' (you have to provide the exact sql error) DELETE FROM link RIGHT JOIN page USING (link.linkfrom = page.id) WHERE page.pagename=' '; DELETE FROM page WHERE page.name=' '; or can your db do subselects? DELETE FROM link WHERE SELECT link FROM link, page WHERE (link.linkfrom = page.id or link.linkto = page.id) AND page.pagename=' '; just a guess. untested BTW: fine WikiChump plugin! -- Reini Urban http://xarch.tu-graz.ac.at/home/rurban/ |
From: Tony L. <la...@is...> - 2004-02-27 09:20:07
|
Thanks for your response, Reini. On Fri, 27 Feb 2004 01:12:22 +0100 Reini Urban <ru...@x-...> wrote: > your page or link table is corrupt. > Try to delete all pages with empty pagename AND all links to it. Oh darn. Maybe I can do this with phpmyadmin? > BTW: fine WikiChump plugin!> -- Glad you like it. Drop by the channel sometime to give it a spin. -- Tony Laszlo irc://irc.freenode.net/issho talking.to/blog |
From: Tony L. <la...@is...> - 2004-03-07 06:26:16
|
On Fri, 27 Feb 2004 01:12:22 +0100 Reini Urban <ru...@x-...> wrote: > your page or link table is corrupt. > Try to delete all pages with empty pagename AND all links to it. By way of follow-up: It turns out there was just some characters on one page that didn't agree with something. deleting that text and saving (without touching the database) solved the problem. -- Tony Laszlo irc://irc.freenode.net/issho talking.to/blog |
From: Reini U. <ru...@x-...> - 2004-02-27 09:32:30
|
Tony Laszlo schrieb: >>your page or link table is corrupt. >>Try to delete all pages with empty pagename AND all links to it. > > Oh darn. > Maybe I can do this with phpmyadmin? sure. >>BTW: fine WikiChump plugin!> -- > Glad you like it. > Drop by the channel sometime to give it a spin. I don't speak korean :) |
From: Tony L. <la...@is...> - 2004-02-27 14:54:15
|
On Fri, 27 Feb 2004 10:30:06 +0100 Reini Urban <ru...@x-...> wrote: > I don't speak korean :) You don't _even_ have to speak wiki to post to "PolyglotBang" from IRC. _Tolerance_ of languages other than one's own is, of course, a prerequisite. -- Tony Laszlo irc://irc.freenode.net/issho talking.to/blog |