<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Encode emails in Guestbook like this site does!"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Encode emails in Guestbook like this site does!"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Encode emails in Guestbook like this site does!</title>
				<description><![CDATA[ Want to encrypt the email addresses in your guestbook likes this sites guestbook does?<br /> <br /> Open templates/header.php<br /> <br /> Find:[code]//--&gt;<br /> &lt;/script&gt;<br /> &lt;/head&gt;[/code]<br /> Before it put[code]function getEmail&#40;email&#41; &#123;<br />     var stringPos = false;<br />     var stringEmail = &quot;&quot;;<br />     if &#40;email.length&gt;0&#41; &#123;<br />     for &#40;var i=0; i&lt;email.length; i++&#41; &#123;	<br />     stringPos = &#40;i % 2&#41; ? false &#58; true;<br />     if &#40;stringPos == true&#41; &#123;<br />     stringEmail = stringEmail + &quot;%&quot; + email.charAt&#40;i&#41;; <br />     &#125; else &#123;<br />     stringEmail = stringEmail + email.charAt&#40;i&#41;; <br />     &#125;<br />   &#125;<br />   stringEmail = unescape&#40;stringEmail&#41;;<br />   window.location.href = stringEmail;<br />   &#125;<br /> &#125;[/code]<br /> Save and close the file.<br /> <br /> Open templates/email.php<br /> replace the entire contents with[code]&lt;a href=&quot;javascript&#58;getEmail&#40;'6d61696c746f3a$encemail'&#41;&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/email.gif&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;$LANG&#91;AltEmail&#93;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;[/code]<br /> Save and close the file.<br /> <br /> Open templates/entry.php<br /> <br /> Find:[code]&lt;td colspan=&quot;2&quot; class=&quot;font1&quot;&gt;$row&#91;email&#93;&lt;/td&gt;[/code]<br /> replace it with:[code]&lt;td colspan=&quot;2&quot; class=&quot;font1&quot;&gt;$hidemail&lt;/td&gt;[/code]<br /> Save and close the file.<br /> <br /> Open lib/gb.class.php<br /> <br /> Find:[code]eval&#40;&quot;\$EMAIL = \&quot;&quot;.$template&#91;'email'&#93;.&quot;\&quot;;&quot;&#41;;[/code]<br /> Replace it with [code]$encemail = bin2hex&#40;$row&#91;'email'&#93;&#41;;<br /> $hidemail = str_replace&#40;'@', '&#91;at&#93;', $row&#91;'email'&#93;&#41;;<br /> $hidemail = str_replace&#40;'.', '&#91;dot&#93;', $hidemail&#41;;<br /> eval&#40;&quot;\$EMAIL = \&quot;&quot;.$template&#91;'email'&#93;.&quot;\&quot;;&quot;&#41;;[/code]<br /> Just after that you will see [code]            &#125; else &#123;<br />                 $EMAIL = '';<br />             &#125;[/code]replace it with [code]            &#125; else &#123;<br />                 $EMAIL = '';<br />                 $hidemail = '';<br />             &#125;[/code]<br /> Save and close the file and you're done.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11244.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11244.php</link>
				<pubDate><![CDATA[Wed, 27 Oct 2004 22:11:54]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>parse error after following these instructions</title>
				<description><![CDATA[ Hey Carbon,<br /> <br /> I followed these to the letter (except the last line, where you said to find the line starting with val; it's actually eval).  Once I saved and tried to access my guestbook, I got the following error:<br /> <br /> Parse error: parse error, unexpected ';' in .../guestbook/lib/gb.class.php on line 133<br /> <br /> My website is [url]http://johnnyandrachaelstevens.com/guestbook/[/url]<br /> <br /> Is this common with this mod?  I am certain that I didn't make any other changes to the lib/gb.class.php file outside of the instructions.<br /> <br /> Thanks,<br /> Johnny]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11267.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11267.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 17:06:04]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>edit to last entry</title>
				<description><![CDATA[ Hey Carbonize,<br /> <br /> Just a note on the last entry:  I removed the code from the last instruction and the guestbook is accessible now.  I still haven't completed the whole process, but I'm not stuck without a guestbook now.<br /> <br /> Can you please help me finish the mod??<br /> <br /> Thanks,<br /> Johnny]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11268.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11268.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 17:20:49]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Whoops I boobooded and missed off the closing )'s from the str_replace functions. Fixed now <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11272.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11272.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 18:15:10]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Can you help with the BASE_URL??</title>
				<description><![CDATA[ Hey Carbonize,<br /> <br /> I am still pretty new to php... I have had a consistent issue with the img's on my guestbook not loading.  In particular, the textbar on the bottom of the screen leaves a blank where the source should be (i.e. it should say <a class="snap_shots" href="http://johnnyandrachaelstevens.com/guestbook/img," target="_blank" rel="nofollow">http://johnnyandrachaelstevens.com/guestbook/img,</a> but it says <a class="snap_shots" href="http:///img" target="_blank" rel="nofollow">http:///img</a>)<br /> <br /> I was told to change my config.inc.php file, so I did and that worked.. for that session.  I made the following change:<br /> <br /> $GB_PG["base_url"] = "";  /* e.g <a class="snap_shots"  target="_blank" rel="nofollow">htpp://www.johnnyandrachaelstevens.com/guestbook/img</a> */<br /> <br /> Now that I have logged out and back in, my pics are gone again... Can you tell me exactly what should be in the config.inc.php file??<br /> <br /> Thanks,<br /> Johnny]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11283.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11283.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 23:34:51]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Me again</title>
				<description><![CDATA[ Correction!! My config file shows:<br /> <br /> $GB_PG["base_url"] = "";  /* e.g <a class="snap_shots" href="http://www.johnnyandrachaelstevens.com/guestbook/img" target="_blank" rel="nofollow">http://www.johnnyandrachaelstevens.com/guestbook/img</a> */<br /> <br /> Still doesn't work...<br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11284.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11284.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 23:36:20]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [code]$GB_PG&#91;&quot;base_url&quot;&#93; = &quot;http&#58;//www.johnnyandrachaelstevens.com/guestbook/&quot;; /* e.g */[/code]<br /> You are meant to put the path in the "'s]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11285.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11285.php</link>
				<pubDate><![CDATA[Thu, 28 Oct 2004 23:44:42]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You lost me on that last entry... what do you mean?<br /> <br /> Thanks,<br /> Johnny]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11422.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11422.php</link>
				<pubDate><![CDATA[Mon, 1 Nov 2004 23:05:48]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ you put [code]$GB_PG&#91;&quot;base_url&quot;&#93; = &quot;&quot;; /* e.g http&#58;//www.johnnyandrachaelstevens.com/guestbook/*/[/code]<br /> it should be [code]$GB_PG&#91;&quot;base_url&quot;&#93; = &quot;http&#58;//www.johnnyandrachaelstevens.com/guestbook/&quot;; /* e.g */[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11425.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11425.php</link>
				<pubDate><![CDATA[Mon, 1 Nov 2004 23:32:47]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Strange... After adding this, all the entries in my guestbook that did not have  an email address have been altered to show the email address of the latest visitor.  When I go into the Admin panel, these entries show the email field is blank... <br /> <br /> I added a test entry and it is fine with no email address, but now I need to figure out how to remove the address from the other entries. <img src="https://proxy2.de/forum//images/smilies/0a4d7238daa496a758252d0a2b1a1384.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11431.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11431.php</link>
				<pubDate><![CDATA[Tue, 2 Nov 2004 06:45:36]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thats weird because this code only alters the email addresses as they are being pulled from the database to be added to the output.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11432.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11432.php</link>
				<pubDate><![CDATA[Tue, 2 Nov 2004 11:45:56]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You're not kidding weird... it's a mystery to me!  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11434.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11434.php</link>
				<pubDate><![CDATA[Tue, 2 Nov 2004 11:57:21]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just fixed an error in the code I posted. The error was in the code that goes in [b]lib/gb.class.php[/b].]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11506.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11506.php</link>
				<pubDate><![CDATA[Sun, 7 Nov 2004 09:55:58]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbonize, I signed John and Rachel's guestbook on November 3 without leaving an email address.<br /> <br /> <a class="snap_shots" href="http://johnnyandrachaelstevens.com/guestbook/" target="_blank" rel="nofollow">http://johnnyandrachaelstevens.com/guestbook/</a><br /> <br /> Someone else signed their book on November 9 with an email address.  It has added their email address to my post.  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11672.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11672.php</link>
				<pubDate><![CDATA[Thu, 11 Nov 2004 11:02:17]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just noticed another error after visiting their site. [code]&lt;a href=&quot;javascript&#58;getEmail&#40;'6d61696c746f3a$encemail'&#41;&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/email.gif&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;$LANG&#91;AltEmail&#93;&quot; /&gt;&lt;/a&gt;[/code] Should be [code]&lt;a href=&quot;javascript&#58;getEmail&#40;'6d61696c746f3a$encemail'&#41;&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/email.gif&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;$LANG&#91;AltEmail&#93;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;[/code]<br /> i forgot as I remove all image link borders in my CSS.<br /> <br /> I see what you mean, it's put the email in twice. I think I know whats happened. Slap my wrists  :oops:  I forgot to empty the variables and so it will use the same info again until it finds a new email address. Will fix now :|]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11674.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11674.php</link>
				<pubDate><![CDATA[Thu, 11 Nov 2004 11:09:18]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Nope that can't be it because it only calls the functions if there is an email address present <img src="https://proxy2.de/forum//images/smilies/1cfd6e2a9a2c0cf8e74b49b35e2e46c7.gif" /> and it would also be repeating the image link. Am looking into it now.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11675.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11675.php</link>
				<pubDate><![CDATA[Thu, 11 Nov 2004 11:13:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks.  When you're done with it, I'll probably try it again.  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11676.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11676.php</link>
				<pubDate><![CDATA[Thu, 11 Nov 2004 11:14:10]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Nope I was right it is that lol. I forgot that it wont call the image link unless there is an email present but the text link is part of the entry.php template.<br /> the part ingb.class.php should be [code]            if &#40;$row&#91;'email'&#93;&#41; &#123;<br />             	if &#40;$this-&gt;db-&gt;VARS&#91;&quot;encryptemail&quot;&#93;==1&#41;&#123;<br />                     $encemail = bin2hex&#40;$row&#91;'email'&#93;&#41;;<br />                     $hidemail = str_replace&#40;'@', '&#91;at&#93;', $row&#91;'email'&#93;&#41;;<br />                     $hidemail = str_replace&#40;'.', '&#91;dot&#93;', $hidemail&#41;;<br />                     eval&#40;&quot;\$EMAIL = \&quot;&quot;.$template&#91;'email'&#93;.&quot;\&quot;;&quot;&#41;;<br />             	&#125;else&#123;<br />             		$encemail = &quot;mailto&#58;&quot;.$row&#91;'email'&#93;;<br />             		$hidemail = $row&#91;'email'&#93;;<br />             	&#125;            		<br />                 eval&#40;&quot;\$EMAIL = \&quot;&quot;.$template&#91;'email'&#93;.&quot;\&quot;;&quot;&#41;;<br />             &#125; else &#123;<br />                 $EMAIL = '';<br />                 $hidemail = '';<br />             &#125;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11677.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11677.php</link>
				<pubDate><![CDATA[Thu, 11 Nov 2004 11:16:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>lost my email encryption</title>
				<description><![CDATA[ Hey guys,<br /> <br /> Somewhere along the way with encrypting and fixing the missing email assignment issue and correcting my pic path, I lost my encryption.<br /> <br /> I checked the files that I use and found nothing out of place.  Can you guys check it out?  I'm stumped.<br /> <br /> Thanks,<br /> Johnny]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11880.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11880.php</link>
				<pubDate><![CDATA[Thu, 18 Nov 2004 16:01:41]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well unless you had previously altered the scripts may I suggest just reuploading the guestbook and modding it again.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11881.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11881.php</link>
				<pubDate><![CDATA[Thu, 18 Nov 2004 16:16:30]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hey Carbonize,<br /> <br /> I realized that I had modified without allowing myself CHMOD allowance.  Once I changed the CHMOD, I was able to save the mod, then go back and re-establish the CHMOD permissions.<br /> <br /> Thanks for all of your help... you really have been tremendously patient with me and my foibles!!<br /> <br /> <a class="snap_shots" href="http://johnnyandrachaelstevens.com/home.shtml" target="_blank" rel="nofollow">http://johnnyandrachaelstevens.com/home.shtml</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11909.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11909.php</link>
				<pubDate><![CDATA[Fri, 19 Nov 2004 22:25:23]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Only just realised that the above bit of code I posted is actually taken from my version of he guestbook and contains code only relevant to my version. <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" />  Anyway the code on page 1 is correct.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11910.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11910.php</link>
				<pubDate><![CDATA[Sat, 20 Nov 2004 02:01:22]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Tried this again, and it works great.  Thanks.  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/11957.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/11957.php</link>
				<pubDate><![CDATA[Sun, 21 Nov 2004 11:14:40]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hello, great script! However, e-mails are being shown as "username[at]yahoo[dot]com". How can I completely forgo any e-mail address being shown at all in my guestbook?<br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12328.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12328.php</link>
				<pubDate><![CDATA[Tue, 7 Dec 2004 16:44:55]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ open [b]templates/form.php[/b] and remove [code]  &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot; class=&quot;font1&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/email.gif&quot; width=&quot;15&quot; height=&quot;15&quot;&gt; $LANG&#91;FormEmail&#93;&#58;&lt;/td&gt;<br />     &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;gb_email&quot; size=&quot;42&quot; maxlength=&quot;30&quot;&gt;&lt;/td&gt;<br />   &lt;/tr&gt;[/code]This will stop them being able to supply an email address.<br /> <br /> If you don't want to show emails thathave already been added open [b]lib/gb.class.php[/b] and look for [code]            if &#40;$row&#91;'email'&#93;&#41; &#123;<br />                 eval&#40;&quot;\$EMAIL = \&quot;&quot;.$template&#91;'email'&#93;.&quot;\&quot;;&quot;&#41;;<br />             &#125; else &#123;<br />                 $EMAIL = '';<br />             &#125;[/code] and delete everything except the [code]$EMAIL = '';[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12330.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12330.php</link>
				<pubDate><![CDATA[Tue, 7 Dec 2004 17:15:01]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks! Would this mean that users won't be able to post an e-mail address? I would like to be able to have that option still available, but not visible to the public (may if I could log into my admin area to view it)?<br /> <br /> I hope I am explaining myself correctly.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12356.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12356.php</link>
				<pubDate><![CDATA[Wed, 8 Dec 2004 16:12:14]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I could write you a mod to add the option to allow email addresses to the admin. But why would you want to?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12359.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12359.php</link>
				<pubDate><![CDATA[Wed, 8 Dec 2004 21:10:08]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hello Carbonize, that would be GREAT! <br /> <br /> Sometimes users post questions in my guestbook and I like to directly respond to them instead of posting a reply in the guestbook.<br /> <br /> Please let me know if you have any other questions.<br /> <br /> Thanks again!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12361.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12361.php</link>
				<pubDate><![CDATA[Wed, 8 Dec 2004 23:08:11]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hmmm sounds like what you want is the ability for them to still leave their email address but not have it displayed in the guestbook. If so the second part of my quick fix should do this.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12362.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12362.php</link>
				<pubDate><![CDATA[Wed, 8 Dec 2004 23:14:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ THANKS! THAT WORKED!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12369.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12369.php</link>
				<pubDate><![CDATA[Thu, 9 Dec 2004 18:24:44]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ *bump*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12492.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12492.php</link>
				<pubDate><![CDATA[Sun, 19 Dec 2004 08:54:05]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Gone back to square one</title>
				<description><![CDATA[ These last few days have been my first, can I used the word 'exposure' to php. <br /> <br /> Amber 222 recomended that I protenct by visitors email addresses in the guest book and pointed me in the direction of this page.<br /> <br /> Step by step I deleted the existing code, copied and pasted the code show at the top of this page and whola, I got the following when I tried to access the guest book:<br /> <br /> Parse error: parse error, unexpected T_STRING in /home/stevenx/public_html/guestbook/lib/gb.class.php on line 278<br /> <br /> As I result I gave up and reinstalled the original php files.<br /> <br /> No protection but at least it is working for now.<br /> <br /> Cheers<br /> Steven]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12646.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12646.php</link>
				<pubDate><![CDATA[Mon, 27 Dec 2004 07:15:32]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'll either upload the pre modified files to my site somewhere or write a better mod instruction.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12648.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12648.php</link>
				<pubDate><![CDATA[Mon, 27 Dec 2004 07:38:50]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Secure email</title>
				<description><![CDATA[ Great Carbonize looking forward to the revised code.<br /> <br /> AS I said when logged in as a guest I had a lot of errors with the email code that I didn't know how to handle.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12663.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12663.php</link>
				<pubDate><![CDATA[Tue, 28 Dec 2004 11:52:02]]> GMT</pubDate>
				<author><![CDATA[ memoire]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <a class="snap_shots" href="http://www.carbonize.co.uk/emailencryption.txt" target="_blank" rel="nofollow">www.carbonize.co.uk/emailencryption.txt</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/12691.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/12691.php</link>
				<pubDate><![CDATA[Thu, 30 Dec 2004 20:03:54]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Replace [at] and [dot] with graphics..</title>
				<description><![CDATA[ Now that I've upgraded my guestbook, all of my e-mail addresses display "username[at]yahoo[dot]com".  This is fine.. But what I'd love to do is to replace the "[at]" and the "[dot]" with graphics. (this way the e-mail addresses will LOOK normal, and still be secured from e-mail miners.. Is there an easy way to do this??]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/16171.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/16171.php</link>
				<pubDate><![CDATA[Thu, 19 May 2005 00:41:09]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ open up lib/gb.class.php and do a search for [at] and [dot] and simply replace the relevant text with the image link.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3778/16177.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3778/16177.php</link>
				<pubDate><![CDATA[Thu, 19 May 2005 07:33:55]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
	</channel>
</rss>