Re: [pmwiki-users] invitation links?

2019-11-19 Thread cm
Hi Neil, On Tue, Nov 19, 2019 at 05:01:42PM -0500, Neil Herber (nospam) wrote: > Caleb and list > > If all you want to do is allow downloads of "hidden" documents, there is > a very easy way to do it with no programming required. > > Suppose your wiki URL is something like > https://secure.eton.

Re: [pmwiki-users] Fox forms and notify issues

2019-11-19 Thread Michael Eager
On 11/19/19 2:45 PM, Hans wrote: * Display captcha error message: I'd like to display a "failed captcha" message beside the entry field, similar to what I'm doing with validating an email address using (:foxcheck:) and (:foxmessage:). It appears that the captcha message can only be displayed

Re: [pmwiki-users] Fox forms and notify issues

2019-11-19 Thread Michael Eager
On 11/19/19 2:50 PM, Hans wrote: * Test if comment successfully submitted I'd like to print a message when a comment is submitted, not the complete list of messages. You may need to set up some redirection to a different page than the page which contains all your comments. use the parameter

Re: [pmwiki-users] Fox forms and notify issues

2019-11-19 Thread Hans
> * Test if comment successfully submitted > I'd like to print a message when a comment is submitted, not the > complete list of messages. You may need to set up some redirection to a different page than the page which contains all your comments. use the parameter redirect=SOMEPAGE in your fox m

Re: [pmwiki-users] Fox forms and notify issues

2019-11-19 Thread Hans
> * Display captcha error message: > I'd like to display a "failed captcha" message beside the entry field, > similar to what I'm doing with validating an email address using > (:foxcheck:) and (:foxmessage:). It appears that the captcha message > can only be displayed using (:foxmessage:). Th

Re: [pmwiki-users] DefaultGroup bug?

2019-11-19 Thread Petko Yotov
PmWiki will try to find the page a visitor requests from the ?n=Something query string, or from the /Something path in the URL (if enabled). If no query string is passed, ie the user opens just index.php or pmwiki.php, then it will directly return the variable $DefaultPage. If it is not defi

Re: [pmwiki-users] invitation links?

2019-11-19 Thread Neil Herber (nospam)
Caleb and list If all you want to do is allow downloads of "hidden" documents, there is a very easy way to do it with no programming required. Suppose your wiki URL is something like https://secure.eton.ca/neil/index.php/Main/HomePage And you want to allow users to download items without logins,

Re: [pmwiki-users] required="required" attributes

2019-11-19 Thread Petko Yotov
1. Good idea, thanks, I will add it for the next release. To enable the formnovalidate attribute it in the current version, you can simply define it in config.php: $InputTags['e_cancelbutton']['formnovalidate'] = 'formnovalidate'; There should never be a need to edit core PmWiki files, ever

[pmwiki-users] DefaultGroup bug?

2019-11-19 Thread Robert Riebisch
Hi, after unzipping pmwiki-2.2.122.zip, copying pmwiki-2.2.122/docs/sample-config.php to pmwiki-2.2.122\local\config.php and just doing $DefaultGroup = 'Home'; there, I receive 'The page "" doesn't exist. (Create Home.HomePage).', when opening . This will

[pmwiki-users] invitation links?

2019-11-19 Thread Caleb Malchik
Services such as Discord and Google Docs allow you to distribute an "invitation link" which gives access to a document or channel. The user doesn't have to make an account or even type in a password. Would it be feasible to implement something like this in PmWiki? Perhaps this could be accomplis

[pmwiki-users] required="required" attributes

2019-11-19 Thread Robert Riebisch
Hi, pressing the "Cancel" button in PmWiki version >=2.2.119 at, e.g., requires to fill the author field at first to continue. That doesn't make sense to me. Generated HTML code should be changed from: to: if "$EnablePostAuthorRequi