From cf742890dd97636afc9bd8239d08731312f045bd Mon Sep 17 00:00:00 2001 From: NaysKutzu Date: Mon, 13 May 2024 09:22:34 +0200 Subject: [PATCH] PUSH -> Update the links of MythicalDash --- .github/README.md | 4 ++-- Insomnia_2024-02-29.yaml | 12 ++++++------ app/ErrorHandler.php | 6 +++--- app/Telemetry.php | 10 +++++----- composer.lock | 8 ++++---- migrate/65.sql | 2 +- migrate/7.sql | 2 +- migrate/81.sql | 2 +- pages/index.html | 10 +++++----- view/admin/health.php | 2 +- view/admin/main.php | 2 +- view/install/servercheck.php | 32 ++++++++++++++++---------------- view/install/welcome.php | 8 ++++---- 13 files changed, 50 insertions(+), 50 deletions(-) diff --git a/.github/README.md b/.github/README.md index a5ccc3eb..997b6731 100644 --- a/.github/README.md +++ b/.github/README.md @@ -9,7 +9,7 @@ Do you want MythicalDash? You can find a step-by-step installation documentation over here:  -https://docs.mythicalsystems.me +https://docs.mythicalsystems.xyz ## Support For support, discord server: [discord.gg/freehost](https://discord.gg/3FWyugpznc) @@ -69,7 +69,7 @@ Yes, if you choose to install MythicalDash you agree with: ## Demo You can find a live deployment copy of MythicalDash here: -- https://devclient.mythicalsystems.me +- https://devclient.mythicalsystems.xyz ## Roadmap diff --git a/Insomnia_2024-02-29.yaml b/Insomnia_2024-02-29.yaml index c19597bf..acc2711a 100644 --- a/Insomnia_2024-02-29.yaml +++ b/Insomnia_2024-02-29.yaml @@ -333,7 +333,7 @@ resources: params: - id: pair_786fa7c51a9847758381b99be88d5942 name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" - id: pair_bd61ca0e3aa6445fb9c84423cbf4af37 name: coins @@ -422,7 +422,7 @@ resources: params: - id: pair_61239e6aebf748eaa512e784c5d06aae name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" - id: pair_49bc7f42e8f14355919bc9bcba11c16a name: coins @@ -491,7 +491,7 @@ resources: params: - id: pair_c594e08be34c4407823b1b5e47b3e653 name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" parameters: [] headers: @@ -528,7 +528,7 @@ resources: params: - id: pair_eae57274a71e470ba08874f58b9360ac name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" parameters: [] headers: @@ -565,7 +565,7 @@ resources: params: - id: pair_39a363f2bb3e4df3a116f4fd68b509b4 name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" parameters: [] headers: @@ -604,7 +604,7 @@ resources: parameters: - id: pair_0253fef8faa045e5894fc2766df9e28c name: email - value: admin@mythicalsystems.me + value: admin@mythicalsystems.xyz description: "" headers: - name: Content-Type diff --git a/app/ErrorHandler.php b/app/ErrorHandler.php index 68095801..bd2994ef 100644 --- a/app/ErrorHandler.php +++ b/app/ErrorHandler.php @@ -8,7 +8,7 @@ public static function Error($title, $text) $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=error&title=" . $title . "&message=" . $text, + CURLOPT_URL => "https://api.mythicalsystems.xyz/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=error&title=" . $title . "&message=" . $text, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -30,7 +30,7 @@ public static function Warning($title, $text) $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=warning&title=" . $title . "&message=" . $text, + CURLOPT_URL => "https://api.mythicalsystems.xyz/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=warning&title=" . $title . "&message=" . $text, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -51,7 +51,7 @@ public static function Critical($title, $text) $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=critical&title=" . $title . "&message=" . $text, + CURLOPT_URL => "https://api.mythicalsystems.xyz/problem?authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&project=mythicaldash&type=critical&title=" . $title . "&message=" . $text, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, diff --git a/app/Telemetry.php b/app/Telemetry.php index 3e8fb62e..ac3f66d3 100644 --- a/app/Telemetry.php +++ b/app/Telemetry.php @@ -8,7 +8,7 @@ public static function NewUser() $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/telemetry?project=mythicaldash&action=NewUser&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), + CURLOPT_URL => "https://api.mythicalsystems.xyz/telemetry?project=mythicaldash&action=NewUser&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -25,7 +25,7 @@ public static function NewServer() $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/telemetry?project=mythicaldash&action=NewServer&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), + CURLOPT_URL => "https://api.mythicalsystems.xyz/telemetry?project=mythicaldash&action=NewServer&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -42,7 +42,7 @@ public static function NewInstall() $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/telemetry?project=mythicaldash&action=NewInstall&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), + CURLOPT_URL => "https://api.mythicalsystems.xyz/telemetry?project=mythicaldash&action=NewInstall&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -59,7 +59,7 @@ public static function NewNode() $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/telemetry?project=mythicaldash&action=NewNode&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), + CURLOPT_URL => "https://api.mythicalsystems.xyz/telemetry?project=mythicaldash&action=NewNode&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, @@ -76,7 +76,7 @@ public static function NewTicket() $curl = curl_init(); curl_setopt_array($curl, [ - CURLOPT_URL => "https://api.mythicalsystems.me/telemetry?project=mythicaldash&action=NewTicket&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), + CURLOPT_URL => "https://api.mythicalsystems.xyz/telemetry?project=mythicaldash&action=NewTicket&authKey=AxWTnecj85SI4bG6rIP8bvw2uCF7W5MmkJcQIkrYS80MzeTraQWyICL690XOio8F&hastoken=".Encryption::generate_keynoinfo(), CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, diff --git a/composer.lock b/composer.lock index f09d720b..2b8a77c7 100644 --- a/composer.lock +++ b/composer.lock @@ -423,8 +423,8 @@ "authors": [ { "name": "NaysKutzu", - "email": "nayskutzu@mythicalsystems.me", - "homepage": "https://mythicalsystems.me", + "email": "nayskutzu@mythicalsystems.xyz", + "homepage": "https://mythicalsystems.xyz", "role": "Owner" } ], @@ -444,11 +444,11 @@ ], "support": { "chat": "https://discord.gg/Tswkrhreu3", - "docs": "https://docs.mythicalsystems.me", + "docs": "https://docs.mythicalsystems.xyz", "forum": "https://discord.gg/Tswkrhreu3", "issues": "https://github.com/mythicalltd/mythicalcore/issues", "source": "https://github.com/MythicalLTD/MythicalCore/tree/1.0.0.1", - "wiki": "https://docs.mythicalsystems.me" + "wiki": "https://docs.mythicalsystems.xyz" }, "funding": [ { diff --git a/migrate/65.sql b/migrate/65.sql index 7c26ba05..fbe5a263 100644 --- a/migrate/65.sql +++ b/migrate/65.sql @@ -1 +1 @@ -ALTER TABLE `mythicaldash_settings` CHANGE `bg` `bg` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '\'https://wallpapers.com/images/hd/minecraft-great-cave-walls-forest-hd-mm9b3bqe6qc6s96f.webp\'', CHANGE `ads_code` `ads_code` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '\'

