Re: [pmwiki-users] Problem with pagelist fmt=#include

2007-10-06 Thread Petko Yotov
On Friday 05 October 2007, Phil S wrote: In order to have pagelists default to listing pages only in the current group, I have this in my config: $pagename = ResolvePageName($pagename); $group = PageVar($pagename, '$Group'); $SearchPatterns['default'][] = /^$group\\./; It works fine, but

[pmwiki-users] PMWiki, performance on IIS

2007-10-06 Thread Erik Lindberg
Hello, My Wiki keeps being slow, loading a page takes 30-60 secs. Especially, if I'm using (:pagelist ... :) The server is IIS6 (shared one). Does anyone have experiences on performance on Linux vs. Windows + IIS? I think this is also related to performance of PHP in general.

[pmwiki-users] Help with Skidoo Layout

2007-10-06 Thread DaveG
I'm having a fairly minor layout problem, but I've been trying to resolve it forever, and getting no-where. Hopefully some can shed some light on the problem. Here's the URL: http://skidoo.solidgone.com/ Firefox and IE7 both display correctly. Problem(s): 1] Safari: each tab seem to be

[pmwiki-users] PHP-GD image library not found?

2007-10-06 Thread Nicholas Buttle
Hi I'm trying to use the thumblist cookbook with the latest PHP and Apache installed. However, I'm getting this error message... 'PHP-GD image library not found' How do I install the library for my PMWiki? System is XP and latest PHP and Apache. TIA Nick

[pmwiki-users] using PmWiki for project development

2007-10-06 Thread Jabba Laci
Hi, We have a project, and I plan to set up two PmWiki sites for this project: one for the users, and one for the developers to organise the work (bug tracking, TODO lists, etc.). I have the following requirements: (1) Both sites could only be edited by the developers. In the Recent Changes, I

[pmwiki-users] CondAuth ignores $HandleAuth: Bug?

2007-10-06 Thread Stirling Westrup
I've just tracked down a problem that I was having with a statement like: (:if auth upload {$PAGE}:) I presume (and I could be wrong) that this is supposed to test if the user has the authority to upload to page {$PAGE}. It turns out that auth calls CondAuth, which (among other things) tests

Re: [pmwiki-users] CondAuth ignores $HandleAuth: Bug?

2007-10-06 Thread sti
Stirling Westrup wrote: @list($level, $pn) = explode(' ', $condparm, 2); $level = array_key_exists($level,$HandleAuth) ? $HandleAuth[$level] : $level; $pn = ($pn '') ? MakePageName($pagename, $pn) : $pagename; msg(lvl=$level, ha=$HandleAuth[$level], pn=$pn);