YesilCMS is based on BlizzCMS and specifically adapted for VMaNGOS Core and includes new features and many bug fixes.
In addition to the existing features of BlizzCMS, some of the added features are as follows;
- Complete VMaNGOS compability.
- New installation script that directs the user based on OS/Environment.
- Tweaks to work on multiple Web Servers including Apache/Nginx/IIS.
- Redis caching for *nix operating systems.
- Functioning reCAPTCHA.
- New lightweight dark theme.
- Brand new customizable armory.
- Base character info
- 3D Model Viewer (Fast: Uses plain
displayID
, Detailed: Converts olddisplayID
to ClassicdisplayID
using Classic's DBC. You can also create a separate table instead of remote call.) - Dynamic Base Stats
- Primary & Secondary Professions
- PvP Stats
- Ability to show enchants on items (by using WoWHead's tooltip instead of ClassicDB)
- Ability to show all character stats instead of just base-ones
- Rest API implementation for future developments.
- Built-in account activation.
- Built-in account recovery.
- Built-in dynamic CSRF protection on each page.
- Tweaked Admin Panel. (SMTP tester, handlers and logs etc.)
- On-the-fly downloadable Realmlist.
- Bug fixes and improvements.
- Functioning vMaNGOS server (on same/another host)
- OS (Including Windows)
- PHP 7.2+
- Composer
- Web-server (Tested on Nginx, Apache and IIS)
- Database (MySQL/MariaDB)
- Redis for *nix operating systems
- ctype
- curl
- gd
- gmp
- json
- mbstring
- mysqli
- openssl
- redis (only for *nix operating systems)
- soap
This is an example installation for RHEL OS with;
- nginx 1.21.6 (customly compiled for Brotli, Pagespeed, PCRE2, Zlib, Headers),
- PHP 7.4.30 & PHP7.4-FPM,
- MariaDB 10.6.7,
- Redis v6.0.16
and assuming you already installed & configured above.
Note: for FastCGI, you can set CI_ENV by fastcgi_param CI_ENV ENV_NAME
Available Environment names are development, testing, environment
Clone project from Github to your web server root folder or document root and grant required ownership & permissions:
git clone https://github.com/yesilmen-vm/YesilCMS.git [document_root]
sudo chown -R nginx:nginx [document_root]
sudo usermod -a -G nginx nginx
sudo find [document_root] -type f -exec chmod 644 {} \;
sudo find [document_root] -type d -exec chmod 755 {} \;
You can either update dependencies to their latest versions or install them from scratch. To update;
composer update
Create required Database & User for CMS:
CREATE DATABASE [cms_db];
CREATE USER '[cms_user]'@'[host]' IDENTIFIED BY '[password]';
GRANT USAGE ON *.* TO '[cms_user]'@'[host]';
GRANT SELECT, EXECUTE, SHOW VIEW, ALTER, ALTER ROUTINE, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE VIEW, DELETE, DROP, EVENT, INDEX, INSERT, REFERENCES, TRIGGER, UPDATE, LOCK TABLES ON [cms_db].* TO '[cms_user]'@'[host]';
FLUSH PRIVILEGES;
Then go to the site and proceed with the installation instructions.
There is only 1 method available yet, all CRUD operations are planned to be done from here in order to ensure infrastructure change afterwards.
Takes item_id
and returns new ItemDisplayInfoID
from Classic build (1.14.3.44403) on WoW Tools. DBC can be downloaded and used locally as well.
GET /api/v1/item/newdisplayid/item_id
Parameter | Type | Description |
---|---|---|
item_id |
integer |
Required. Item ID |
MIT