Anonymous entries

Hi!

Maybe someone knows a solution for the following problem:

We want to allow users to send in questions, without any visibilty of the username. An anonymous question box, which should allow users to post even silly questions without exposing themselves.

Can also be from outside the wiki, and be implemented via html, but information should land inside.

maybe…

Best regards!

Anonymous users can reply in the comments section as just that, anonymous. Only after they login will it display the username.

Problem is, that our wiki isn’t visible for non registered users. Since our medical content shouldn’t be accessible for everyone and due to copyrights, we only allow members of our society a user account and access.

Just write some script in a wiki page. Make only this page visible to non-registered users and have an HTML form in it.

Then save whatever data is entered in the form in other pages, using another author (using $xwiki.saveAsAuthor(...)).

Some examples: https://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/Scripting/APIGuide/

Thank you very much. We will try to do so.