Skip to content
Jav edited this page Nov 19, 2020 · 10 revisions

Database

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)

CMS

Flyff plugin

  • 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)
Clone this wiki locally