<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced Poll 2.02 Adminpanel not displaying"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced Poll 2.02 Adminpanel not displaying"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced Poll 2.02 Adminpanel not displaying</title>
				<description><![CDATA[ Help anyone?<br /> I access the admin directory from my browser and a blank page is displayed... nothing else  ... I am so stuck at the moment any help is very welcome!<br /> <br /> regards]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5826.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5826.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 16:22:29]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ did you upload all the files? <br /> got the right directory? <br /> did you upload the files in the right mode? <br /> any errors appearing? <br /> did you install it correctly? <br /> which version are you using?<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5829.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5829.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 17:15:05]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes I have uploaded everything to the right place, all files are in place.<br /> It returns a blank page, not a 404 error..  <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" /><br /> I am running it on a Netware server with php4 and mysql installed.<br /> It installed propperly, so I guess settings are correct. It is just that /admin/indexphp is returning a blank page instead of login interface for the administrator... I have no idea why]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5832.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5832.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 17:48:59]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Is the url you are typing something like <a class="snap_shots" href="http://www.yourdomain.com/polldir/admin/index.php" target="_blank" rel="nofollow">http://www.yourdomain.com/polldir/admin/index.php</a><br /> <br /> ???<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5833.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5833.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 17:50:53]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ yes, precisely]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5835.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5835.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 17:58:38]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I can't think of anything apart from that have you uploaded all the admin templates all the files and folders in the same places as when you unzipped them?<br /> <br /> Apart from that I have no idea.<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5837.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5837.php</link>
				<pubDate><![CDATA[Tue, 12 Aug 2003 18:25:08]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ make sure [b]polldir/admin/templates/admin_login.html[/b] has valid HTML code]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5851.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5851.php</link>
				<pubDate><![CDATA[Wed, 13 Aug 2003 06:42:49]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ well i checked the index template and it seems fine to me... <br /> it could be that this is uncompatible with php for netware i guess.<br /> thanks to all for your help but i think there is no cure for this. I have reinstalled it 3 times and stil did not get any further.  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/5853.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/5853.php</link>
				<pubDate><![CDATA[Wed, 13 Aug 2003 09:49:34]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Problem with filesize function on Novell</title>
				<description><![CDATA[ Novell's version of PHP does not correctly handle the filesize function.  Edit the class_template.php file in the include folder.  Comment out the line in the set_templatefiles function that says:                <br /> <br /> $this-&gt;files[$filename] = fread($fp, filesize($file_path));<br /> <br /> Add the following in its place:<br /> <br /> do {<br />    $filedata = fread($fp, 8192);<br />    if (strlen($filedata) == 0) {<br />      break;<br />    }<br />    $this-&gt;files[$filename] .= $filedata;<br /> } while(true);]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2244/6525.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2244/6525.php</link>
				<pubDate><![CDATA[Thu, 16 Oct 2003 15:59:41]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>