Buy Sell Discuss UK Domain Names at AcornDomains.co.uk

Today's Drop Dates are: 07-11-2011 or 14-11-2011   All times are GMT. The time now is 06:55:14 PM.
Domain Name Sales Domain Software Calculate UK Domain Drop Dates Domain Registration NameDrive Domain Parking Subscribe to our Domains For Sale newsletter
Go Back   Domain Forum Acorn Domains Buy Sell Auction UK Domains > Website Design and Promotion > Website Design > Scripts and Coding
Connect with Facebook

Scripts and Coding PHP, MySQL, scripts

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 20-12-2008, 07:56:22 PM     #1 (permalink)

 
woopwoop's Avatar
 
Join Date: Jan 2007
Posts: 1,483
woopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond repute

display email in a safe not scrapable way

Doe anyone know how to display an email address in a way that will not allow it to be automaticallly gathered by crawling scripts. Similar to how facebook do it (almost like showing the email as an image). Or even a different way.

The email and other info will be pulled from a database.

I don't care if the email is displayed without the mailto: and isn't clickable, it just needs to be displayed.

Thanks for any help.
woopwoop is offline  
Old 20-12-2008, 08:16:29 PM     #2 (permalink)

 
Systreg's Avatar
 
Join Date: Oct 2008
Location: County Cork Republic of Ireland
Posts: 3,906
Systreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond reputeSystreg has a reputation beyond repute

Domain Trader Rating:
(100% / 104)
@ WoopWoop, you can use an email obfuscator, a few ideas below or Google email obfuscator:

Celtic Productions :: Articles :: Email :: PHP Email Obfuscator

Spam Bots Part 1 - anti spam information to help you stop spam

Obfuscator tools:

Email Obfuscator

Email Obfuscator
__________________
For Sale sat.co.uk - pda.co.uk
Systreg is online now  
Old 21-12-2008, 12:20:36 AM     #3 (permalink)

 
accelerator's Avatar
 
Join Date: Apr 2005
Location: England
Posts: 4,764
accelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond reputeaccelerator has a reputation beyond repute

I don't know for sure but I reckon if you were using PHP you would be able to use some of the graphic display modules to convert text to an image.

Rgds
accelerator is offline  
Old 21-12-2008, 09:08:36 AM     #4 (permalink)

 
woopwoop's Avatar
 
Join Date: Jan 2007
Posts: 1,483
woopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond repute

Thanks for the suggestions systreg. Accel. I've been trying to find something that works giving a graphic display with php... just couldn't think of the right search term - I think systreg hit the nail on the head with 'Obfuscator'

Appreciate the tips guys.
woopwoop is offline  
Old 21-12-2008, 10:55:27 PM     #5 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,501
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

The big issue with those javascript options is PDA's, Mobiles and Smart Phones don't like them much, and lots of people don't have javascript enabled on their machines so your cutting them out using a purely javascript option.

Also unless your use a unique custom wrote function spambots detect the code that everyone uses and pieces together emails in the examples that systreg posted, so its not that safe.

I personally use forms but when I need to display an email I use a graphic that used a gradient colour to make it harder for OCR spam bots to read the image, I also pull the emails from a database if there are alot of them or if just a few I use a Select Case / Switch like

Quote:
switch (strtolower($email_id)) {
case "0":
$email = "name@dom.com";
break;

case "1":
$email = "sales@dom.com";
break;

case "admin":
$email = "admin@dom.com";
break;

case "info":
$email = "info@dom.com";
break;

default:
$email = "info@dom.com";
break;
}
I then pass it to a function I bastardised from PHP script to convert email addresses to graphic to generate my graphic, then wrap the graphic in a link to my form.

Then when someone clicks on a link, I forward them to my form with the email pre-selected by the contact.php?id=0/1/admin/info, the form has a captcha code on it too. That way people can either write the email down or use the form provided.

Its trial and error what you do but you need to try each thing and see how it works out for you.

.
__________________
Browse:
Skinner is offline  
Old 21-12-2008, 11:35:00 PM     #6 (permalink)

 
woopwoop's Avatar
 
Join Date: Jan 2007
Posts: 1,483
woopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond repute

Thanks skinner, I'm p[lanning on working on this later through the night, I think the tips here will help me a lot. Really appreciate it.
woopwoop is offline  
Old 22-12-2008, 10:58:33 PM     #7 (permalink)

 
grantw's Avatar
 
Join Date: Mar 2005
Posts: 3,597
grantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond reputegrantw has a reputation beyond repute

I have a small php script that will do this woop woop. You just need GD to be installed on your server (it probably is by default) then call the image like so:

<img src="img.php?text='.$email.'">

Where $email is your text. It caches the genereated images too. Let me know if you want it.

Grant
grantw is offline  
Old 27-12-2008, 12:57:32 PM     #8 (permalink)

 
woopwoop's Avatar
 
Join Date: Jan 2007
Posts: 1,483
woopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond reputewoopwoop has a reputation beyond repute

Hi Grant,

I'll pm you my email address - would be great if you could send me this.
I never got round to researching this.

Thanks

Matt
woopwoop is offline  
Old 27-12-2008, 09:35:14 PM     #9 (permalink)

 
Skinner's Avatar
 
Join Date: Jul 2008
Location: Manchester
Posts: 2,501
Skinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond reputeSkinner has a reputation beyond repute

Grant won't that script still leave the email visible in the html and the spam bots will still read it ?
__________________
Browse:
Skinner is offline  
Closed Thread



Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Domain Name Community Replies Last Post
Monetising domain names with paid email addresses bb99 Affiliate Marketing 15 28-05-2009 08:52:19 AM

Domain Sponsor 2


All times are GMT. The time now is 06:55:14 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.6.0 RC 2
All content on Acorn Domains is member generated and is not moderated before posting. All content is viewed and used by you at your own risk and AD does not warrant the accuracy or reliability of any of the information. The views expressed are those of the individual contributors and not necessarily those of AD. Please contact us to report any issues or send a PM to "Admin".