Suggestions

From Dreamwidth Notes
Revision as of 22:20, 22 February 2016 by Kareila (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

So you want a version of the Dreamwidth suggestions page working on your Dreamhack. This document should hopefully get you there. It was written by [info]me_and in February 2016.

You will need

  • A Dreamhack.
  • An account on your Dreamhack with admin privs; your default "system" account probably suffices.

Process

  • Create a new community called "dw_suggestions"
    • You can't create this normally, because "dw_" is a reserved name. You need to use a user account with "siteadmin:usernames". Assuming you're logged in as "system", go to /admin/priv/?user=system on your Dreamhack, select "siteadmin" from the drop-down at the bottom, and type "usernames" in the text box, then click "Make changes".
    • You should now be able to create the community at /communities/new
  • Create a new user called "suggestions_bot" and have it join dw_suggestions.
    • I did this by creating an invite code, and signing up a new user in a private/incognito browser window (so it wouldn't sign out my system user), but other methods for creating a user exist.
  • Validate the bot account's email address. Two methods:
    • Edit the database directly to record that the email address has been validated: UPDATE user SET status='A' WHERE user='suggestions_bot';
    • Or, just configure the bot with a valid email address, run the workers to get the email sent, and click the validation link you receive. (Check spam if the email doesn't arrive; this is what I ended up doing).
  • Make the bot an admin of the community at /communities/dw_suggestions/members/edit
  • Make sure the community has a a paid account so anyone can post polls.
    • Give your "system" account the "payments" privilege at /admin/priv/?user=system
    • At /admin/pay/, enter dw_suggestions, and set it to have a paid account.
  • Add the following lines to ext/local/etc/config-local.pl, before the closing curly brace:
$SUGGESTIONS_COMM = "dw_suggestions";
$SUGGESTIONS_USER = "suggestions_bot";