Re: [pmwiki-users] Access to Profiles group gets redirected

2015-07-15 Thread ABClf
I would suggest, as a first step, you disable your config.php (rename it), then recheck your website. If all is fine, thus you have to control your config file, especially what is related to rights and users. I suspect you will have to reread documentation about user authentification script you u

[pmwiki-users] Access to Profiles group gets redirected

2015-07-15 Thread Alex
Hi Everybody, I have a silly situation. I have just installed a brand new pmwiki and after creating some User pages in the Profiles group, I cannot access without logging in.I can read and edit after logging in. When I request the page e.g. http://eltajolok.hu/index.php?n=Profiles.Alex It gets red

Re: [pmwiki-users] How to avoid a redirect after posting a Fox form

2015-07-15 Thread ki...@kirpi.it
> I am not sure what you are asking for the fox.php script to do. Nor am I, Hans ;-) I just tried to describe the issue but, lacking knowledge about the internals of such things, I (sorry) failed to build a clear, definitive question. > I know nothing about Ajax and modal pages I also know next

Re: [pmwiki-users] Pagelist Question

2015-07-15 Thread Monte Padget
Thanks, I was thinking there should be a way with existing variables, but was coming up empty. -Monte > Date: Wed, 15 Jul 2015 18:34:00 +0200 > From: 5...@5ko.fr > To: pmwiki-users@pmichaud.com > Subject: Re: [pmwiki-users] Pagelist Question > > Use something like this in config.php: > >$P

Re: [pmwiki-users] Pagelist Question

2015-07-15 Thread Monte Padget
Thanks, that seems to have done it! I hadn't created a sorting function. -Monte From: languefranca...@gmail.com Date: Wed, 15 Jul 2015 18:11:25 +0200 Subject: Re: [pmwiki-users] Pagelist Question To: m_pad...@hotmail.com; pmwiki-users@pmichaud.com I guess I get it working with these 2 steps :in

Re: [pmwiki-users] Pagelist Question

2015-07-15 Thread Petko Yotov
Use something like this in config.php: $PageListSortCmp['revcount'] = '$PCache[$y]["rev"] - $PCache[$x]["rev"]'; Then in a page: (:pagelist group=Main order=revcount:) The default pagelist sorting function with order=$RevCount will consider the text contained in the variable as text and

Re: [pmwiki-users] Pagelist Question

2015-07-15 Thread ABClf
I guess I get it working with these 2 steps : in config : function IntegerNameCompare($x, $y) { # get integer value of the page name or title $xval = intval(PageVar($x, '$RevCount')); $yval = intval(PageVar($y, '$RevCount')); # compare integer values if($xval > $yval

[pmwiki-users] Pagelist Question

2015-07-15 Thread Monte Padget
I am trying to make a page that would show the pages with the most revisions. I have added $RevCount into my config.php and have tried various iterations of the line: (:pagelist group=Group order=$RevCount count=10 fmt=#simple list=normal:) but not getting the expected list. I have added {$RevC

Re: [pmwiki-users] How to avoid a redirect after posting a Fox form

2015-07-15 Thread Hans Bracker
Hello Luigi, Tuesday, July 14, 2015, 11:30:46 PM, you wrote: > But I could not find a way to let it just post and stay "silent" :-) > Is there any instruction that I could not find in the manual, please? I am not sure what you are asking for the fox.php script to do. By default Fox will stay on