<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "how to see the logged ip'es in advanced guestbook"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "how to see the logged ip'es in advanced guestbook"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>how to see the logged ip'es in advanced guestbook</title>
				<description><![CDATA[ hi. how can i see/find the logged ipes???]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/9904.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/9904.php</link>
				<pubDate><![CDATA[Sat, 14 Aug 2004 18:16:46]]> GMT</pubDate>
				<author><![CDATA[ airborne]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Log in as admin and go to [b]Easy Admin[/b]. The ip will be at the top of their entry.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/9907.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/9907.php</link>
				<pubDate><![CDATA[Sat, 14 Aug 2004 19:31:00]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>ok</title>
				<description><![CDATA[ ok thx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/9920.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/9920.php</link>
				<pubDate><![CDATA[Sun, 15 Aug 2004 14:42:19]]> GMT</pubDate>
				<author><![CDATA[ airborne]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ most of the logged addresses are hostnames and not IPs. Sure I can look them up but wouldn't it be simpler if AGB logs EVERY IP?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/10105.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/10105.php</link>
				<pubDate><![CDATA[Tue, 24 Aug 2004 15:21:13]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ It used to but for some reason the writer has chosen to use the ip to host function that is built into PHP. I am going to look at how to mod the guestbook to go back to just recording the IP as looking up the host name can slow your site down. Also it would be easier for people toblock IP's if they were shown.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/10106.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/10106.php</link>
				<pubDate><![CDATA[Tue, 24 Aug 2004 17:36:43]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK quick mod to have AG 2.3.1 log the IP rather than the hostname.<br /> <br /> Open up [b]add.class.php[/b] then find [code]$host = @gethostbyaddr&#40;$this-&gt;ip&#41;;[/code]<br /> <br /> replace that with [code]$host = $this-&gt;ip;[/code]<br /> <br /> it's a bit of a hack fix but does the job (hopefully as I haven't tested it).]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/10108.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/10108.php</link>
				<pubDate><![CDATA[Wed, 25 Aug 2004 15:07:19]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Nice one Carbonize.  If I remember I'll change my GB and let you know if there's any problems.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/10125.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/10125.php</link>
				<pubDate><![CDATA[Thu, 26 Aug 2004 23:06:08]]> GMT</pubDate>
				<author><![CDATA[ Trevor]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbonize,<br />    When someone signs my guestbook, an email is sent to me to let me know... A lot of the emails I receive come from SignerName@.MISSING-HOST-NAME.<br /> <br /> Is there a way to set that, using this IP hack, to make it SignerName@IP.Address?<br /> <br /> Thanks,<br /> Simon]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/11531.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/11531.php</link>
				<pubDate><![CDATA[Mon, 8 Nov 2004 16:24:44]]> GMT</pubDate>
				<author><![CDATA[ SimonTuffGuy]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If they don't supply an email address the guestbook sends you the email from nobody@YOURHOST. In your case it sound slike it's not finding a host name to fill in. open up [b]lib/add.class.php[/b] and find [b]nobody@$host[/b]. Simply change this to whatever you want the from address to be when they have not supplied one. Or if you want them to always come from the same address change [code]$from_email = &#40;$this-&gt;email == &quot;&quot;&#41; ? &quot;nobody@$host&quot; &#58; $this-&gt;email;[/code] to [code]$from_email = &quot;guestbook@mysite.com&quot;;[/code] changing the [b]guestbook@mysite.com[/b] to whatever you wish.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/11551.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/11551.php</link>
				<pubDate><![CDATA[Mon, 8 Nov 2004 23:17:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]OK quick mod to have AG 2.3.1 log the IP rather than the hostname.<br /> <br /> Open up [b]add.class.php[/b] then find [code]$host = @gethostbyaddr&#40;$this-&gt;ip&#41;;[/code]<br /> <br /> replace that with [code]$host = $this-&gt;ip;[/code]<br /> <br /> it's a bit of a hack fix but does the job (hopefully as I haven't tested it).[/quote]<br /> <br /> Is it possible to see both Ip and Hostname together? :roll:]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/15966.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/15966.php</link>
				<pubDate><![CDATA[Sun, 8 May 2005 11:01:38]]> GMT</pubDate>
				<author><![CDATA[ karlito]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ only by having it resolve the IP to hostname with every viewing of the guestbook which could be very slow.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/15967.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/15967.php</link>
				<pubDate><![CDATA[Sun, 8 May 2005 11:24:41]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You should also make that same code change in the file comment.class.php if you want to be able to see the actual IP address there as well.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/17058.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/17058.php</link>
				<pubDate><![CDATA[Fri, 15 Jul 2005 06:14:34]]> GMT</pubDate>
				<author><![CDATA[ lloyd_borrett]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks for the reminder. Another item on the to do list for Lazarus 1.1 <img src="https://proxy2.de/forum//images/smilies/385970365b8ed7503b4294502a458efa.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3491/17062.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3491/17062.php</link>
				<pubDate><![CDATA[Fri, 15 Jul 2005 08:26:20]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
	</channel>
</rss>