MyBB.de Forum
Acp Prob: databaseEngine - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: Acp Prob: databaseEngine (/thread-4312.html)

Seiten: Seiten: 1 2


RE: Acp Prob: databaseEngine - mr.pink - 28.12.2006

Das hab ich als erstes versucht.. Hat nix gebracht Sad


RE: Acp Prob: databaseEngine - Michael - 28.12.2006

Hat dein Hoster vielleicht etwas geändert? Von jetzt auf gleich kommt solch eine Fehlermeldung nicht.


RE: Acp Prob: databaseEngine - mr.pink - 28.12.2006

Is mein Server Smile


RE: Acp Prob: databaseEngine - Jan - 28.12.2006

Scheinbar wird eine eine If-Abfrage falsch beantwortet.
Oder eine Schleife wird zweimal durchlaufen.

Scheinbar wird eine Datei doppelt included.

Poste mal bitte die Zeile 5-25. Dann kann ich mal schauen was da nicht stimmt.
Danke


RE: Acp Prob: databaseEngine - mr.pink - 29.12.2006

Code:
<?php
/**
* MyBB 1.2
* Copyright © 2006 MyBB Group, All Rights Reserved
*
* Website: http://www.mybboard.com
* License: http://www.mybboard.com/eula.html
*
* $Id: db_mysql.php 1370 2006-04-16 13:47:01Z chris $
*/

class databaseEngine
{
    /**
     * The title of this layer.
     *
     * @var string
     */
    var $title = "MySQLi";

    /**
     * A count of the number of queries.
     *
     * @var int
     */
    var $query_count = 0;

    /**
     * A list of the performed queries.
     *
     * @var array
     */
    var $querylist = array();