[pmwiki-users] PmWiki on Window XP Home?

2011-03-01 Thread Al Louis Ripskis

Guys,
Has anyone actually installed PmWiki on Windows XP Home?
The trick seems to be installing the IIS first.
I ran across a description of a torturous process at
http://www.xfutureblog.com/2006/07/30/install-iis-for-windows-xp-home-edition/
But apparently it is questionable that it really works, judging from the 
responses of some who tried.

Would  you know a way around this conundrum?
Many thanks,
Al

Al Louis Ripskis
http://www.unlockyourlife.com/author.html
http://www.unlockyourlife.com
___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] PmWiki on Window XP Home?

2011-03-01 Thread Peter Bowers
On Tue, Mar 1, 2011 at 2:42 PM, Al Louis Ripskis rips...@sprynet.com wrote:
 Guys,
 Has anyone actually installed PmWiki on Windows XP Home?

Try wamp instead...

http://www.wampserver.com/en/

I'm on win7 now, but I ran it for quite some time on XP home IIRC...

-Peter

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] PmWiki on Window XP Home?

2011-03-01 Thread Steve Glover

On 01/03/11 13:52, Peter Bowers wrote:

On Tue, Mar 1, 2011 at 2:42 PM, Al Louis Ripskisrips...@sprynet.com  wrote:

Guys,
Has anyone actually installed PmWiki on Windows XP Home?


Try wamp instead...

http://www.wampserver.com/en/

I'm on win7 now, but I ran it for quite some time on XP home IIRC...


Or - but only if it's for in-house use - xampp

http://www.apachefriends.org/

Actually, I think it's only insecure out of the box: there could well 
be a wee script that tightens things up for you.


Cheers

Steve


-Peter

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users





--
Steve Glover: SDSS, EDINA, Causewayside House, 160 Causewayside EH9 1PR
e:steve.glo...@ed.ac.uk t:0131 650 2908 f:0131 650 3308 m:07961 446 902

The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


[pmwiki-users] PmForm - change summary and cancel button

2011-03-01 Thread Randy Brown
I am successfully using a PmForm to change page text variables, but I have two 
problems that I've been unable to solve:

1) Upon save, I want the page's change summary updated too (either 
automatically, or with user-entered information from the form).

2) I would also like a cancel button. (It seems whatever I do, my buttons save 
the data, regardless of their name or value.)

What do I need to do? 

Thanks, 

Randy

-

Here is my config:

$PmForm['savedata'] = 'saveto={$FullName} form=#dataform fmt=#datapost';

Here is my markup:

(:pmform savedata:)

(:if false:)
[[#dataform]]
(:input pmform target=savedata:)
(:input default source={*$FullName} request=1 :)
(:messages:)
(:table:)
(:cellnr:)MyPTV%%:
(:cell:)(:input text $: MyPTV size=70 :)
(:tableend:)
-- (:input submit name=post value=Save :)
(:input end:)
[[#dataformend]]

[[#datapost]]
(:template defaults savevars=$:MyPTV :)
[[#datapostend]]


___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] PmForm - change summary and cancel button

2011-03-01 Thread DaveG
Check out BlogIt, which uses PmForms, that might help (or might be too 
complex to easily grab info quickly).



On 3/1/2011 4:54 PM, Randy Brown wrote:

I am successfully using a PmForm to change page text variables, but I have two 
problems that I've been unable to solve:

1) Upon save, I want the page's change summary updated too (either 
automatically, or with user-entered information from the form).

Setup some form of event handler. From BlogIt:
SDV($HandleActions['bi_be'], 'bi_HandleEdit'); SDV($HandleAuth['bi_be'], 
'admin');


In your case that might be:
SDV($HandleActions['my_edit'], 'my_HandleEdit'); 
SDV($HandleAuth['my_edit'], 'edit');


in my_HandleEdit() something like (make sure you declare $ChangeSummary, 
$_POST, etc, as global in your function):

  if ($_POST['target']=='savedata'  @$_POST['save']{
$ChangeSummary = $_POST['ptv_MyPTV'];
  }



2) I would also like a cancel button. (It seems whatever I do, my buttons save 
the data, regardless of their name or value.)

Search for 'cancel' in BlogIt for actual use. Basically:
  if ($_POST['cancel']  in_array($_REQUEST['target'],$bi_Forms))

This is checking for the Cancel button being clicked, and then checking 
that the form being submitted is one being managed by PmForms. 
Simplified for your case that might be:

  if ($_POST['cancel']  $_REQUEST['target']=='savedata')


Hope that gets you in a direction to move forward a step.


 ~ ~ Dave

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] PmWiki on Window XP Home?

2011-03-01 Thread DaveG


On 3/1/2011 8:42 AM, Al Louis Ripskis wrote:

Guys,
Has anyone actually installed PmWiki on Windows XP Home?
The trick seems to be installing the IIS first.
I ran across a description of a torturous process at
http://www.xfutureblog.com/2006/07/30/install-iis-for-windows-xp-home-edition/
But apparently it is questionable that it really works, judging from the
responses of some who tried.
Would you know a way around this conundrum?

I run PmWiki on XP, with no issues, but not under IIS.

For light install I use Abyss web server 
http://www.pmwiki.org/wiki/Cookbook/WikiOnAStick#abyss


For a more comprehensive install I run Apache, and a PHP install.


 ~ ~ Dave

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users


Re: [pmwiki-users] PmWiki on Window XP Home?

2011-03-01 Thread Laatz, Erek
Hi all,

the best experiences running PmWiki on XP Home is both
- with Apache and PHP or
- for testing within a WAMP environment.

Both solutions works really fine and I found no reason to run it with an IIS.

Greets from Germany,

Erek

Von: pmwiki-users-boun...@pmichaud.com 
[pmwiki-users-boun...@pmichaud.com]quot; im Auftrag von quot;DaveG 
[pmw...@solidgone.com]
Gesendet: Mittwoch, 2. März 2011 02:32
Bis: Al Louis Ripskis
Cc: pmwiki-users@pmichaud.com
Betreff: Re: [pmwiki-users] PmWiki on Window XP Home?

On 3/1/2011 8:42 AM, Al Louis Ripskis wrote:
 Guys,
 Has anyone actually installed PmWiki on Windows XP Home?
 The trick seems to be installing the IIS first.
 I ran across a description of a torturous process at
 http://www.xfutureblog.com/2006/07/30/install-iis-for-windows-xp-home-edition/
 But apparently it is questionable that it really works, judging from the
 responses of some who tried.
 Would you know a way around this conundrum?
I run PmWiki on XP, with no issues, but not under IIS.

For light install I use Abyss web server
http://www.pmwiki.org/wiki/Cookbook/WikiOnAStick#abyss

For a more comprehensive install I run Apache, and a PHP install.


  ~ ~ Dave

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

___
pmwiki-users mailing list
pmwiki-users@pmichaud.com
http://www.pmichaud.com/mailman/listinfo/pmwiki-users