MyBB.de Forum
[NG] MyBB 1.8.33 auf PHP 8.1 - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: MyBB 1.8.x (https://www.mybb.de/forum/forum-87.html)
+--- Forum: Bugs (https://www.mybb.de/forum/forum-90.html)
+---- Forum: Gemeldete/Nicht gemeldete Bugs (https://www.mybb.de/forum/forum-92.html)
+---- Thema: [NG] MyBB 1.8.33 auf PHP 8.1 (/thread-38529.html)

Seiten: Seiten: 1 2 3


RE: MyBB 1.8.33 auf PHP 8.1 - bv64 - 29.04.2023

dann hast du etwas falsch gemacht, wie sieht die neue Zeile aus?

bin für heute allerdings jetzt weg


RE: MyBB 1.8.33 auf PHP 8.1 - Plattenspieler - 29.04.2023

Ich habe das hier ganz am Anfang eingefügt
Code:
$1['pages'] = "Seiten";
also so

Code:
<?php
/**
* German language pack for MyBB 1.8 (informal)
* Deutsches Sprachpaket für MyBB 1.8 "informell" (Du)
* (c) 2005-2014 MyBBoard.de
*
* Author/Autor: http://www.mybboard.de/
* License/Lizenz: GNU Lesser General Public License, Version 3
*/
$1['pages'] = "Seiten";

$l['redirect_width'] = "60%";
$l['lastvisit_never'] = "Nie";
$l['lastvisit_hidden'] = "(Versteckt)";



RE: MyBB 1.8.33 auf PHP 8.1 - Risu - 30.04.2023

(29.04.2023, 22:28)Plattenspieler schrieb: Ich habe das hier ganz am Anfang eingefügt
Code:
$1['pages'] = "Seiten";
also so

Code:
<?php
/**
* German language pack for MyBB 1.8 (informal)
* Deutsches Sprachpaket für MyBB 1.8 "informell" (Du)
* (c) 2005-2014 MyBBoard.de
*
* Author/Autor: http://www.mybboard.de/
* License/Lizenz: GNU Lesser General Public License, Version 3
*/
$1['pages'] = "Seiten";

$l['redirect_width'] = "60%";
$l['lastvisit_never'] = "Nie";
$l['lastvisit_hidden'] = "(Versteckt)";

nicht
PHP-Code:
$1['pages'] = "Seiten"
also nicht die zahl eins sondern der buchstabe L für 'language'

also
PHP-Code:
$l['pages'] = "Seiten"



RE: MyBB 1.8.33 auf PHP 8.1 - bv64 - 30.04.2023

gutes Auge, Risu, respekt !


RE: MyBB 1.8.33 auf PHP 8.1 - Plattenspieler - 30.04.2023

Yep, jetzt ist dieser Fehler weg. Danke.
Aber es wirft ja haufenweise davon.

Zitat: Warning [2] Constant IN_MYBB already defined - Line: 13 - File: portal/pversion.php PHP 8.2.5 (Linux)
Warning [2] Undefined array key "SEO_SUPPORT" - Line: 99 - File: portal.php PHP 8.2.5 (Linux)
Warning [2] Undefined array key "action" - Line: 22 - File: portal/blocks/block_usercp.php PHP 8.2.5 (Linux)
Warning [2] Undefined array key "action" - Line: 108 - File: portal/blocks/block_usercp.php PHP 8.2.5 (Linux)
Warning [2] Undefined variable $leftblocks - Line: 404 - File: portal.php PHP 8.2.5 (Linux)
Warning [2] Undefined variable $done_users - Line: 44 - File: portal/blocks/block_whosonline.php PHP 8.2.5 (Linux)
.
.
.
usw.
Muss ich die wirklich alle einzeln bearbeiten, oder hat da jemand eine universelle Lösung? Angel


RE: [NG] MyBB 1.8.33 auf PHP 8.1 - bv64 - 30.04.2023

es gibt drei Optionen

a) alle Warnings nacheinander abarbeiten und lösen
b) auf das ProPortal verzichten
c) Warnungen im ACP deaktivieren


RE: [NG] MyBB 1.8.33 auf PHP 8.1 - Plattenspieler - 30.04.2023

Das Portal ist der zentrale Anlaufpunkt meines Forums, das möchte ich weiter verwenden.
Wo kann ich das im ACP deaktivieren? Ich habe gesucht, aber leider nichts passendes gefunden


RE: [NG] MyBB 1.8.33 auf PHP 8.1 - bv64 - 30.04.2023

ACP --> Konfiguration --> Server & Optimierung --> Fehlerarten

wenn du das auf "Fehler" stellst, werden die wichtigen Meldungen noch gezeigt, die Warnings aber nicht mehr; sie sind natürlich weiterhin da


RE: [NG] MyBB 1.8.33 auf PHP 8.1 - Plattenspieler - 30.04.2023

Super, vielen Dank Smile


RE: [NG] MyBB 1.8.33 auf PHP 8.1 - StefanT - 01.05.2023

Ich schließe das Thema jetzt, da es sich hierbei nicht um einen Bug im MyBB handelt.