Seite 1 von 1

Thread-Charakterisierungskennzeichnung durch MOD?

Verfasst: 22.12.2004 09:51
von Tanja64
Hallo,

wir benutzen das 2.0.10 b.z.w.2.0.11 nach update...das ganze im classic-Style mit Intro und Portal sowie dem Birthday-MOD....nun habe ich das neue Test-Forum 2.2. gesehen....dort kann man, wenn ich es richtig gesehen habe, die einzelnen Thread 'charakterisieren'..also durch einen Smiley oder ähnliches kennzeichnen....

Frage: Gibt es auch einen MOD, der das bei 2.0.11 bewirkt?
oder ist die Entwicklung solch eines MODs überhaupt möglich?

Verfasst: 22.12.2004 10:54
von Schumi
Solch einen Mod gibt es hier: http://www.phpbbhacks.com/download/1861

Verfasst: 22.12.2004 11:29
von Tanja64
super...danke....
muss ich da jetzt noch etwas ändern, wegen classic oder hat das mit dem Style nichts zu tun?
Und kann ich ihn über Easy hochladen?

(sorry, für die dummen Fragen, aber lieber einmal zuviel, als wieder Forum plattgemacht :-? )

Verfasst: 28.01.2005 17:28
von Tanja64
Heiho...
wir wollen nun endlich den MOD einbauen...doch stosse ich gleich auf erste Probleme...
#-----[ SQL ]-------------------------------------------------
#
ALTER TABLE phpbb_topics ADD topic_icon TINYINT(2);
ALTER TABLE phpbb_posts ADD post_icon TINYINT(2);
ALTER TABLE phpbb_posts ADD INDEX (post_icon);
#
Damit kann ich überhaupt nichts anfangen...kann mir das jemand gaaanz langsam erklären?

LG Tanja

Verfasst: 29.01.2005 12:25
von ATARI
hi tanja,

speichere folgenden code in einer datei mit der endung .php ab und lade diese in den forums_root, also da wo auch die memberlist.php zu finden ist und führe die datei dann über den browser aus:

Code: Alles auswählen

<?php
/***************************************************************************
 *                               db_update.php
 *                            -------------------
 *
 *   copyright            : ©2003 Freakin' Booty ;-P & Antony Bailey
 *   project              : http://sourceforge.net/projects/dbgenerator
 *   Website              : http://freakingbooty.no-ip.com/ & http://www.rapiddr3am.net
 *
 ***************************************************************************/

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);

//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//


if( !$userdata['session_logged_in'] )
{
	$header_location = ( @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')) ) ? 'Refresh: 0; URL=' : 'Location: ';
	header($header_location . append_sid("login.$phpEx?redirect=db_update.$phpEx", true));
	exit;
}

if( $userdata['user_level'] != ADMIN )
{
	message_die(GENERAL_MESSAGE, 'You are not authorised to access this page');
}


$page_title = 'Updating the database';
include($phpbb_root_path . 'includes/page_header.'.$phpEx);

echo '<table width="100%" cellspacing="1" cellpadding="2" border="0" class="forumline">';
echo '<tr><th>Updating the database</th></tr><tr><td><span class="genmed"><ul type="circle">';


$sql = array();
$sql[] = "ALTER TABLE " . $table_prefix . "topics ADD topic_icon TINYINT(2)";
$sql[] = "ALTER TABLE " . $table_prefix . "posts ADD post_icon TINYINT(2)";
$sql[] = "ALTER TABLE " . $table_prefix . "posts ADD INDEX (post_icon)";

for( $i = 0; $i < count($sql); $i++ )
{
	if( !$result = $db->sql_query ($sql[$i]) )
	{
		$error = $db->sql_error();

		echo '<li>' . $sql[$i] . '<br /> +++ <font color="#FF0000"><b>Error:</b></font> ' . $error['message'] . '</li><br />';
	}
	else
	{
		echo '<li>' . $sql[$i] . '<br /> +++ <font color="#00AA00"><b>Successfull</b></font></li><br />';
	}
}


echo '</ul></span></td></tr><tr><td class="catBottom" height="28">&nbsp;</td></tr>';

echo '<tr><th>End</th></tr><tr><td><span class="genmed">Installation is now finished. Please be sure to delete this file now.<br />If you have run into any errors, please visit the <a href="http://www.phpbbsupport.co.uk" target="_phpbbsupport">phpBBSupport.co.uk</a> and ask someone for help.</span></td></tr>';
echo '<tr><td class="catBottom" height="28" align="center"><span class="genmed"><a href="' . append_sid("index.$phpEx") . '">Have a nice day</a></span></td></table>';

include($phpbb_root_path . 'includes/page_tail.'.$phpEx);

?>

Verfasst: 06.02.2005 23:33
von Tanja64
hallo,

Atari, erstmal danke für die Erklärung. :)

Ich habe den Mod nun installiert und bekomme jetzt folgende Meldung:
Parse error: parse error, unexpected '?' in /www/htdocs/rasmus/phpBB2-2.0.10-deutsch/includes/functions.php on line 127

Fatal error: Call to undefined function: encode_ip() in /www/htdocs/rasmus/phpBB2-2.0.10-deutsch/common.php on line 212
Kann mir jemand helfen?
Wir wissen nicht mehr weiter.

LG Tanja

Verfasst: 07.02.2005 09:55
von Tanja64
Ich darf euch stolz verkünden, wir haben es geschafft, das Problem zu lösen und den MOD fehlerfrei um drei Uhr zum Laufen zu bringen. :grin: