Previous Thread
Next Thread
Print Thread
Rate Thread
Joined: Jun 2001
Posts: 3,273
That 70's Guy
That 70's Guy
Offline
Joined: Jun 2001
Posts: 3,273
This small hack will protect member's "Fake Email" from spam bots by hiding the mailto address in javascript.

In your showprofile.php script find this:

code:

// -----------------------------
// Show the profile if it exists
$columns = 2;
if ($CheckUser) {



and change it to this:

code:

// -----------------------------
// Show the profile if it exists
$columns = 2;
if ($CheckUser) {

if ($Fakeemail) {
$FakeEmailArray = split("@",$Fakeemail);
$MailName = $FakeEmailArray[0];
$MailAddy = $FakeEmailArray[1];
$EmailJavaPrint = "<script language="javascript" type="text/javascript"> var MailName = '$MailName'; var MailAddy = '$MailAddy';document.write('<a href="mailto:'+MailName+'@'+MailAddy+'">'+MailName+'@'+MailAddy+'</a>');</script>";
}
else {
$EmailJavaPrint = "";
}



Now in your showprofile.tmpl template file find this:

code:

<a href="mailto:$Fakeemail">$Fakeemail</a>



and change it to this:

code:

$EmailJavaPrint



As far as I know spam bots have no ability to read text dynamicly created with javascript. This will keep the member's email hidden from them and those users with javascript disabled. LoL


Working Example Here

Last edited by JustDave; 06/29/2002 10:51 PM.
Sponsored Links
Entire Thread
Subject Posted By Posted
[UBBT 6.0] Profile Email protection from Spam Bots JustDave 06/30/2002 5:47 AM
Re: [UBBT 6.0] Profile Email protection from Spam MTO 06/30/2002 4:21 PM
Re: [UBBT 6.0] Profile Email protection from Spam JustDave 06/30/2002 4:26 PM
Re: [UBBT 6.0] Profile Email protection from Spam JoshPet 06/30/2002 7:10 PM
Re: [UBBT 6.0] Profile Email protection from Spam JoshPet 06/30/2002 7:51 PM
Re: [UBBT 6.0] Profile Email protection from Spam JoshPet 09/07/2002 9:04 PM
Re: [UBBT 6.0] Profile Email protection from Spam JustDave 09/07/2002 9:06 PM

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Bill B
Bill B
Issaquah, WA
Posts: 87
Joined: December 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240506)