- Notifications
You must be signed in to change notification settings - Fork2
MuWeb Online is a CMS for MuOnline, created using Slim Framework 3.
License
NotificationsYou must be signed in to change notification settings
felipecoder/muwebonline
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
MuWeb Online is a CMS for MuOnline, created usingSlim Framework 3.
Using auto installer
Download the repository and access the /install/index.php folder.
Using Git
git clonehttps://github.com/felipecoder/muwebonline.git
Go to the /install/sql folder and restore the mwoinstall.sql databasecreate the database.php file in /src
<?phpputenv('MSSQL_DRIVER=driver');putenv('MSSQL_HOST=host');putenv('MSSQL_PORT=port');putenv('MSSQL_USER=user');putenv('MSSQL_PASS=pass');putenv('MSSQL_DBNAME=database');
create the app.php file in /src
<?phpputenv('DISPLAY_ERRORS=false');putenv('DEBUG_BAR=false');putenv('DOMAIN=example.com');putenv('SITE_LINK=http://example.com/');putenv('DIR=/');putenv('DIRADMIN=admin');putenv('DIRIMG=/uploads/');putenv('DIRLOGS=logs/');
Readthe documentation for more information.