MyBB.de Forum
myBB tut nicht - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: myBB tut nicht (/thread-13735.html)



myBB tut nicht - Josh_ - 04.07.2009

Hallo ihr,

also erstmal: habe die Suchfunktion benutzt aber nix gefunden, was das Topic
direkt adressiert.
Bin Laie bzgl php und wollte mir mittels win/apache/mysql/mybb nicht nur
ne Website basteln, sondern auch gleich ein Forum dranpappen.

Jetzt kriege ich folgenden Fehler:

.pdf   mybb_error.pdf (Größe: 15,5 KB / Downloads: 12)

(siehe auch Anhang mybb_error.pdf)


Daraufhin habe ich in der classes_core.php den Kram einfach ausgesterndlt:

***
// Determine Magic Quotes Status
/* if(get_magic_quotes_gpc())
{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}
set_magic_quotes_runtime(0);
@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0); */
***

jetzt kann ich auf das Forum zwar zugreifen, es sieht aber höchst sonderbar
aus (siehe Anhang mbb_forums
.pdf   mbb_Forums.pdf (Größe: 806,05 KB / Downloads: 10) ).

Weiß jemand Abhilfe?



Viele Grüsse

Jörg


RE: myBB tut nicht - StefanT - 04.07.2009

Das MyBB ist mit PHP 5.3 noch nicht voll kompatibel. Es wird bald eine Lösung dafür geben.


RE: myBB tut nicht - Manuel - 04.07.2009

Mhh also ich habe gerade folgendes gelesen:

"In PHP6 wird diese Funktion komplett entfernt werden. Versuche die Funktion mit einem @ Zeichen aufzurufen '@set_magic_quotes_runtime(0);' oder kommentiere die Zeile aus"

Also nicht das ganze auskommentieren sondern nur diese Zeile. Aber vorzugsweise probiere es mit dem @-Zeichen.

@Stefan T
Eine Lösung wäre doch eigentlich eine Abfrage zu machen, ob die Funktion existiert und sie dann aufrufen. Also was wie
PHP-Code:
if ( function_exists 'set_magic_quotes_runtime' ) )
{
  
set_magic_quotes_runtime(0);




RE: myBB tut nicht - Josh_ - 04.07.2009

Danke euch. Mit welcher Version bin ich denn auch für ungeübte auf der sicheren Seite?


RE: myBB tut nicht - StefanT - 04.07.2009

PHP 5.2.10 funktioniert ohne Probleme.


RE: myBB tut nicht - StefanT - 13.07.2009

Workaround für MyBB 1.4.8: http://community.mybboard.net/thread-52195-post-372017.html#pid372017