<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced Poll comments"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced Poll comments"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced Poll comments</title>
				<description><![CDATA[ Hey there,<br /> where should the comments from a poll be displayed, I just wrote one, and I can see it in my database but nowhere on the page  <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" /> <br /> Now I left out the php include cookie "thing", but that shouldn't be the problem, should it?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4577.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4577.php</link>
				<pubDate><![CDATA[Thu, 10 Apr 2003 09:41:56]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You can read the comments in ADMIN.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4579.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4579.php</link>
				<pubDate><![CDATA[Thu, 10 Apr 2003 10:13:07]]> GMT</pubDate>
				<author><![CDATA[ Hawkslayer]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Too bad, I thought that everybody could read it  <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" />  Well that's life I guess  <img src="https://proxy2.de/forum//images/smilies/97ada74b88049a6d50a6ed40898a03d7.gif" />  Thanks anyway.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4580.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4580.php</link>
				<pubDate><![CDATA[Thu, 10 Apr 2003 11:58:32]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I have the same problem, however on the Advanced Polls DEMO page, it clearly displays COMMENTS below the Poll (one example).<br /> <br /> HELP US, SOMEONE ... PLEASE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!<br /> <br /> Thank You.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4586.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4586.php</link>
				<pubDate><![CDATA[Fri, 11 Apr 2003 09:42:07]]> GMT</pubDate>
				<author><![CDATA[ PollMaster]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK...I culled this off the proxy.de DEMO website & stuck it into my HTML/php page and changed the Poll # to the Poll I have up:<br /> <br /> /* poll comments */<br /> $php_poll-&gt;set_template("poll_comment");<br /> $php_poll-&gt;set_comments_per_page(5);<br /> $php_poll-&gt;set_date_format("d/m/Y H:i");<br /> $php_poll-&gt;data_order_by("time","desc");<br /> echo $php_poll-&gt;view_poll_comments(2);<br /> echo $php_poll-&gt;get_comment_pages(2); <br /> <br /> Here's what I got:<br /> <br /> Fatal error: Call to undefined function: set_template() in /home/myusername/www/mydir/myfile.php on line 18<br /> <br /> Advanced Poll is a great program, but the documentation SUCKS!!!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4587.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4587.php</link>
				<pubDate><![CDATA[Fri, 11 Apr 2003 10:02:51]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This is PollMaster again, but for some reason I'm showing as 'Guest' even thought I've logged in.  Go figure  <img src="https://proxy2.de/forum//images/smilies/1069449046bcd664c21db15b1dfedaee.gif"  /> <br /> <br /> I kept hacking around and got this to work AND display comments (note each occurrence of the number "6" is the number of the poll):<br /> <br /> ?php <br /> /* Include this before your html code */<br /> include "./poll_cookie.php"; <br /> ?&gt;<br /> &lt;html&gt;<br /> &lt;head&gt;<br /> &lt;title&gt;My Poll&lt;/title&gt;<br /> &lt;/head&gt;<br /> &lt;body&gt;<br /> <br /> &lt;?php<br /> <br /> /* path */<br /> $poll_path = "/home/me/www/domain/poll";<br /> <br /> require "$poll_path/include/config.inc.php";<br /> require "$poll_path/include/$POLLDB[class]";<br /> require "$poll_path/include/class_poll.php";<br /> require "$poll_path/include/class_pollcomment.php";<br /> $CLASS["db"] = new polldb_sql;<br /> $CLASS["db"]-&gt;connect(); <br /> <br /> $php_poll = new pollcomment();<br /> <br /> /* question */<br /> //echo $php_poll-&gt;get_poll_question(6);<br /> <br /> <br /> /* poll */<br /> $php_poll-&gt;set_template_set("plain");<br /> $php_poll-&gt;set_max_bar_length(125);<br /> $php_poll-&gt;set_max_bar_height(10);<br /> echo $php_poll-&gt;poll_process(6);<br /> <br /> <br /> /* construct the form */<br /> $php_poll-&gt;set_template("poll_form");<br /> $php_poll-&gt;set_form_error(array(<br />     "name" =&gt; "Please enter your name.",<br /> // "email" =&gt; "You must specify your e-mail address.",<br />     "message" =&gt; "You must specify a message."<br /> ));<br /> $html_form = $php_poll-&gt;comment_process(6);<br /> <br /> <br /> /* poll comments */<br /> $php_poll-&gt;set_template("poll_comment");<br /> $php_poll-&gt;set_comments_per_page(20);<br /> $php_poll-&gt;set_date_format("d/m/Y H:i");<br /> $php_poll-&gt;data_order_by("time","desc");<br /> echo $php_poll-&gt;view_poll_comments(6);<br /> echo $php_poll-&gt;get_comment_pages(6); <br /> <br /> ?&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;<br /> &lt;?<br /> ?&gt;<br />  <br /> Umh, such a nice program but when will there be ACCURATE, COMPLETE, DETAILED, STEP-BY-STEP DOCUMENTATION ???????????????????????????]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/4588.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/4588.php</link>
				<pubDate><![CDATA[Fri, 11 Apr 2003 11:13:50]]> GMT</pubDate>
				<author><![CDATA[ PollMaster]]></author>
			</item>
			<item>
				<title>errors</title>
				<description><![CDATA[ I did what you said and these are the errors I got<br /> <br /> Warning: main(/home/MY SITE/public_html/poll//include/config.inc.php) [function.main]: failed to create stream: No such file or directory in /home/MYSITE/public_html/newpoll.php on line 125<br /> <br /> Fatal error: main() [function.main]: Failed opening required '/home/MYSITE/public_html/poll//include/config.inc.php' (include_path='.:/usr/local/lib/php') in /home/MYSITE/public_html/newpoll.php on line 125<br /> <br /> ANY help would be appreciated!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/5505.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/5505.php</link>
				<pubDate><![CDATA[Mon, 21 Jul 2003 03:22:02]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If you look at your code there is a opening &lt; bracket missing don't know if thats it but you can get rid of the template bit if your using the template set called default otherwise change it to the name of the template set your using. NAd whats with the &lt;? and ?&gt; bits on the end?!?!?!?<br /> <br /> Also with it sayig file not there either you haven't uploaded it or the root to it is wrong. Again also whats with the double slash bit? Not needed.<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/1816/5668.php</guid>
				<link>https://proxy2.de/forum/posts/preList/1816/5668.php</link>
				<pubDate><![CDATA[Sat, 2 Aug 2003 16:23:06]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
	</channel>
</rss>