├── .gitignore ├── .nojekyll ├── README.md ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── general-setup │ ├── ADMIN-PANEL-ACCESS.md │ ├── AUTH.md │ ├── CACHING.md │ ├── CONFIG.md │ ├── CRONTAB.md │ ├── CUSTOMIZE.md │ ├── CUSTOM_PAGES.md │ ├── DEBUGGER.md │ ├── DONATE.md │ ├── MAIL.md │ ├── RANKING_ICONS.md │ ├── SQL_LOGGING.md │ └── VOTE.md ├── images │ ├── ADMIN-ACCESS-WITH-RIGHTS.png │ ├── ADMIN-ACCESS-WITHOUT-RIGHTS.png │ ├── ADMIN_OVERVIEW_MODULES.png │ ├── COPY.png │ ├── RANKING_DEFAULT.png │ ├── TASK_SHEDULER │ │ ├── IMG_1.jpg │ │ ├── IMG_2.jpg │ │ ├── IMG_3.jpg │ │ ├── IMG_4.jpg │ │ ├── IMG_5.jpg │ │ ├── IMG_6.jpg │ │ └── IMG_7.jpg │ ├── apache-install.png │ ├── apache-setup.gif │ ├── apache-vhost.gif │ ├── basic-config.gif │ ├── blues_whites.png │ ├── download.png │ ├── generate-the-database.gif │ ├── git-clone.gif │ ├── payssion.png │ ├── php-datetime.png │ ├── php-extensions.gif │ ├── php-path-env.gif │ └── screenshots │ │ ├── account-panel.png │ │ ├── admin_block_history.png │ │ ├── admin_donate-statistic.png │ │ ├── admin_home.png │ │ ├── admin_news.png │ │ ├── admin_news_create.png │ │ ├── admin_statistic_user.png │ │ ├── admin_ticket_answer.png │ │ ├── admin_user-details.png │ │ ├── admin_user-panel.png │ │ ├── admin_user_block.png │ │ ├── character-details.png │ │ ├── character-panel.png │ │ ├── dark_mode.png │ │ ├── default_mode.png │ │ ├── playemap.png │ │ ├── register.png │ │ ├── ticket_detail.png │ │ └── ticket_overview.png ├── index.html ├── info │ ├── CONTACT.md │ └── FAQ.md ├── install │ ├── REQUIREMENTS.md │ ├── centos-setup │ │ └── INDEX.md │ └── windows-setup │ │ ├── APACHE-CONFIG.md │ │ ├── APACHE.md │ │ ├── GIT.md │ │ ├── INDEX.md │ │ └── TASK_SHEDULER.md └── modules │ ├── CustomRanking │ ├── CUSTOM_WIDGETS.md │ └── README.md │ ├── PServerCMSDonateAction │ └── README.md │ ├── PServerSROUnique │ └── README.md │ ├── PaymentAPI │ └── README.md │ ├── SROItemPoints │ └── README.md │ └── SROKill │ └── README.md ├── help └── itemname.txt ├── install └── rhel.sh └── update └── admin-info.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/general-setup/ADMIN-PANEL-ACCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/ADMIN-PANEL-ACCESS.md -------------------------------------------------------------------------------- /docs/general-setup/AUTH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/AUTH.md -------------------------------------------------------------------------------- /docs/general-setup/CACHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/CACHING.md -------------------------------------------------------------------------------- /docs/general-setup/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/CONFIG.md -------------------------------------------------------------------------------- /docs/general-setup/CRONTAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/CRONTAB.md -------------------------------------------------------------------------------- /docs/general-setup/CUSTOMIZE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/CUSTOMIZE.md -------------------------------------------------------------------------------- /docs/general-setup/CUSTOM_PAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/CUSTOM_PAGES.md -------------------------------------------------------------------------------- /docs/general-setup/DEBUGGER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/DEBUGGER.md -------------------------------------------------------------------------------- /docs/general-setup/DONATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/DONATE.md -------------------------------------------------------------------------------- /docs/general-setup/MAIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/MAIL.md -------------------------------------------------------------------------------- /docs/general-setup/RANKING_ICONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/RANKING_ICONS.md -------------------------------------------------------------------------------- /docs/general-setup/SQL_LOGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/SQL_LOGGING.md -------------------------------------------------------------------------------- /docs/general-setup/VOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/general-setup/VOTE.md -------------------------------------------------------------------------------- /docs/images/ADMIN-ACCESS-WITH-RIGHTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/ADMIN-ACCESS-WITH-RIGHTS.png -------------------------------------------------------------------------------- /docs/images/ADMIN-ACCESS-WITHOUT-RIGHTS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/ADMIN-ACCESS-WITHOUT-RIGHTS.png -------------------------------------------------------------------------------- /docs/images/ADMIN_OVERVIEW_MODULES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/ADMIN_OVERVIEW_MODULES.png -------------------------------------------------------------------------------- /docs/images/COPY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/COPY.png -------------------------------------------------------------------------------- /docs/images/RANKING_DEFAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/RANKING_DEFAULT.png -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_1.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_2.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_3.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_4.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_5.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_6.jpg -------------------------------------------------------------------------------- /docs/images/TASK_SHEDULER/IMG_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/TASK_SHEDULER/IMG_7.jpg -------------------------------------------------------------------------------- /docs/images/apache-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/apache-install.png -------------------------------------------------------------------------------- /docs/images/apache-setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/apache-setup.gif -------------------------------------------------------------------------------- /docs/images/apache-vhost.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/apache-vhost.gif -------------------------------------------------------------------------------- /docs/images/basic-config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/basic-config.gif -------------------------------------------------------------------------------- /docs/images/blues_whites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/blues_whites.png -------------------------------------------------------------------------------- /docs/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/download.png -------------------------------------------------------------------------------- /docs/images/generate-the-database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/generate-the-database.gif -------------------------------------------------------------------------------- /docs/images/git-clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/git-clone.gif -------------------------------------------------------------------------------- /docs/images/payssion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/payssion.png -------------------------------------------------------------------------------- /docs/images/php-datetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/php-datetime.png -------------------------------------------------------------------------------- /docs/images/php-extensions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/php-extensions.gif -------------------------------------------------------------------------------- /docs/images/php-path-env.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/php-path-env.gif -------------------------------------------------------------------------------- /docs/images/screenshots/account-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/account-panel.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_block_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_block_history.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_donate-statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_donate-statistic.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_home.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_news.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_news_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_news_create.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_statistic_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_statistic_user.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_ticket_answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_ticket_answer.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_user-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_user-details.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_user-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_user-panel.png -------------------------------------------------------------------------------- /docs/images/screenshots/admin_user_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/admin_user_block.png -------------------------------------------------------------------------------- /docs/images/screenshots/character-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/character-details.png -------------------------------------------------------------------------------- /docs/images/screenshots/character-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/character-panel.png -------------------------------------------------------------------------------- /docs/images/screenshots/dark_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/dark_mode.png -------------------------------------------------------------------------------- /docs/images/screenshots/default_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/default_mode.png -------------------------------------------------------------------------------- /docs/images/screenshots/playemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/playemap.png -------------------------------------------------------------------------------- /docs/images/screenshots/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/register.png -------------------------------------------------------------------------------- /docs/images/screenshots/ticket_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/ticket_detail.png -------------------------------------------------------------------------------- /docs/images/screenshots/ticket_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/images/screenshots/ticket_overview.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/info/CONTACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/info/CONTACT.md -------------------------------------------------------------------------------- /docs/info/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/info/FAQ.md -------------------------------------------------------------------------------- /docs/install/REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/REQUIREMENTS.md -------------------------------------------------------------------------------- /docs/install/centos-setup/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/centos-setup/INDEX.md -------------------------------------------------------------------------------- /docs/install/windows-setup/APACHE-CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/windows-setup/APACHE-CONFIG.md -------------------------------------------------------------------------------- /docs/install/windows-setup/APACHE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/windows-setup/APACHE.md -------------------------------------------------------------------------------- /docs/install/windows-setup/GIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/windows-setup/GIT.md -------------------------------------------------------------------------------- /docs/install/windows-setup/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/windows-setup/INDEX.md -------------------------------------------------------------------------------- /docs/install/windows-setup/TASK_SHEDULER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/install/windows-setup/TASK_SHEDULER.md -------------------------------------------------------------------------------- /docs/modules/CustomRanking/CUSTOM_WIDGETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/CustomRanking/CUSTOM_WIDGETS.md -------------------------------------------------------------------------------- /docs/modules/CustomRanking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/CustomRanking/README.md -------------------------------------------------------------------------------- /docs/modules/PServerCMSDonateAction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/PServerCMSDonateAction/README.md -------------------------------------------------------------------------------- /docs/modules/PServerSROUnique/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/PServerSROUnique/README.md -------------------------------------------------------------------------------- /docs/modules/PaymentAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/PaymentAPI/README.md -------------------------------------------------------------------------------- /docs/modules/SROItemPoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/SROItemPoints/README.md -------------------------------------------------------------------------------- /docs/modules/SROKill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/docs/modules/SROKill/README.md -------------------------------------------------------------------------------- /help/itemname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/help/itemname.txt -------------------------------------------------------------------------------- /install/rhel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/install/rhel.sh -------------------------------------------------------------------------------- /update/admin-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kokspflanze/PServerCMS/HEAD/update/admin-info.json --------------------------------------------------------------------------------