forked from Business/AccountHub
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
api | 4 years ago | |
database_upgrade | 5 years ago | |
langs | 3 years ago | |
lib | 3 years ago | |
login | 4 years ago | |
mobile | 5 years ago | |
nbproject | 3 years ago | |
pages | 4 years ago | |
signup | 3 years ago | |
static | 3 years ago | |
tests | 5 years ago | |
.gitignore | 5 years ago | |
.gitmodules | 6 years ago | |
LICENSE.md | 5 years ago | |
README.md | 3 years ago | |
action.php | 5 years ago | |
api.php | 5 years ago | |
app.php | 3 years ago | |
composer.json | 3 years ago | |
composer.lock | 3 years ago | |
database.mwb | 5 years ago | |
database.sql | 5 years ago | |
feed.php | 5 years ago | |
home.php | 5 years ago | |
index.php | 5 years ago | |
pages.php | 5 years ago | |
required.php | 3 years ago | |
settings.template.php | 5 years ago | |
setup.php | 5 years ago |
README.md
AccountHub
AccountHub is a web application enabling secure self-serve account management. Employees can change their password and manage other web apps they have access to with the dashboard.
https://netsyms.biz/apps/accounthub
Installing
- Setup a LAMP server with PHP 7.2, including PHP extensions mbstring, zip, gd, and imagick
- Copy
settings.template.php
tosettings.php
- Import
database.sql
into your database server - Edit
settings.php
and fill in your DB info - Set the URL of the install
- Setup "EXTERNAL_APPS" with specifics for your install.
- Setup the email settings to receive alerts you configure later in ManagePanel
- Run
composer install
(orcomposer.phar install
) to install dependency libraries - Edit the database table
apikeys
and add some API keys for the other apps to use - From a web browser, visit
http://apps/url
(or whatever your setup is). If you did everything right, you should see a login screen. - Now go to
http://apps/url/setup.php
and create an admin account. - Install ManagePanel to setup additional user accounts.
Upgrading
- Run
git pull
or otherwise update the code - Run
composer install
to update dependencies - Execute the SQL scripts in
database_upgrade
to take you from your current version to the latest version - Rewrite your
settings.php
based on the newsettings.template.php