Skip to content

YesilDevCMS is based on BlizzCMS and it is specially adapted for VMaNGOS Core and includes new features and many bug fixes.

License

Notifications You must be signed in to change notification settings

vmangos/YesilCMS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YesilCMS Logo

YesilCMS · PRs Welcome GitHub license

YesilCMS is based on BlizzCMS and specifically adapted for VMaNGOS Core and includes new features and many bug fixes.

Features

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 old displayID to Classic displayID 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.

System Requirements

  • 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

PHP Extensions

  • ctype
  • curl
  • gd
  • gmp
  • json
  • mbstring
  • mysqli
  • openssl
  • redis (only for *nix operating systems)
  • soap

Installation

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.

API Reference

There is only 1 method available yet, all CRUD operations are planned to be done from here in order to ensure infrastructure change afterwards.

Get new display ID

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

License

MIT

I like ☕, who doesn't right?

"Buy Me A Coffee"

About

YesilDevCMS is based on BlizzCMS and it is specially adapted for VMaNGOS Core and includes new features and many bug fixes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 59.3%
  • JavaScript 27.2%
  • CSS 12.6%
  • Other 0.9%