Nach dem Download habe ich jetzt eine install.txt, sowie das Verzeichnis \phpbb2 mit glance_config.php und glance.php.
Und nun??
Habe übrigens die Forum-Suche benutzt, hatte aber über 1000 Fundstellen

Code: Alles auswählen
## EasyMod 0.0.7 compliant
##############################################################
## MOD Title: List x last News and y Posts
## MOD Author: AWSW < > (AWSW) http://www.awsw.de
## MOD Description: Fügt zu Deinem phpBB2 eine Übersicht der letzten x News-Beiträge und y Beiträge aus den anderen Foren hinzu. Adds a list of x last News and y Posts to your phpBB2.
## MOD Version: 1.00
##
## Installation Level: easy
## Installation Time: 5 Minutes
##
## Generator: phpBB2 Mod Maker 0.1.67
##############################################################
## Author Notes:
## - Der MOD kann über die glance_config.php eingestellt werden.
## - The MOD can be configured in the glance_config.php.
##MOD Features:
## - Integrierter AtAGlance MOD V4+ zur Auflistung der letzten Themen und wenn gewünscht News im neuen Design
## - Erkennung verschiedener Beitragstypen: GLobale Ankündigungen, Umfragen, Ankündigungen, Wichtige und normale Beiträge
## - Markierung der Beiträge wie im Forum (neu / alt)
## - Verschiedenste Einstellungen über "glance_config.php" einstellbar...
## - In fast jeder .php Datei platzierbar (Hier wird die Funktion in den Index integriert)
## At A Glance Grundcode: At A Glance MOD @ www.phpbb.com
## Erweitert von: Netclectic @ http://www.netclectic.com
## Weiter erweitert von Acid @ www.phpbb.de, Netclectic @ http://www.netclectic.com und mir
## Besonderer Dank geht an Acid @ www.phpbb.de und Netclectic @ http://www.netclectic.com für die Erweiterung
## um die Globale Ankündigungsfunktion, Beitragstyperkennung und weitere Funktionserweiterungen.
## MOD Features:
## - Integrated AtAGlance MOD V4+ to list x last news and y posts
## - Different Topictypes: GLobal Announcements, Polls, Announcements, Sticky and normal topics
## At A Glance Sourcecode: At A Glance MOD @ www.phpbb.com
## Modded by: Netclectic @ http://www.netclectic.com
## Further modded by Acid @ www.phpbb.de, Netclectic @ http://www.netclectic.com and me.
## Special thanks goes to Acid @ www.phpbb.de and Netclectic @ http://www.netclectic.com for helping me to add the new features
##########################################################
## This MOD is released under the GPL License. Intellectual Property is retained by the MOD Author(s) listed above. http://www.gnu.org
##############################################################
## For Security Purposes, Please Check: http://www.awsw.de/ for the latest version of this MOD. Downloading this MOD from other sites could cause malicious code to enter into your phpBB Forum. You´ll find support to this MOD at http://www.phpbb.de/
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up Your Complete Database And All Files Related To This MOD !
###############################################################
#
#-----[ COPY TO FOLDER ]------------------------------------------
#
COPY phpBB2/glance.php TO glance.php
COPY phpBB2/glance_config.php TO glance_config.php
COPY phpBB2/templates/glance_body.tpl TO templates/glance_body.tpl
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
#
#-----[ AFTER, ADD ]------------------------------------------
#
// AtAGlance MOD V4.1:
include($phpbb_root_path . 'glance.'.$phpEx);
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/index_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<!-- BEGIN switch_user_logged_out -->
#
#-----[ BEFORE, ADD ]------------------------------------------
#
{GLANCE_OUTPUT}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Code: Alles auswählen
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
Code: Alles auswählen
// AtAGlance MOD V4.1:
include($phpbb_root_path . 'glance.'.$phpEx);
Code: Alles auswählen
<!-- BEGIN switch_user_logged_out -->
Code: Alles auswählen
{GLANCE_OUTPUT}