diff --git a/INSTALL.md b/INSTALL.md
index 6afa5384..386791fd 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -1,4 +1,4 @@
-# Xenomporio installation
+# OpenXE installation
## Place the installation files into a folder in /var/www/html/.
@@ -6,17 +6,17 @@
e.g. Release 1.0:
-`sudo wget https://github.com/xenomporio-org/Xenomporio/archive/refs/tags/V.1.0.zip`
+`sudo wget https://github.com/openxe-org/OpenXE/archive/refs/tags/V.1.0.zip`
`unzip V.1.0.zip`
## Set folder permissions:
-`sudo chown www-data:www-data Xenomporio-V.1.0 -R`
+`sudo chown www-data:www-data OpenXE-V.1.0 -R`
## Fire up the setup page in a browser
-http://yourserverip/Xenomporio-V.1.0 (watch out, its case sensitive)
+http://yourserverip/OpenXE-V.1.0 (watch out, its case sensitive)
diff --git a/README.md b/README.md
index 81c925de..0e1c0c0e 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# OpenXE - The free ERP
-
+
OpenXE ist eine umfassende webbasierte Anwendung zur Abwicklung aller kaufmännischen Prozesse. Zu den Funktionen gehören unter Anderem:
@@ -23,7 +23,7 @@ Wir freuen uns über Eure Teilnahme, egal ob als stiller Mitleser oder aktiver U
# Letzte Änderungen: Ticket System
-Neu in [V.1.3](https://github.com/xenomporio-org/Xenomporio/releases/tag/V.1.3):
+Neu in [V.1.3](https://github.com/openxe-org/OpenXE/releases/tag/V.1.3):
Neuimplementierung des Xentral 20 Enterprise Ticketsystems mit vielen Verbesserungen, z.B.:
- Anhänge werden auch bei ausgehenden Nachrichten gespeichert
- Verbesserte Kommentarfunktion
diff --git a/SERVER_INSTALL.md b/SERVER_INSTALL.md
index 9546128d..56944873 100644
--- a/SERVER_INSTALL.md
+++ b/SERVER_INSTALL.md
@@ -129,7 +129,7 @@ installation should now be secure.
Thanks for using MariaDB!
```
-## Create database for xenomporio
+## Create database for openxe
`mysql -u root -p`
```
@@ -141,13 +141,13 @@ Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
-MariaDB [(none)]> CREATE DATABASE xenomporio;
+MariaDB [(none)]> CREATE DATABASE openxe;
Query OK, 1 row affected (0.001 sec)
-MariaDB [(none)]> CREATE USER 'xenomporio'@'localhost' IDENTIFIED BY 'enteryourpasswordhere';
+MariaDB [(none)]> CREATE USER 'openxe'@'localhost' IDENTIFIED BY 'enteryourpasswordhere';
Query OK, 0 rows affected (0.015 sec)
-MariaDB [(none)]> GRANT ALL PRIVILEGES ON xenomporio.* TO 'xenomporio'@'localhost' WITH GRANT OPTION;
+MariaDB [(none)]> GRANT ALL PRIVILEGES ON openxe.* TO 'openxe'@'localhost' WITH GRANT OPTION;
Query OK, 0 rows affected (0.012 sec)
MariaDB [(none)]> FLUSH PRIVILEGES;
@@ -159,7 +159,7 @@ Bye
```
You can test your database like this:
-`mysql -u xenomporio -p`
+`mysql -u openxe -p`
```
Enter password:
@@ -176,7 +176,7 @@ MariaDB [(none)]> show databases;
| Database |
+--------------------+
| information_schema |
-| xenomporio |
+| openxe |
+--------------------+
2 rows in set (0.001 sec)
@@ -185,4 +185,4 @@ Bye
```
## --> Reset your server
-Continue with [Xenomporio Installation](INSTALL.md)
+Continue with [OpenXE Installation](INSTALL.md)
diff --git a/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php b/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php
index 971f7714..e43eb095 100644
--- a/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php
+++ b/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php
@@ -23,7 +23,7 @@ final class FactoryMethodDefinition
if (!is_callable($callable, false)) {
/*
- xenomporio
+ OpenXE-todo
unknown compatibility issue
commented out as hotfix
diff --git a/classes/Core/ErrorHandler/ErrorPageData.php b/classes/Core/ErrorHandler/ErrorPageData.php
index dcc16f42..469d65df 100644
--- a/classes/Core/ErrorHandler/ErrorPageData.php
+++ b/classes/Core/ErrorHandler/ErrorPageData.php
@@ -20,7 +20,7 @@ final class ErrorPageData implements JsonSerializable
public function __construct($exception, $title = null)
{
$this->exception = $exception;
- $this->title = !empty($title) ? (string)$title : 'Xenomporio: Es ist ein unerwarteter Fehler aufgetreten!';
+ $this->title = !empty($title) ? (string)$title : 'OpenXE: Es ist ein unerwarteter Fehler aufgetreten!';
}
diff --git a/cronjobs/chat.php b/cronjobs/chat.php
index 3c148555..6010eceb 100644
--- a/cronjobs/chat.php
+++ b/cronjobs/chat.php
@@ -421,7 +421,7 @@ function GetHtmlMessage($receipientName, $messageTotalCount, $messages = [])