Advertisement Title

This is a example

\"Gift Test
\''; \ No newline at end of file +ALTER TABLE `mythicaldash_settings` CHANGE `bg` `bg` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '\'https://wallpapers.com/images/hd/minecraft-great-cave-walls-forest-hd-mm9b3bqe6qc6s96f.webp\'', CHANGE `ads_code` `ads_code` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '\'

Advertisement Title

This is a example

\"Gift Test
\''; \ No newline at end of file diff --git a/migrate/7.sql b/migrate/7.sql index 1f61d3ef..f4f421de 100644 --- a/migrate/7.sql +++ b/migrate/7.sql @@ -1 +1 @@ -ALTER TABLE `mythicaldash_settings` ADD `enable_ads` ENUM('false','true') NOT NULL DEFAULT 'false' AFTER `enable_afk`, ADD `ads_code` TEXT NOT NULL DEFAULT '

Advertisement Title

This is a example

\"Gift Test
' AFTER `enable_ads`; \ No newline at end of file +ALTER TABLE `mythicaldash_settings` ADD `enable_ads` ENUM('false','true') NOT NULL DEFAULT 'false' AFTER `enable_afk`, ADD `ads_code` TEXT NOT NULL DEFAULT '

Advertisement Title

This is a example

\"Gift Test
' AFTER `enable_ads`; \ No newline at end of file diff --git a/migrate/81.sql b/migrate/81.sql index b17e4043..61808126 100644 --- a/migrate/81.sql +++ b/migrate/81.sql @@ -1 +1 @@ -ALTER TABLE `mythicaldash_settings` CHANGE `bg` `bg` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'https://wallpapers.com/images/hd/minecraft-great-cave-walls-forest-hd-mm9b3bqe6qc6s96f.webp', CHANGE `ads_code` `ads_code` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '

Advertisement Title

This is a example

\"Gift Test
'; \ No newline at end of file +ALTER TABLE `mythicaldash_settings` CHANGE `bg` `bg` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'https://wallpapers.com/images/hd/minecraft-great-cave-walls-forest-hd-mm9b3bqe6qc6s96f.webp', CHANGE `ads_code` `ads_code` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '

Advertisement Title

This is a example

\"Gift Test
'; \ No newline at end of file diff --git a/pages/index.html b/pages/index.html index 9769fbd7..2f00696a 100644 --- a/pages/index.html +++ b/pages/index.html @@ -7,7 +7,7 @@ - + @@ -54,8 +54,8 @@
  • Discord
  • -
  • Docs
  • -
  • Demo
  • +
  • Docs
  • +
  • Demo
  • @@ -69,7 +69,7 @@

    Launch your host and benefit from our expertise in designing and coding the best pterodactyl dashboard.

    @@ -374,7 +374,7 @@
    Lordwolfy
    -

    Copyright © 2021 - MythicalSystems

    +

    Copyright © 2021 - MythicalSystems

    diff --git a/view/admin/health.php b/view/admin/health.php index 9e36eecf..902c8eb3 100644 --- a/view/admin/health.php +++ b/view/admin/health.php @@ -75,7 +75,7 @@ ?>
    License More Projects - Documentation + Documentation Support
    @@ -360,13 +360,13 @@ class="h-auto rounded-circle" />