Trouble setting up Admin password hash
Could someone help translate this documentation? I'm unsure what {{admin_recovery}} means as an end user. The docs don't really explain this at least not here.
- to login define the
recovery_password
in the config/config.php file first- Call the
{{admin_recovery}}
action as Admin and generate the password hash for your recovery_password - Add the password hash:
'recovery_password' => 'add hash here',
- Call the
- Don't forget to delete the _cache/config/config.php afterwards. (manually or via the
admincache
action) - Call yourwiki/admin.php
- Enter your recovery password
Comments
Log in or create an account to post a comment.
Re: Trouble setting up Admin password hash
Re: Trouble setting up Admin password hash
No idea what this means kind sir.
Re: Trouble setting up Admin password hash
Wiki actions are scripts that you can embed in any page by using the following syntax within a page:
{{actionname}}
For instance, if you call up the Whats new page and look at the wiki text, you will see
{{whatsnew}}
.Another very simple example can be found here: /Dev/PatchesHacks/GetIP
Now you only need to insert the name of the action with the associated parameters into a new or existing page (via edit page), in your case just
{{admin_recovery}}
.Save the page and you will see the form for creating the recovery password, if you're logged in as an Admin (member of the Admins group).
See also WackoWiki Markup -> Concept of Actions.
Re: Trouble setting up Admin password hash