box/StatusWolf

Installation

Closed this issue · 3 comments

Hi,

This looks very promising, but some sort of installation document is needed. I figured out dependency on Pear/Auth, MDB2 and mysqli extension. However I can't find a way to add users. So I turned authentication off. But now I am stuck trying to figure out apache setup to work with request router that seems to be used here.

Limus

Hi Limus,

Installation doc is in the wiki - https://github.com/box/StatusWolf/wiki/Installation

thanks!

-mark

Unless I am mistaken, the documentation does not explain how to create a new user. I have tried to insert one with clear-text password, with MD5(password) and with PASSWORD(password) with no luck.

There is an admin interface in the works to deal with user management, etc., unfortunately it's not quite ready and you are correct that I neglected to put MySQL auth management in the doc... I'll create an issue to track the admin interface, in the meantime here's the query to add a user to the auth table:

INSERT INTO auth VALUES('username',MD5('password'),'Full Name');