phpBB için nofollow nofollow nedir: http://www.acemiblogcu.com/rel-nofollow-nedir/ özet: Google, arama robotunun bu tagı gördüğü linkleri değerlendirme dışı tutacağını bildirdi, daha sonra Yahoo! ve MSN de buna katıldı.
nofollow nasıl kullanılır:
<a href="http://www.example.com/" rel="nofollow">önemsenmeyecek site</a>
Eklenti ne yapar:
Aşağıda yazacağım yerlere nofollow ekler:
* mesaj içinde yazılan her türlü linke
* üyelerin profillerinde web sayfalarına
* üye listesinde üyelerin web sayfalarına
* İletilerdeki üyelerin web sayfalarına
##############################################################
## MOD Title: Deter Comment Spam
## MOD Author: TerraFrost < N/A > (Jim Wigginton) http://www.frostjedi.com/phpbb
## MOD Description: Provides a deterence to so-called comment spammers.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 1 Minutes
##
## Files To Edit: 4
## templates/subSilver/bbcode.tpl
## includes/bbcode.php
## includes/usercp_viewprofile.php
## memberlist.php
## viewtopic.php
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## slashdot.org recently ran an article on Comment Spammers and a new method that had been adopted
## by major search engines to combat them. This MOD does as that slashdot.org article suggested.
##
## The slashdot.org on Comment Spammers can be found here:
## http://it.slashdot.org/article.pl?sid=05/01/19/0516246&tid=111&tid=217
##
## For support / comments / whatever, visit here:
## http://www.frostjedi.com/phpbb/viewforum.php?f=33
##
## The latest version of this MOD can be found here:
## http://www.frostjedi.com/terra/scripts/phpbb/cspan.zip
##
##############################################################
## MOD History:
##
## 1.0.0: - initial release
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/bbcode.tpl
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
<!-- BEGIN url -->
#
#-----[ IN-LINE FIND ]----------------------------------
#
href="{URL}"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel="nofollow"
#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$ret = preg_replace("#
#
#-----[ IN-LINE FIND ]----------------------------------
#
href=\"\\2\"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel=\"nofollow\"
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$ret = preg_replace("#
#
#-----[ IN-LINE FIND ]----------------------------------
#
href=\"http://\\2\"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel=\"nofollow\"
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_viewprofile.php
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www_img =
#
#-----[ IN-LINE FIND ]----------------------------------
#
href="' . $profiledata['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel="nofollow"
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www =
#
#-----[ IN-LINE FIND ]---------------------------------
#
href="' . $profiledata['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]---------------------------
#
rel="nofollow"
#
#-----[ OPEN ]------------------------------------------
#
memberlist.php
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www_img =
#
#-----[ IN-LINE FIND ]----------------------------------
#
href="' . $row['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel="nofollow"
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www =
#
#-----[ IN-LINE FIND ]---------------------------------
#
href="' . $row['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]---------------------------
#
rel="nofollow"
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www_img =
#
#-----[ IN-LINE FIND ]----------------------------------
#
href="' . $postrow[$i]['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]----------------------------
#
rel="nofollow"
#
#-----[ FIND ]------------------------------------------
# this is a partial match
#
$www =
#
#-----[ IN-LINE FIND ]---------------------------------
#
href="' . $postrow[$i]['user_website'] . '"
#
#-----[ IN-LINE AFTER, ADD ]---------------------------
#
rel="nofollow"
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM