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
Joined: Jan 2000
Posts: 796
MTO Offline
Addict
Addict
Offline
Joined: Jan 2000
Posts: 796
Cool, thanks!
Hope Rick sees it and decides to add it to the main distro, I think it should be there.

Joined: Jun 2001
Posts: 3,273
That 70's Guy
That 70's Guy
Offline
Joined: Jun 2001
Posts: 3,273
Perhaps he will. It's not to big of a code change.

Something simular could be used anywhere email addresses are displayed.

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
Very Cool!

Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
The Email link at the bottom is also a big source of SPAM

If you modify your ubbt_footer.tmpl file:

If you change this:

code:

<a href="mailto:{$config['emailaddy']}">


To a link to your profile.... or a profile for a general amin user..... like this:

code:

<a href="{$config['phpurl']}/showprofile.php?Cat=&User=ADMIN&page=1&what=showmembers">



Where it says "ADMIN" above... substitute the username you want to display for "general contact info" from your userlist.



Sponsored Links
Joined: Nov 2001
Posts: 10,369
I type Like navaho
I type Like navaho
Joined: Nov 2001
Posts: 10,369
This works fine for 6.1

Joined: Jun 2001
Posts: 3,273
That 70's Guy
That 70's Guy
Offline
Joined: Jun 2001
Posts: 3,273
Unfortunately I have learned that bots have progressed. Some can load and process dynamic content created with java.

Use my spiderfood hack and make them fat on junkfood.


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
isaac
isaac
California
Posts: 1,157
Joined: July 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
WebGuy 2
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 20221218)