<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Guestbook 2.23: Images are being called from the wrong dir"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Guestbook 2.23: Images are being called from the wrong dir"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Guestbook 2.23: Images are being called from the wrong dir</title>
				<description><![CDATA[ I'm kinda new at this so bare with me.  I must have something screwed up somewhere, the images for the guestbook are being called for from the wrong dir <br /> ex: /php/img/sign.gif <br /> and should be<br /> ex: /guestbook/img/sign.gif<br /> <br /> I have no dir /php/ on my server and have no idea why it's trying to call from that dir???  I'm not familiar enough with php scripting to locate a fix in the code myself.  Please Help!!!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/184.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/184.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 07:53:12]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>the same at my page</title>
				<description><![CDATA[ hi, i have the same problem!<br /> the path to the images is .../php/modules/gbook/... and should be ../modules/gbook/... i have some php coding experience but couldnt fix it and when you make the dir php/modules ... the images arent loaded also. <br /> its a great guestbook so i hope someone could help.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/185.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/185.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 08:04:48]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Correction: Advanced Guestbook 2.3</title>
				<description><![CDATA[ An extra 2 slipped into my first post in the subject line....<img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" /> Just wanted to clarify that I'm having problems with Advanced Guestbook 2.3 not 2.23.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/186.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/186.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 08:44:41]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Change <br /> <br /> $GB_PG["base_url"]  = "http://www.yourdomain.com/correct_path/";<br /> <br /> in the configuration file config.inc.php]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/187.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/187.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 13:08:19]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>same</title>
				<description><![CDATA[ that doesnt work, but i found a solution for my problem!<br /> a coder had scripted a hack of this guestbook thet is almost as good as the original here is the dl link:<br /> <a class="snap_shots" href="http://www.tp-krefeld.de/modules.php?name=Downloads&amp;d_op=getit&amp;lid=1" target="_blank" rel="nofollow">http://www.tp-krefeld.de/modules.php?name=Downloads&amp;d_op=getit&amp;lid=1</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/201.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/201.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 15:13:28]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ remove this code snippet:<br /> <br /> ------------<br /> if (ereg("php.exe",$HTTP_SERVER_VARS["PHP_SELF"])) {<br />    $GB_PG["base_url"] = dirname($HTTP_SERVER_VARS["REQUEST_URI"]);<br /> } elseif (isset($HTTP_SERVER_VARS["SCRIPT_NAME"]) &amp;&amp; !empty($HTTP_SERVER_VARS["SCRIPT_NAME"])) {<br />    $GB_PG["base_url"] = dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]);<br /> } else {<br />    $GB_PG["base_url"] = dirname($HTTP_SERVER_VARS["PHP_SELF"]);<br /> }<br /> <br /> with:<br /> <br /> $GB_PG["base_url"] = "http://www.yourdomain.com/correct_path/"; <br /> <br /> tested and works with PHP-Nuke 5.2<br /> <br /> Of course the 'correct_path' may not contain the 'modules/guestbook']]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/202.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/202.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 15:30:16]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Almost there :)</title>
				<description><![CDATA[ $GB_PG["base_url"] = "http://www.yourdomain.com/correct_path/"; worked great when replaced with $GB_PG["base_url"] = "http://www.yourdomain.com/guestbook/";  All of the images for the guestbook were showing properly but another snag has arose.<br /> <br /> Whenever an image is posted when signing the guestbook the thumbnail image is displayed properly but after clicking the thumbnail image to increase the size the image is not displayed.<br /> <br /> When doing a preview, before submitting, the image is being called from: <br /> /php/temp/ <br /> but should be:<br /> /guestbook/temp.  <br /> <br /> After submitting the post, the thumbnail image is showing properly, but after clicking the thumbnail image to increase the size the image is not displayed.  It is being called from:<br /> /php/public/<br /> but should be:<br /> /guestbook/public.  <br /> <br /> Thanks for the help thus far  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/207.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/207.php</link>
				<pubDate><![CDATA[Mon, 28 Jan 2002 18:45:55]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Since nobody can help me out here  <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" />  Could someone recommend another quality guestbook.  I hate to ask but this one just isn't working for me.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/215.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/215.php</link>
				<pubDate><![CDATA[Tue, 29 Jan 2002 02:17:50]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>guestbook 2.0</title>
				<description><![CDATA[ the problem occures only when using PHP as 'CGI'<br /> <br /> [quote]<br /> After submitting the post, the thumbnail image is showing properly, but after clicking the thumbnail image to increase the size the image is not displayed. It is being called from: <br /> /php/public/ <br /> but should be: <br /> /guestbook/public. <br /> [/quote]<br /> <br /> can also be fixed in picture.php]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/281.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/281.php</link>
				<pubDate><![CDATA[Fri, 1 Feb 2002 16:12:45]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>More Info Needed!</title>
				<description><![CDATA[ What other way is there to run PHP? I installed PHP and configured apache to use it with the documentation that was included with PHP. If there is another way to configure apache with PHP how would the advanced guestbook distinguish the differences?  <br /> <br /> As I stated in the first post: [quote]I'm not familiar enough with php scripting to locate a fix in the code myself.[/quote]  Could you point out what changes need to be made in the pictures.php file to make it function properly?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/290.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/290.php</link>
				<pubDate><![CDATA[Sat, 2 Feb 2002 08:37:12]]> GMT</pubDate>
				<author><![CDATA[ rude]]></author>
			</item>
			<item>
				<title>guestbook 2.0</title>
				<description><![CDATA[ [quote="user"]<br /> can also be fixed in picture.php<br /> [/quote]<br /> <br /> Can you show us how to fix it in picture.php?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/2228.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/2228.php</link>
				<pubDate><![CDATA[Mon, 22 Jul 2002 01:53:15]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I don't know where the problem is?<br /> There is a setting for the image url in the configuration file:<br /> <br /> $GB_PG["base_url"] = "http://www.domain.com/guestbook/image";]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/2387.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/2387.php</link>
				<pubDate><![CDATA[Fri, 2 Aug 2002 23:31:12]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Anonymous"]I don't know where the problem is?<br /> There is a setting for the image url in the configuration file:<br /> <br /> $GB_PG["base_url"] = "http://www.domain.com/guestbook/image";[/quote]<br /> <br /> if you see on <a class="snap_shots" href="http://www.all-worx.be/modules.php?name=Guestbook" target="_blank" rel="nofollow">http://www.all-worx.be/modules.php?name=Guestbook</a> and you click on the picture you will seehe will call the wrong dir. If you change $GB_PG["base_url"]  the other picture are called from the wrong dir.<br /> <br /> Can somebody help us please<br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/79/3095.php</guid>
				<link>https://proxy2.de/forum/posts/preList/79/3095.php</link>
				<pubDate><![CDATA[Fri, 22 Nov 2002 20:19:05]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>