Recent Posts

Pages: [1] 2 3 ... 10
1
Second Re-release of the version 6.5.7 (31.01.2020)

Check first post for the changes (Changelog).
2
Updated JTS3ServerMod Hosting Edition to version 6.5.8 with small changes. Web Interface is still build 3039, no changes here. See changelog from the first post for a list of changes.
3
Allgemeine Diskussionen / Re: Admin passwort "vergessen"
« Last post by RichtigerBot on December 14, 2023, 11:07:26 AM »
Danke
5
Allgemeine Diskussionen / Admin passwort "vergessen"
« Last post by RichtigerBot on December 14, 2023, 10:12:58 AM »
Hallo,

ich habe eine sehr fragwürdige Situation. Vor einiger Zeit musste ich das Passwort des JTS3ServerMod webinterface zurücksetzen. Weil ich jedoch keinen SMTP server eingebunden habe musste, ich ein PHP script schrieben, was mit einen Hash + slat generiert hat, den ich dann in die DB einsetzen konnte. Jetzt steh ich vor dem gleichen Problem wieder. Habe aber eigentlich keine Lust mir wieder ein Script zusammen zu bauen..
Gibt es hier einen einfacheren Weg?
7
JTS3ServerMod Projects and Scripts from other people / Docker
« Last post by UncleSam on October 17, 2023, 08:59:23 PM »
Hi,


I have no real experience in running jts3servermod using docker, but I found a ways for me which seems to work fine. Feel free to try it. Of course this is NOT official - so use at your own risk.


Regarding the license system I have no clue at the moment if this is working as expected or not. Basically it has the same ip address but could have different hardware specs every time you delete the container and respawn it again.

I am not using a special docker container which contains the hosting files. Instead I am using the official openjdk image and just mount the bot-files inside. The benefit is also that this is not exposing any hosted files.


Requirements:

  • knowledge about docker and docker compose
  • working bot
  • reachable database (in my case I also host the database inside docker)
  • installed "docker compose" (or the old "docker-compose")
How To:
  • Create a new folder
  • Inside create the "docker-compose.yaml" files (see below)
  • Stop your bot and copy your bot folder in the subfolder "botfiles"
  • Add the "entrypoint.sh" inside this folder
Also make sure to update the binding and telnet whitelist.


After performin this steps start the container using "docker compose" and check if it fails for something.


docker-compose.yaml
Code: [Select]
version: '3.5'
services:
        jts3servermod:
                container_name: jts3servermod
                image: openjdk:22
                volumes:
                        - ./botfiles:/botfiles
                restart: unless-stopped
                environment:
                        TZ: Europe/Berlin
                entrypoint: ["/botfiles/entrypoint.sh"]


entrypoint.sh
Code: [Select]
#!/bin/sh
cd /botfiles


# delete pid and lock file which could lead into the bot not starting
rm -f /botfiles/config/jts3servermod.pid
rm -f /botfiles/config/JTS3ServerMod_InstanceManager.cfg.lock


# run the bot
/usr/bin/java -Xms1G -Xmx2G -jar JTS3ServerMod.jar
8
JTS3ServerMod MySQL & WebInterface / Re: php7 abgekündigt - Kommt php8 Unterstützung
« Last post by Stefan1200 on September 15, 2023, 07:48:39 PM »
Es ist weiterhin möglich mysqli mit PHP 8.1 und 8.2 zu verwenden, man muss ggf. ein Modul installieren und es aktivieren.
Ich habe nicht die Zeit den kompletten Datenbank Part im Web Interface neu zu machen, da das Wechseln von mysqli zu PDO nicht ist, was ich in wenigen Minuten machen kann.

It is still possible to use mysqli with PHP 8.1 and 8.2, you might have to install a module and have to enable it again.
I don't have the time to recreate the whole database part of the web interface, because switching from mysqli to PDO is nothing which I can do within some minutes.
9
JTS3ServerMod MySQL & WebInterface / php7 abgekündigt - Kommt php8 Unterstützung
« Last post by supertoasty on September 15, 2023, 07:01:54 PM »
Hallo zusammen,

wie bereits bekannt ist ist php7 abgekündigt und soll vermutlich nicht mehr weiter entwickelt werden.
Da im Webinterface die Datenbankverbindungen mit mysqli (welches in php8 nicht mehr unterstützt wird) durchgeführt werden, wollte ich mal fragen, ob bald auch php8 vom Webinterface unterstütz wird?

Liebe Grüße

supertoasty
10
Der Betrieb des Bots und des Interfaces ist wieder aktiv 8)

Eine neue Version des Anti-VPN-Plugins ist live.

Außerdem biete ich nun die Möglichkeit, dass Plugins entwickelt und in das Interface eingebunden werden.

Bitte schreibt mir eine private Nachricht mit allen Details zur Funktion, nur so ist es möglich, ein Plugin zu entwickeln und in das Interface einzubinden.

Da die Plugins als Premium-Plugin eingebunden werden, entstehen keine Kosten, die für die Entwicklung notwendig sind :)
Pages: [1] 2 3 ... 10