Auktion Mod ala Ebay
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Hier gibts: http://www.php-styles.com/dload.php?act ... egory&id=3 die aktuellere Version mit Buttons und install.txt ...
FAQ sind fertig, kommen in bälde hinzu.
FAQ sind fertig, kommen in bälde hinzu.
www.dsaforum.de - DAS DSA Fanforum
Dann hast Du definitiv vergessen etwas einzubinden 
Support gibts btw. auch bei den Machern: http://www.phpbb-auction.com/

Support gibts btw. auch bei den Machern: http://www.phpbb-auction.com/
www.dsaforum.de - DAS DSA Fanforum
-
- Mitglied
- Beiträge: 20
- Registriert: 14.06.2004 13:33
- Wohnort: Wuppertal
- Kontaktdaten:
habe den auctions mod eingebaut und funktioniert soweit gut, nur im acp bei a2 roomangement kommt dieser fehler..
benutze minerva
Fatal error: Cannot redeclare get_max_depth() (previously declared in /home/www/web207/html/phpBB2/includes/functions.php:31) in /home/www/web207/html/phpBB2/includes/functions.php on line 31
das steht in der functions.php bei line 31
// get the depth level
function get_max_depth($cat_id)
{
global $db;
if ($cat_id < 0) $cat_id = 0;
$local_depth = 0;
$sql = "select * from " . CATEGORIES_TABLE . " where cat_main = $cat_id";
if( !($result = $db->sql_query($sql)) ) message_die(GENERAL_ERROR, 'Could not query categorie parm', '', __LINE__, __FILE__, $sql);
while ( $row = $db->sql_fetchrow($result) )
{
$branch_depth = get_max_depth( $row['cat_id'] );
if ( $cat_id > 0 ) $branch_depth++;
if ( $branch_depth > $local_depth ) $local_depth = $branch_depth;
}
return $local_depth;
}
benutze minerva
Fatal error: Cannot redeclare get_max_depth() (previously declared in /home/www/web207/html/phpBB2/includes/functions.php:31) in /home/www/web207/html/phpBB2/includes/functions.php on line 31
das steht in der functions.php bei line 31
// get the depth level
function get_max_depth($cat_id)
{
global $db;
if ($cat_id < 0) $cat_id = 0;
$local_depth = 0;
$sql = "select * from " . CATEGORIES_TABLE . " where cat_main = $cat_id";
if( !($result = $db->sql_query($sql)) ) message_die(GENERAL_ERROR, 'Could not query categorie parm', '', __LINE__, __FILE__, $sql);
while ( $row = $db->sql_fetchrow($result) )
{
$branch_depth = get_max_depth( $row['cat_id'] );
if ( $cat_id > 0 ) $branch_depth++;
if ( $branch_depth > $local_depth ) $local_depth = $branch_depth;
}
return $local_depth;
}
-
- Ehemaliges Teammitglied
- Beiträge: 5703
- Registriert: 26.02.2004 00:09
Versuch's mal so:
Ersetzte den von Dir geposteten Code mit diesem:
Gruß Christian
Ersetzte den von Dir geposteten Code mit diesem:
Code: Alles auswählen
if ( !function_exists(get_max_depth) )
{
function get_max_depth($cat_id)
{
global $db;
if ($cat_id < 0) $cat_id = 0;
$local_depth = 0;
$sql = "select * from " . CATEGORIES_TABLE . " where cat_main = $cat_id";
if( !($result = $db->sql_query($sql)) ) message_die(GENERAL_ERROR, 'Could not query categorie parm', '', __LINE__, __FILE__, $sql);
while ( $row = $db->sql_fetchrow($result) )
{
$branch_depth = get_max_depth( $row['cat_id'] );
if ( $cat_id > 0 ) $branch_depth++;
if ( $branch_depth > $local_depth ) $local_depth = $branch_depth;
}
return $local_depth;
}
}
---
-
- Mitglied
- Beiträge: 20
- Registriert: 14.06.2004 13:33
- Wohnort: Wuppertal
- Kontaktdaten:
habe ich ersetzt. jetzt steht da aber..
Fatal error: Cannot redeclare get_auth_cat_order() (previously declared in /home/www/web207/html/phpBB2/includes/functions.php:50) in /home/www/web207/html/phpBB2/includes/functions.php on line 50
zeile 49-52
// build the cat list sorted
function get_auth_cat_order(&$cat_row, &$cat_list, $cat_main=0, $level=0)
{
global $db;
weisst du dafür auch ne lösung?
Fatal error: Cannot redeclare get_auth_cat_order() (previously declared in /home/www/web207/html/phpBB2/includes/functions.php:50) in /home/www/web207/html/phpBB2/includes/functions.php on line 50
zeile 49-52
// build the cat list sorted
function get_auth_cat_order(&$cat_row, &$cat_list, $cat_main=0, $level=0)
{
global $db;
weisst du dafür auch ne lösung?
-
- Ehemaliges Teammitglied
- Beiträge: 5703
- Registriert: 26.02.2004 00:09
-
- Mitglied
- Beiträge: 20
- Registriert: 14.06.2004 13:33
- Wohnort: Wuppertal
- Kontaktdaten:
danke für deine bemühungen
http://www.wtal-city.de/phpBB2/functions.txt
http://www.wtal-city.de/phpBB2/admin_auction_room.txt
http://www.wtal-city.de/phpBB2/functions.txt
http://www.wtal-city.de/phpBB2/admin_auction_room.txt
-
- Ehemaliges Teammitglied
- Beiträge: 5703
- Registriert: 26.02.2004 00:09
Versuch mal das: Danach sollte auf jeder Seite oben stehen:
Gruß Christian
Code: Alles auswählen
----- öffne -----
common.php
----- suche ------
<?php
----- füge danach ein -----
echo ("common.php wurde aufgerufen<br>");
----- öffne -----
includes/functions.php
----- suche ------
<?php
----- füge danach ein -----
echo ("functions.php wurde aufgerufen<br>");
Was (wie oft) steht da jetzt bei Dir?common.php wurde aufgerufen
functions.php wurde aufgerufen
Gruß Christian
---
-
- Mitglied
- Beiträge: 20
- Registriert: 14.06.2004 13:33
- Wohnort: Wuppertal
- Kontaktdaten:
beim einloggen ist jetzt folgendes: [ externes Bild ]
beim ausloggen steht:
common.php wurde aufgerufen
functions.php wurde aufgerufen
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2) in /home/www/web207/html/phpBB2/includes/sessions.php on line 375
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2) in /home/www/web207/html/phpBB2/includes/sessions.php on line 376
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2)
in /home/www/web207/html/phpBB2/includes/functions.php on line 1144
bei jder anderen seite steht immer nur :
common.php wurde aufgerufen
functions.php wurde aufgerufen
beim ausloggen steht:
common.php wurde aufgerufen
functions.php wurde aufgerufen
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2) in /home/www/web207/html/phpBB2/includes/sessions.php on line 375
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2) in /home/www/web207/html/phpBB2/includes/sessions.php on line 376
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web207/html/phpBB2/common.php:2)
in /home/www/web207/html/phpBB2/includes/functions.php on line 1144
bei jder anderen seite steht immer nur :
common.php wurde aufgerufen
functions.php wurde aufgerufen