Seite 1 von 2
Online Statik im Index spinnt
Verfasst: 29.03.2004 00:27
von Elvis
habe mal Testweise mich gereggt alsUser testq, dann ausgeloggt und als Admin rein ins Forum und ihn gelöscht.
Nun steht der immer noch da
Der neueste Benutzer ist testq.
das ist doch net normal oder ?
wie bekomme ich den da gelöscht ?
Verfasst: 29.03.2004 00:28
von Andy120
Kann ich mir das mal anschauen? Poste bitte mal den Link
Verfasst: 29.03.2004 00:33
von Elvis
wenn dir der normale Link reicht
Forum
kannste aber auch auf das www oder meiner Sig klicken

Verfasst: 29.03.2004 00:35
von Andy120
Ups hab ich übersehen, aber jetzt zurück zum Thema:
Versuch mal die Datei nochmals Hochzuladen:
includes/usercp_viewprofile.php
Verfasst: 29.03.2004 06:44
von Dave
Benutzt du den [RC] Categories hierarchy 2.0.5 ?
Verfasst: 29.03.2004 16:55
von Elvis
mhh eigentlcih net nur 2.05
##############################################################
## MOD Title: Categories hierarchy 2.0.5 - Part 1 - install first MOD-cache
## MOD Author: Ptirhiik <
ptirhiik@clanmckeen.com > (Pierre)
http://rpgnet.clanmckeen.com
## MOD Description:
## This mod allows to attach a categorie to a higher level categorie,
## keeping all the forum visible on the index page (vBulletin-like view),
## or have a sub-forum view.
## ----------------------------------------------------------------------
## o MOD-Cache part IS required : you have to install it, even if you don't plan to use it
## Install it FIRST
## o Part 1 is the main installation,
## o Part 2 is the facultative modifications of the standard phpBB admin forums prog,
## and is not required if you want to use the new admin forums tool.
## ----------------------------------------------------------------------
##
## MOD Version: 2.0.5
##
## Installation Level: Moderate
## Installation Time: 60 Minutes
## Files To Edit:
nur das habe ich geändert am Mod.
http://www.phpbb.de/viewtopic.php?t=50976&highlight=
Verfasst: 01.04.2004 14:58
von Dave
Ich denke mal den Cache hast du nicht aktiviert oder?
Verfasst: 01.04.2004 17:00
von Elvis
Installiert habe ich die 3 nach der reihe
Cache 0.0.2
Categories hierarchy 2.0.5 - Part 1 - install firs 2.0.5
Categories hierarchy - part 2 (std admin forum man)
soltle eigentlcih richtig sein.
Verfasst: 01.04.2004 17:24
von Dave
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
admin/admin_forums_extend.php
#
#-----[ FIND ]----------------------------------------------
#
if( $db->sql_numrows($result) > 0 )
{
$sql = "UPDATE " . PRUNE_TABLE . "
SET prune_days = " . intval($item['prune_days']) . ",
prune_freq = " . intval($item['prune_freq']) . "
WHERE forum_id = " . intval($item['id']);
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
$item['prune_days'] = $HTTP_POST_VARS['prune_days'];
$item['prune_freq'] = $HTTP_POST_VARS['prune_freq'];
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
includes/functions_cache.php
#
#-----[ FIND ]------------------------------------------------
#
* version : 1.0.0 - 15/12/2003
#
#-----[ REPLACE WITH ]----------------------------------------
#
* version : 1.0.1 - 16/01/2004
#
#-----[ FIND ]------------------------------------------------
#
if ( defined('USERS_STATS_DONE') )
{
return;
}
define('USERS_STATS_DONE', true);
// read registered users info (number and last)
#
#-----[ REPLACE WITH ]----------------------------------------
#
// read registered users info (number and last)
#
#-----[ FIND ]------------------------------------------------
#
if ( defined('BOARD_STATS_DONE') )
{
return;
}
define('BOARD_STATS_DONE', true);
// read topics and posts info
#
#-----[ REPLACE WITH ]----------------------------------------
#
// read topics and posts info
#
#-----[ FIND ]------------------------------------------------
#
$fname = $phpbb_root_path . './includes/def_tree.' . $phpEx;
@chmod($fname, 0666);
$handle = @fopen($fname, 'w');
@fwrite($handle, $res);
@fclose($handle);
#
#-----[ REPLACE WITH ]----------------------------------------
#
$cache_path = 'includes/';
$cache_file = 'def_tree';
$handle = @fopen($phpbb_root_path . $cache_path . $cache_file . '.' . $phpEx, 'w');
@flock($fp, LOCK_EX);
@fwrite($handle, $res);
@flock($fp, LOCK_UN);
@fclose($handle);
@umask(0000);
@chmod($phpbb_root_path . $cache_path . $cache_file . '.' . $phpEx, 0666);
#
#-----[ FIND ]------------------------------------------------
#
if ( !defined('CACHE_WORDS') || defined('CACHE_WORDS_DONE') )
{
return;
}
define('CACHE_WORDS_DONE', true);
#
#-----[ REPLACE WITH ]----------------------------------------
#
if ( !defined('CACHE_WORDS') )
{
return;
}
#
#-----[ FIND ]------------------------------------------------
#
if ( !defined('CACHE_THEMES') || defined('CACHE_THEMES_DONE') )
{
return;
}
define('CACHE_THEMES_DONE', true);
#
#-----[ REPLACE WITH ]----------------------------------------
#
if ( !defined('CACHE_THEMES') )
{
return;
}
#
#-----[ FIND ]------------------------------------------------
#
if ( !defined('CACHE_SMILIES') || defined('CACHE_SMILIES_DONE') )
{
return;
}
define('CACHE_SMILIES_DONE', true);
#
#-----[ REPLACE WITH ]----------------------------------------
#
if ( !defined('CACHE_SMILIES') )
{
return;
}
#
#-----[ FIND ]------------------------------------------------
#
if ( !defined('CACHE_RANKS') || defined('CACHE_RANKS_DONE') )
{
return;
}
define('CACHE_RANKS_DONE', true);
#
#-----[ REPLACE WITH ]----------------------------------------
#
if ( !defined('CACHE_RANKS') )
{
return;
}
#
#-----[ FIND ]------------------------------------------------
#
if ( !defined('CACHE_BIRTHDAY') || !defined('PCP_INSTALLED') || defined('CACHE_BIRTHDAY_DONE') )
{
return;
}
define('CACHE_BIRTHDAY_DONE', true);
#
#-----[ REPLACE WITH ]----------------------------------------
#
if ( !defined('CACHE_BIRTHDAY') || !defined('PCP_INSTALLED') )
{
return;
}
#
#-----[ FIND ]------------------------------------------------
#
$fname = $phpbb_root_path . './includes/' . $cache_file . '.' . $phpEx;
@chmod($fname, 0666);
$handle = @fopen($fname, 'w');
@fwrite($handle, $res);
@fclose($handle);
#
#-----[ REPLACE WITH ]----------------------------------------
#
$cache_path = 'includes/';
$handle = @fopen($phpbb_root_path . $cache_path . $cache_file . '.' . $phpEx, 'w');
@flock($fp, LOCK_EX);
@fwrite($handle, $res);
@flock($fp, LOCK_UN);
@fclose($handle);
@umask(0000);
@chmod($phpbb_root_path . $cache_path . $cache_file . '.' . $phpEx, 0666);
#
#-----[ OPEN ]------------------------------------------------
#
includes/cache_tpls/def_smilies_def.php
#
#-----[ FIND ]------------------------------------------------
#
<!-- END smilies -->
#
#-----[ REPLACE WITH ]----------------------------------------
#
<!-- END cache_row -->
#
#-----[ OPEN ]------------------------------------------------
#
admin/admin_users.php
#
#-----[ FIND ]------------------------------------------------
#
<?php
#
#-----[ AFTER, ADD ]------------------------------------------
#
//-- mod : cache -----------------------------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------------
#
$message = $lang['User_deleted'] . '<br /><br />' . sprintf($lang['Click_return_useradmin'], '<a href="' . append_sid("admin_users.$phpEx") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid("index.$phpEx?pane=right") . '">', '</a>');
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
//-- mod : cache -----------------------------------------------------------------------------------
//-- add
users_stats();
cache_birthday();
//-- fin mod : cache -------------------------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------------
#
$message .= '<br /><br />' . sprintf($lang['Click_return_useradmin'], '<a href="' . append_sid("admin_users.$phpEx") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid("index.$phpEx?pane=right") . '">', '</a>');
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
//-- mod : cache -----------------------------------------------------------------------------------
//-- add
// the username may have changed
users_stats();
cache_birthday();
//-- fin mod : cache -------------------------------------------------------------------------------
#
#-----[ OPEN ]------------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------------
#
$message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
//-- mod : cache -----------------------------------------------------------------------------------
//-- add
// the username may have changed
users_stats();
cache_birthday();
//-- fin mod : cache -------------------------------------------------------------------------------
mach die fixes mal

Verfasst: 01.04.2004 19:51
von Elvis
Danke Dave
hat geklappt.