mod bots gezocht
Geplaatst: 02 apr 2007, 09:29
bestaat er eigenlijk een mod van bots die zich kunnen registeren en dat je ziet dat geweest zijn in de last visit ?
De reden dat het topic is gesloten, is omdat de maker van de MOD al een hele tijd zijn gezicht niet meer heeft laten zien. Mogelijkerwijs is de MOD ook een stille dood gestorven...calimero schreef:weet iemand nog waar ik hem kan downloaaden kan hem neregens vinden en op phpbb.com is het topic gesloten :S
Dat is handig, maar is er gewoon niet een mod die het via ip erkenning doet zonder dan gelijk in te loggen en style te kunnen selecteren en al die overbodige gedoe?Daan schreef:Mss is dit wat je bedoeld: http://www.phpbbservice.nl/viewtopic.php?f=31&t=901
Code: Selecteer alles
##############################################################
## MOD Title: Bot Indexing MOD - Install Dir Fix
## MOD Author: ABDev < n/a > (n/a) http://www.oxygen-powered.net/
## MOD Description: When a /install/ directory is on the FTP root,
## Bot Indexing MOD provokes an error for the guests.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 3 minutes
## Files To Edit: 1
## includes/functions.php
## Included Files:
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## Bot Indexing MOD 1.3.1 is required for this fix.
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]------------------------------------------
#
global $board_config, $theme, $images, $db, $table_prefix;
#
#-----[ REPLACE WITH ]------------------------------------------
#
global $board_config, $theme, $images;
#
#-----[ FIND ]------------------------------------------
#
# This may be a partial find and not the whole line(s)
#
if (IS_ROBOT)
{
$sql =
$result =
$row =
$theme =
} else {
$theme =
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
//-- mod : box indexing mod ----------------------------------------------------
//-- delete
/*-MOD
$theme = setup_style($board_config['default_style']);
MOD-*/
//-- add
if (!file_exists('install') && (IS_ROBOT))
{
$sql = 'SELECT bot_style FROM ' . BOTS_TABLE . ' WHERE bot_name = \'' . IS_ROBOT . '\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$theme = setup_style($row['bot_style']);
}
else
{
$theme = setup_style($board_config['default_style']);
}
//-- fin mod : box indexing mod ------------------------------------------------
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Code: Selecteer alles
This may be a partial find and not the whole line(s)
#
if (IS_ROBOT)
{
$sql =
$result =
$row =
$theme =
} else {
$theme =
}
Code: Selecteer alles
Bot Indexing Mod - Rank Color System Addon (auteur: chris3471 & addit)
Compatibilité: Rank Color System 0.1.3 - Bot Indexing Mod 1.3.0
auteur (addon): ABDev, Dragons | révision: 03/12/2006
als je de quote leest weet je het probleem, hier de oplossingcalimero schreef:alleen kan ik dit niet vindenCode: Selecteer alles
############################################################## ## Author Notes: ## ## Bot Indexing MOD 1.3.1 is required for this fix. ## ##############################################################
*KNIP*