-
Notifications
You must be signed in to change notification settings - Fork 5
Installation
Jav edited this page Nov 19, 2020
·
10 revisions
- Change SQL Server Authentication to mixe and restart the SQL Server
- Create a user with a password and replace "MyNewAdminUser" and "abcd"
USE [master];
GO
CREATE LOGIN MyNewAdminUser
WITH PASSWORD = N'abcd',
CHECK_POLICY = OFF,
DEFAULT_LANGUAGE = us_english,
CHECK_EXPIRATION = OFF;
GO
EXEC sp_addsrvrolemember
@loginame = N'MyNewAdminUser',
@rolename = N'sysadmin';
- Download php extensions : sqlsrv and pdo_sqlsrv to place the .dll in the extension folder of your php (ext).
Becarefull about the x64 and x86 part, if you need thread safe or not and make sure they are enabled in the php.ini (if you don't know take thread safe)
- Download the CMS : https://azuriom.com/en/download
- Unzip the files in your webserver then go to
my-site.com/install.php
- Follow the steps
- Login into your website, then go to the admin panel
- In the plugin section, search for Flyff, download and enable the plugin.
- Now go to the Servers section (left menu in admin panel) and add a Flyff server (default port for WorldServer is 29000)