WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Droplets & Snippets => Topic started by: Bramus on August 19, 2008, 02:07:18 PM

Title: IP in the e-mail - Form Module
Post by: Bramus on August 19, 2008, 02:07:18 PM
As I just used this snippet from Aldus for my own website, i think it comes in handy to post it in there. It was originally posted by Aldus in the german forum. I asked him if i could post it here and in the Dutch forum, and that was ok.

What does it do?
If some one sends you a message by using the form module on your website, you will see on the bottom the IP of the user who send you this. Comes in handy by blocking different IP's on your site, or for webshops as in NL this can work in advance for you if some one orders something by the website.

How to Install?
Copy the code below into rule 392 of view.php in /modules/form folder for your WebsiteBaker site.

Code: [Select]
// Now send the email
/**
*    @version    0.1.0
*    @build        1
*    @date        2008-08-15
*    @author        aldus
*    @state        @dev
*
*    Adding the request ip to the e-mail body before sending.
*
*    @note        If you are in the need of additional informations
*                you can also add other $_SERVER vars like $_SERVER['HTTP_USER_AGENT']
*
*
*/
$email_body .= "\n\nIP: ".$_SERVER['REMOTE_ADDR'];


If there are any questions just let it know here!
Title: Re: IP in the e-mail - Form Module
Post by: Olli on February 17, 2009, 05:19:38 PM
maybe this can be included into the next WB release? it's just one line of code and it's very handy i think.
Title: Re: IP in the e-mail - Form Module
Post by: ruebenwurzel on February 17, 2009, 06:03:13 PM
Hello,

already included in SVN. Look here: http://project.websitebaker2.org/changeset/889 (http://project.websitebaker2.org/changeset/889). So it will be in the next WB version.

Matthias
Title: Re: IP in the e-mail - Form Module
Post by: ivanisevic82 on May 03, 2010, 01:40:48 AM
Hi!
I'd like to update my form module in order to see the IP number.

I opened the view.php file, but I don't find the "rule 392".

What is this? How can I do?

Thanks!
Title: Re: IP in the e-mail - Form Module
Post by: PurpleEdge on May 05, 2010, 02:07:07 PM
Perhaps it is Line 392  :-)