From 7d1a6b785b0ea68a1ee5ecebec6aecdc62c5758a Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Mon, 10 Oct 2022 21:47:20 +0200 Subject: [PATCH 1/5] Update centos8.sh --- install/centos8.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/centos8.sh b/install/centos8.sh index 2086f3b..9d69ece 100644 --- a/install/centos8.sh +++ b/install/centos8.sh @@ -81,6 +81,7 @@ mkdir -p /var/opt/remi/php74/log/php-fpm # selinux setsebool -P httpd_can_network_connect on chcon -t httpd_sys_rw_content_t /var/www/page/data -R +restorecon -R /var/www/page # cache directory chown apache:apache -R /var/www/page/data From bb95d5ddcf3c5097cecac93081856be23bac5930 Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Mon, 10 Oct 2022 21:48:33 +0200 Subject: [PATCH 2/5] Update centos8.sh --- install/centos8.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/centos8.sh b/install/centos8.sh index 9d69ece..3a8e1a8 100644 --- a/install/centos8.sh +++ b/install/centos8.sh @@ -80,8 +80,8 @@ mkdir -p /var/opt/remi/php74/log/php-fpm # selinux setsebool -P httpd_can_network_connect on -chcon -t httpd_sys_rw_content_t /var/www/page/data -R restorecon -R /var/www/page +chcon -t httpd_sys_rw_content_t /var/www/page/data -R # cache directory chown apache:apache -R /var/www/page/data From 4f864af47bb2f5732bc5a61bd366667dbcec8ae8 Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Mon, 10 Oct 2022 22:07:10 +0200 Subject: [PATCH 3/5] Update README.md --- docs/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index dd1f263..c33d554 100644 --- a/docs/README.md +++ b/docs/README.md @@ -43,6 +43,7 @@ This doc provide you every thing for the first start with the PServerCMS - [Tiklaode](https://tiklaode.com/) (E-Pin Provider) - PayPal-IPN (not recommended) - Payssion +- DigiStore24 (Todo, on request) ### VotePostBackProvider - gamestop100 @@ -96,4 +97,4 @@ This doc provide you every thing for the first start with the PServerCMS - Monitoring - Setup (Linux, Windows) - Cloudflare GET-Attack Firewall -- special modules, what you need \ No newline at end of file +- special modules, what you need From 5de782658ac3dfc17bee901c1b5a91a9c733ad39 Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Mon, 10 Oct 2022 22:09:01 +0200 Subject: [PATCH 4/5] Update admin-info.json --- update/admin-info.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/update/admin-info.json b/update/admin-info.json index bda9953..8639604 100644 --- a/update/admin-info.json +++ b/update/admin-info.json @@ -1,4 +1,9 @@ [ + { + "headline" : "Session handling update", + "body" : "With the latest update, its possible to set https cookies, for more security.", + "datetime" : "2022-10-06T12:00:01Z" + }, { "headline" : "Updates of 2021", "body" : "- new donate provider added [cent.app](https://cent.app/) as alternative to PayOp.\n- new config added to use the register-password after mail-confirmation for the game without a form.\n- recaptcha support added\n- paymentwall signature update for version 2 and 3\n- session-handling update, with the update we only store the user-id in the session\n- coin-reseller role added, this role is for your resellers to give coins only\n- new donate Provider [HIPOPOTAMYA](https://www.hipopotamya.com/), like maxigame\n- ip handling update for hyperfilter\n- coin-reward procedure added\n- sql-logger added\n- change-email added\n- migrate to bs5\n- framework update to latest versions", From 44c96420aa3a2605d17fde138134b92f084ee6ca Mon Sep 17 00:00:00 2001 From: Oliver <1885435+kokspflanze@users.noreply.github.com> Date: Mon, 10 Oct 2022 22:09:51 +0200 Subject: [PATCH 5/5] Update README.md --- docs/modules/CustomRanking/README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/modules/CustomRanking/README.md b/docs/modules/CustomRanking/README.md index 5ce1016..f1685da 100644 --- a/docs/modules/CustomRanking/README.md +++ b/docs/modules/CustomRanking/README.md @@ -88,21 +88,21 @@ to define your own ranking, pages you have to overwrite or null the following pa return [ 'pserver' => [ - 'ranking-main' => [ + 'ranking-main' => [ 'default' => 'character', // overwrite default ranking ], 'ranking' => [ - 'top_player' => null, - 'top_guild' => null, - 'top_trader' => null, - 'top_hunter' => null, - 'top_thieves' => null, - 'top_honor' => null, - 'top_alliance' => null, - 'sro_kill_pvp' => null, - 'sro_kill_job' => null, - 'top_unique' => null, + 'top_player' => null, + 'top_guild' => null, + 'top_trader' => null, + 'top_hunter' => null, + 'top_thieves' => null, + 'top_honor' => null, + 'top_alliance' => null, + 'sro_kill_pvp' => null, + 'sro_kill_job' => null, + 'top_unique' => null, ], ], ]; -```` \ No newline at end of file +````