<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Message error: guestbook/lib/gb.class.php"]]></title>
		<link>https://proxy2.de/forum/posts/list/5.php</link>
		<description><![CDATA[Latest messages posted in the topic "Message error: guestbook/lib/gb.class.php"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Message error: guestbook/lib/gb.class.php</title>
				<description><![CDATA[ Hello!!<br /> <br /> I got a problem with index page of my guestbook.<br /> It appears this message:<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(55) : eval()'d code on line 5<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(56) : eval()'d code on line 1<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(57) : eval()'d code on line 1<br /> <br /> I don't know what to do.  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" /> <br /> <br /> Please help me!  <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /> <br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23346.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23346.php</link>
				<pubDate><![CDATA[Fri, 27 Jul 2007 15:11:02]]> GMT</pubDate>
				<author><![CDATA[ giulia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ It's saying there is a problem in one of your templates. Have you made any changes?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23347.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23347.php</link>
				<pubDate><![CDATA[Fri, 27 Jul 2007 15:49:30]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No...<br /> <br /> I uploaded again the templates, but the same message still caming  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23348.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23348.php</link>
				<pubDate><![CDATA[Fri, 27 Jul 2007 20:57:14]]> GMT</pubDate>
				<author><![CDATA[ giulia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(55) : eval()'d code on line 5<br /> <br /> is header.php<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(56) : eval()'d code on line 1<br /> <br /> is body.php<br /> <br /> Parse error: syntax error, unexpected T_STRING in /home/allabout/public_html/guestbook/lib/gb.class.php(57) : eval()'d code on line 1 <br /> <br /> is footer.php<br /> <br /> Try the addentry.php page see if you get errors there.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23349.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23349.php</link>
				<pubDate><![CDATA[Fri, 27 Jul 2007 21:15:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I don't know PHP language, could you help me with this?<br /> <br /> Here is my addentry.php<br /> <br /> [code]&lt;?php<br /> $include_path = dirname&#40;__FILE__&#41;;<br /> require_once $include_path.&quot;/admin/config.inc.php&quot;;<br /> require_once $include_path.&quot;/lib/$DB_CLASS&quot;;<br /> require_once $include_path.&quot;/lib/image.class.php&quot;;<br /> require_once $include_path.&quot;/lib/template.class.php&quot;;<br /> require_once $include_path.&quot;/lib/vars.class.php&quot;;<br /> require_once $include_path.&quot;/lib/add.class.php&quot;;<br /> require_once $include_path.&quot;/lib/phrase.class.php&quot;;<br /> <br /> $gb_post = new addentry&#40;$include_path&#41;;<br /> <br /> if &#40;isset&#40;$_POST&#91;&quot;gb_action&quot;&#93;&#41;&#41; &#123;<br />     $gb_post-&gt;name = &#40;isset&#40;$_POST&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_name&quot;&#93; &#58; '';<br />     $gb_post-&gt;email = &#40;isset&#40;$_POST&#91;&quot;gb_email&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_email&quot;&#93; &#58; '';<br />     $gb_post-&gt;url = &#40;isset&#40;$_POST&#91;&quot;gb_url&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_url&quot;&#93; &#58; '';<br />     $gb_post-&gt;comment = &#40;isset&#40;$_POST&#91;&quot;gb_comment&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_comment&quot;&#93; &#58; '';<br />     $gb_post-&gt;location = &#40;isset&#40;$_POST&#91;&quot;gb_location&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_location&quot;&#93; &#58; '';<br />     $gb_post-&gt;icq = &#40;isset&#40;$_POST&#91;&quot;gb_icq&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_icq&quot;&#93; &#58; 0;<br />     $gb_post-&gt;aim = &#40;isset&#40;$_POST&#91;&quot;gb_aim&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_aim&quot;&#93; &#58; '';<br />     $gb_post-&gt;gender = &#40;isset&#40;$_POST&#91;&quot;gb_gender&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_gender&quot;&#93; &#58; '';<br />     $gb_post-&gt;userfile = &#40;isset&#40;$_FILES&#91;&quot;userfile&quot;&#93;&#91;&quot;tmp_name&quot;&#93;&#41; &amp;&amp; $_FILES&#91;&quot;userfile&quot;&#93;&#91;&quot;tmp_name&quot;&#93; != &quot;&quot;&#41; ? $_FILES &#58; '';<br />     $gb_post-&gt;user_img = &#40;isset&#40;$_POST&#91;&quot;gb_user_img&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_user_img&quot;&#93; &#58; '';<br />     $gb_post-&gt;preview = &#40;isset&#40;$_POST&#91;&quot;gb_preview&quot;&#93;&#41;&#41; ? 1 &#58; 0;<br />     $gb_post-&gt;private = &#40;isset&#40;$_POST&#91;&quot;gb_private&quot;&#93;&#41;&#41; ? 1 &#58; 0;<br />     $gb_post-&gt;token = &#40;isset&#40;$_POST&#91;&quot;gb_token&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_token&quot;&#93; &#58; '';<br />     $gb_post-&gt;gb_captcha = &#40;isset&#40;$_POST&#91;&quot;gb_captcha&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_captcha&quot;&#93; &#58; '';<br />     echo $gb_post-&gt;process&#40;$_POST&#91;&quot;gb_action&quot;&#93;&#41;;<br />     <br /> &#125; else &#123;<br />     echo $gb_post-&gt;process&#40;&#41;;<br /> &#125;<br /> ?&gt;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23459.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23459.php</link>
				<pubDate><![CDATA[Tue, 28 Aug 2007 14:26:09]]> GMT</pubDate>
				<author><![CDATA[ giulia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ As I have already said the problem is in your templates.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23460.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23460.php</link>
				<pubDate><![CDATA[Tue, 28 Aug 2007 16:16:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yeah! But as I said I haven't made any changes...<br /> <br /> And I changed it for the Lazarus Guestbook and same problem still appearing. <br /> <br /> What should I do?  <img src="https://proxy2.de/forum//images/smilies/2786c5c8e1a8be796fb2f726cca5a0fe.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/6869/23461.php</guid>
				<link>https://proxy2.de/forum/posts/preList/6869/23461.php</link>
				<pubDate><![CDATA[Tue, 28 Aug 2007 17:04:11]]> GMT</pubDate>
				<author><![CDATA[ giulia]]></author>
			</item>
	</channel>
</rss>