<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced Poll v2.02 -- Installation / Instructions..."]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced Poll v2.02 -- Installation / Instructions..."]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced Poll v2.02 -- Installation / Instructions...</title>
				<description><![CDATA[ Hi people!<br /> <br /> Just to answer a few questions it does work! I got it to in about 15 minutes due to a few technical hitches (Not quite as easy as their readme file suggests!). I'm using the text file version on Apache 2.0.45 and PHP 4.3.1 on my PC - NOT a real live web server! Here's some hints on how to get it to work -<br /> <br /> 0) Whatever you do don't edit any of the files through NotePad or any other equivlent!!! Edit the files ONLY through the Admin Panel. Also keep a backup of anything you think you might need to restore to later. For example make a backup of the original templates before you start customizing them.<br /> <br /> 1.1) Add this code to a *.PHP file in the &lt;BODY&gt;..&lt;/BODY&gt; tags. Put it where you want the script to appear. This will display the most recent poll you created ::<br /> <br /> &lt;?php <br /> include_once "C:/Program Files/Apache Group/Apache2/html_public/textfile/booth.php";<br /> echo $php_poll-&gt;poll_process("newest");<br /> ?&gt;<br /> <br /> 1.2) If you want to display an old post for some reason add this the &lt;BODY&gt; tags. Replace the 'x' after poll_process to display the poll you want. To find the ID No. of a poll go to the Admin Panel and look under Poll List and you can find the ID No. of the poll you want to be displayed ::<br /> <br /> &lt;?php <br /> include_once "C:/Program Files/Apache Group/Apache2/html_public/textfile/booth.php";<br /> echo $php_poll-&gt;poll_process(x);<br /> ?&gt;<br /> <br /> 1.3) Add this to the &lt;BODY&gt; tags to display a random poll. Nothing more can be said really. ::<br /> <br /> &lt;?php <br /> include_once "C:/Program Files/Apache Group/Apache2/html_public/textfile/booth.php";<br /> echo $php_poll-&gt;poll_process("random");<br /> ?&gt;<br /> <br /> *NOTE* For 1.1, 1.2 and 1.3 :: Replace the C:/Program Files... up to /textfile to the actual location of you booth.php file. I have Apache and PHP 4 installed on my PC to test this kind of stuff.<br /> <br /> 2) To get the cookie feature to work add this code Before the opening &lt;HTML&gt; tag. On the page your using to view the poll on must have the extentsion *.PHP !!! The solution to this problem comes with it. In FAQ.txt with the follders DB and textfile. So I'll quote from there ::<br /> <br /> FAQ:<br /> <br /> - After voting I get the following error:<br /> Warning: Cannot add header information - headers already sent by (output started at ...) in ..poll_cookie.php on line ...<br /> <br /> Make sure that the page your poll is embedded in has the ::<br /> &lt;?php <br /> require "poll_cookie.php"; <br /> ?&gt;<br /> tag before anything else. You may have to put in some path information before so... DO IT!<br /> <br /> Another way of doing it is this ::<br /> &lt;?php <br /> include_once "poll_cookie.php"; <br /> ?&gt;<br /> <br /> *NOTE*If anyone has tried both these methods can you e-mail me saying which one works or if both of them work, so I can update it here.<br /> <br /> 3) For those of you with problems with the table width after some fiddling around the solution is SO VERY SIMPLE!!! Go to the Admin Panel and then Genral Settings. The scroll down to - "Table, Font And Color Options" from there you can change the width of the table and loads of other stuff!<br /> <br /> If that doesn't work here's a link to a thread where I came up with some other idea for why the problem occured ::<br /> <br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?t=2022" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?t=2022</a><br /> <br /> 4.1) I've noticed quite a lot of people having trouble logging in. Well to start with if you got any major problems delete all the files associated with Adv. Poll v2.02 and download a fresh version of it. The first time you log in you have to use the default, preset username and password ::<br /> <br /> Username: admin<br /> Password: poll<br /> <br /> Once in change the username and password!<br /> <br /> 4.2) One last thing I'm gonna add here is - if you put any code into a page that is between these tags :: &lt;?php    ?/&gt; :: is PHP code. If that page has the extentsion *.htm or *.html or anything else it MUST be changed to *.php other wise the script won't work and your browser will just output the code as plain text in a htm or html page!<br /> <br /> 5) Now I'm gonna how to explain how to stop people voting more than once. First get into admin panel and change the dropdown box to "logging on" then click "Save changes" (***NOTICE*** I've manged to get the IP logging working by just doing the next step here - General Settings... ect. and without the code at the top of the file). Next go to "General Settings" and down to "Miscellaneous" and then change the dropdown box next to check to IP table. This will check anyones IP, if its in the table they can't vote. Another point I would like to make it worked just by linking to booth.php as in 1.1 and I didn't need to put any code before everything else like it says in 2, so if this doesn't or does work then you might need to add or remove the code from 3 from your *.PHP page where you included the poll.<br /> <br /> And 6) I can't think of any other problems. If you have any leave me a message in this thread or send me an e-mail. I'll say this ONCE - I'll only help you if I can!<br /> <br /> Good Luck!<br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/5241.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/5241.php</link>
				<pubDate><![CDATA[Mon, 23 Jun 2003 22:13:17]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>An example setup of Advanced Poll v2.02</title>
				<description><![CDATA[ Test_Poll.php    :: Notice the .PHP extentsion!!!<br /> <br /> :: Another notice when creating a *.PHP file the first line must NOT have ANY white space before it!<br /> <br /> &lt;!-- This first bit of PHP includes and executes the file poll_cookie.php so that people can only vote once --&gt;<br /> &lt;?php<br /> include_once "C:/Program Files/Apache Group/Apache2/html_public/textfile/poll_cookie.php"; <br /> ?&gt; <br /> <br /> &lt;HTML&gt;<br /> &lt;HEAD&gt;<br /> Random Stuff that goes in the head tags...<br /> &lt;/HEAD&gt;<br /> <br /> &lt;BODY&gt;<br /> <br /> &lt;!-- This PHP code includes the poll in your page (So you can SEE it). Place this where you want the poll to be displayed --&gt;<br /> &lt;?php<br /> include_once "C:/Program Files/Apache Group/Apache2/html_public/textfile/booth.php";<br /> echo $php_poll-&gt;poll_process("newest");<br /> ?&gt;<br /> <br /> &lt;/BODY&gt;<br /> &lt;/HTML&gt;<br /> <br /> Just change the path names to what yours are. Keep the end file the same though. The path names must be the full/real ones like these ones. I could of put "/textfile/booth.php" BUT from what I understand that doesn't work. So you'll have to input the whole path name like I have above.<br /> <br /> *********<br /> <br /> For the benefit of people with problems installing Advanced Poll and using it here is an example that proves it can be done. This server won't be available all the time and may be a bit slow as I use it for just testing. This setup uses the textfile version (said to be quicker than the MySQL version).<br /> <br /> Good Luck!<br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/5243.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/5243.php</link>
				<pubDate><![CDATA[Mon, 23 Jun 2003 23:26:44]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ BUMP!<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/6783.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/6783.php</link>
				<pubDate><![CDATA[Fri, 12 Dec 2003 21:03:59]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>help my adv poll</title>
				<description><![CDATA[ <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" />  please visit my site <a class="snap_shots" href="http://www.miperwanida.com/poll2.html" target="_blank" rel="nofollow">http://www.miperwanida.com/poll2.html</a> and give me your great sugestion for me thank for everythink]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/9504.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/9504.php</link>
				<pubDate><![CDATA[Fri, 30 Jul 2004 17:53:48]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: help my adv poll</title>
				<description><![CDATA[ [quote="mida"]<img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" />  please visit my site <a class="snap_shots" href="http://www.miperwanida.com/poll2" target="_blank" rel="nofollow">http://www.miperwanida.com/poll2</a>[b].html[/b] and give me your great sugestion for me thank for everythink[/quote]<br /> <br /> Change to .php<br /> <br /> - Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/9509.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/9509.php</link>
				<pubDate><![CDATA[Fri, 30 Jul 2004 18:50:00]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote] After voting I get the following error: <br /> Warning: Cannot add header information - headers already sent by (output started at ...) in ..poll_cookie.php on line ... <br /> <br /> Make sure that the page your poll is embedded in has the :: <br /> &lt;?php <br /> require "poll_cookie.php"; <br /> ?&gt; <br /> tag before anything else. You may have to put in some path information before so... DO IT! <br /> <br /> Another way of doing it is this :: <br /> &lt;?php <br /> include_once "poll_cookie.php"; <br /> ?&gt; <br /> [/quote]<br /> <br /> I've done this - and it doens't make any difference. I've got the path which it supplies me with also.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/9971.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/9971.php</link>
				<pubDate><![CDATA[Wed, 18 Aug 2004 18:45:34]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Do a search on it.<br /> <br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?p=9905&amp;highlight=cannot+add+header+information#9905" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?p=9905&amp;highlight=cannot+add+header+information#9905</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/9972.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/9972.php</link>
				<pubDate><![CDATA[Wed, 18 Aug 2004 19:24:52]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>cookie checking doesn't seem to work</title>
				<description><![CDATA[ I've got &lt;?php include_once ".../poll_cookie.php"; ?&gt; above the html code in the page, have turned logging on for the poll, and am checking the IP Table.  The poll works great. IP checking works. But cookie checking doesn't.<br /> <br /> After the IP check expires (I've got it set to .01 hours for debugging), users can vote multiple times. In fact, they can re-vote by reloading the page that shows their results.  When I do this, the number of votes increments and whatever item I voted for gets another vote.<br /> <br /> You can see the poll on the following test page:<br /> <br />   <a class="snap_shots" href="http://coastsider.com/index2.php" target="_blank" rel="nofollow">http://coastsider.com/index2.php</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10092.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10092.php</link>
				<pubDate><![CDATA[Sun, 22 Aug 2004 23:13:54]]> GMT</pubDate>
				<author><![CDATA[ barryparr]]></author>
			</item>
			<item>
				<title>Re: cookie checking doesn't seem to work</title>
				<description><![CDATA[ [quote="barryparr"]I've got &lt;?php include_once ".../poll_cookie.php"; ?&gt; above the html code in the page, have turned logging on for the poll, and am checking the IP Table.  The poll works great. IP checking works. But cookie checking doesn't.<br /> [/quote]<br /> I don't know about anybody else, but when I don't put the php code on separate lines, I get an error.  This is how I have to do it:<br /> [code]&lt;?php <br /> include &quot;poll/poll_cookie.php&quot;; <br /> ?&gt;[/code]<br /> [code]&lt;?php<br /> include_once &quot;/home/xxxxx/public_html/poll/booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;x&#41;;<br /> ?&gt;[/code]<br />  <br /> [quote]After the IP check expires (I've got it set to .01 hours for debugging), users can vote multiple times. In fact, they can re-vote by reloading the page that shows their results.  When I do this, the number of votes increments and whatever item I voted for gets another vote.[/quote]<br /> Not sure if you can use a decimal like that. :?: <br /> <br /> Did you make any change to when the cookie is set to expire?<br /> [code]$cookie_expire = 96; // hours[/code]<br /> Take a look at Auron's instructions, which basically say the cookie expiration time should be the same as the lock-out time.<br /> <br /> http://proxy2.de/forum/viewtopic.php?t=2203<br /> <br /> [quote]You can see the poll on the following test page:<br /> <br />   http://coastsider.com/index2.php[/quote]<br /> Nice site.  What blogger program are you using?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10096.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10096.php</link>
				<pubDate><![CDATA[Mon, 23 Aug 2004 09:13:39]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ HI all, trying to add a poll to my site I have the poll files installed and I'm able to get into the admin part and all that  is working fine I just can't get it working on my page I get the following.<br /> [code]Fatal error&#58; Call to a member function on a non-object in /www/j/jkwaters/htdocs/index.php on line 1037[/code]<br /> I changed the code from <br /> [code]&lt;?php<br /> include_once &quot;/www/j/jkwaters/htdocs/poll/booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;&quot;newest&quot;&#41;;<br /> ?&gt;<br /> [/code]<br /> <br /> to what I did for the cookie replacing the server location to the url<br /> <br /> [code]&lt;?php<br /> include_once &quot;http&#58;//www.muddysmind.com/poll/booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;&quot;newest&quot;&#41;;<br /> ?&gt;<br /> [/code]<br /> <br /> but it's still failing.<br /> <br /> Any ideas?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10164.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10164.php</link>
				<pubDate><![CDATA[Mon, 30 Aug 2004 00:58:57]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I think I got it now... although I'm confused still.  <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif"/>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10165.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10165.php</link>
				<pubDate><![CDATA[Mon, 30 Aug 2004 01:35:39]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" /> I voted in your poll.  It appeared to work fine.<br /> <br /> Just curious: Did you get that first code from the Admin Panel Help section?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10168.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10168.php</link>
				<pubDate><![CDATA[Mon, 30 Aug 2004 13:28:57]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title>help Advanced Poll v2.03</title>
				<description><![CDATA[ what file do i got to open<br /> i downt find  file 'config.inc.php' ???<br /> "<br /> 1. Open the configuration file 'config.inc.php' with a text editor<br />    and set up your database settings.<br /> <br />    $POLLDB["dbName"] = "YourDBName";<br />    $POLLDB["host"]   = "localhost";<br />    $POLLDB["user"]   = "YourUsername";<br />    $POLLDB["pass"]   = "YourPassword";<br /> "<br /> help <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10186.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10186.php</link>
				<pubDate><![CDATA[Mon, 30 Aug 2004 21:16:57]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i font it   <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />  <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10188.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10188.php</link>
				<pubDate><![CDATA[Mon, 30 Aug 2004 21:38:38]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Advanced poll 2.3 on IIS 5. and PHP5</title>
				<description><![CDATA[ Hi do you have any experience using setting up advanced poll on IIS using PHP version 5.  I'm using  MySQL as the database.  I've just recently installed the latest version of PHP and MySQL but I know they are working fine, so I'm wondering if it is something in the install.php code of Advanced poll 2.3<br /> <br /> I get a message <br /> <br /> PHP Notice: Undefined variable: HTTP_SERVER_VARS in C:\inetpub\wwwroot\polls\install.php on line 10<br /> <br /> I think all the HTTP_*_VARS got depricated in PHP version 5.  Even when I change them to things like $_SERVER['hhhhhh'] it still doesn't seem to work.  Any ideas?<br /> <br /> thanks <br /> Michael Randall]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/10213.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/10213.php</link>
				<pubDate><![CDATA[Wed, 1 Sep 2004 17:03:08]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Advanced Poll Instructions</title>
				<description><![CDATA[ *BUMP*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/11171.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/11171.php</link>
				<pubDate><![CDATA[Tue, 26 Oct 2004 03:25:10]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ *bump*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/11924.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/11924.php</link>
				<pubDate><![CDATA[Sat, 20 Nov 2004 08:43:35]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ *bump*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12199.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12199.php</link>
				<pubDate><![CDATA[Wed, 1 Dec 2004 17:26:22]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hey guys how do I change the colors of the result bars?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12267.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12267.php</link>
				<pubDate><![CDATA[Fri, 3 Dec 2004 03:47:02]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Change the colors in Admin, General Settings, Table, Font And Color Options<br /> <br /> Also see:<br /> <br /> Advanced Poll background color change<br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?t=3582&amp;highlight=poll" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?t=3582&amp;highlight=poll</a><br /> <br /> Colors on different templates:<br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?p=10026&amp;highlight=#10026" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?p=10026&amp;highlight=#10026</a><br /> <br /> Here's a link to a page with websafe colors and their corresponding numbers: <br /> <a class="snap_shots" href="http://www.permadi.com/tutorial/websafecolor/" target="_blank" rel="nofollow">http://www.permadi.com/tutorial/websafecolor/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12271.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12271.php</link>
				<pubDate><![CDATA[Fri, 3 Dec 2004 15:30:45]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Anonymous"]Hey guys how do I change the colors of the result bars?[/quote]<br /> <br /> Create or edit a poll, there is a drop down box at the end of each option.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12279.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12279.php</link>
				<pubDate><![CDATA[Fri, 3 Dec 2004 16:51:41]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks, Auron.  I guess if I had been paying attention I would have noticed that word "result".]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12280.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12280.php</link>
				<pubDate><![CDATA[Fri, 3 Dec 2004 17:11:23]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="amber222"]Thanks, Auron.  I guess if I had been paying attention I would have noticed that word "result".[/quote]<br /> <br /> lol, forgot to mention you HAVE to be in the admin panel to do it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12281.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12281.php</link>
				<pubDate><![CDATA[Fri, 3 Dec 2004 17:27:59]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks alot  <img src="https://proxy2.de/forum//images/smilies/b2eb59423fbf5fa39342041237025880.gif"  />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12296.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12296.php</link>
				<pubDate><![CDATA[Sat, 4 Dec 2004 06:53:35]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Bump as we are getting  lot of questions about this.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12461.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12461.php</link>
				<pubDate><![CDATA[Thu, 16 Dec 2004 14:43:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Can the comments be shown publicly under the poll?</title>
				<description><![CDATA[ I deleted the preinstalled polls and I think the coding for getting the comments to show beneath the poll was part of that so I ask if anyone knows the snippet of code to put in there so that the comments are displayed under the respective poll?  Also, is there a way to get the comments sent to an email address to be read or does an admin need to log in to the panel to see them all?<br /> p.s. The comments ARE showing up in the admin panel.<br /> <br /> Heres what I have installed and running now at <a class="snap_shots" href="http://eaglesfootball.milfordgrandprix.com/poll.php" target="_blank" rel="nofollow">http://eaglesfootball.milfordgrandprix.com/poll.php</a><br /> <br /> &lt;?php<br /> include_once "advpoll/poll_cookie.php";<br /> ?&gt;<br /> &lt;html<br /> &lt;head&gt;<br /> <br /> &lt;/head&gt;<br /> &lt;body&gt;<br /> &lt;?php<br /> <br /> /* path */ <br /> $poll_path = "/eaglesfootball/advpoll";<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 /> $CLASS["db"] = new polldb_sql;<br /> $CLASS["db"]-&gt;connect(); <br /> <br /> $php_poll = new poll();<br /> include_once "/advpoll/booth.php"; <br /> <br /> /* the fourth poll */<br /> $php_poll-&gt;set_template_set("popup");<br /> if ($php_poll-&gt;is_valid_poll_id(4)) {<br />     echo $php_poll-&gt;display_poll(4);<br /> } <br /> <br /> ?&gt;<br /> <br /> &lt;/body&gt;<br /> &lt;/html&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12466.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12466.php</link>
				<pubDate><![CDATA[Thu, 16 Dec 2004 17:58:20]]> GMT</pubDate>
				<author><![CDATA[ goldbadge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ *BUMP*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12491.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12491.php</link>
				<pubDate><![CDATA[Sun, 19 Dec 2004 08:53:07]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ hi - <br /> <br /> when i add the code to my get me poll in the body tags i get this error. <br /> <br /> &lt;?php<br /> include_once "/home2/daktron/public_html/poll/booth.php";<br /> echo $php_poll-&gt;poll_process("newest");<br /> ?&gt;<br /> <br /> <br /> <a class="snap_shots" href="http://montymessex.com/index.php?id=17,20,0,0,1,0" target="_blank" rel="nofollow">http://montymessex.com/index.php?id=17,20,0,0,1,0</a><br /> <br /> <br /> i think it has something to do with the notepad editing post above as the closing tag ?&gt; keeps being change do its html equivalent ?&amp;gt;<br /> <br /> anythoughts.<br /> <br /> thanx]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12544.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12544.php</link>
				<pubDate><![CDATA[Mon, 20 Dec 2004 17:35:46]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ It should work if you've got it there.<br /> <br /> But WHAT IS changing it to &amp;gt;?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12551.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12551.php</link>
				<pubDate><![CDATA[Mon, 20 Dec 2004 20:24:23]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I think they mean whatever program they are using to edit the files with.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12554.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12554.php</link>
				<pubDate><![CDATA[Mon, 20 Dec 2004 20:28:34]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ What navthing?<br /> <br /> I don't know if its his site parsing the HTML, that nav thing or what.<br /> <br /> That's why I hate stuff like that it screws your code up like opening an rtf<br /> file in notepad.<br /> <br /> Just add the ?&gt; to the file without using navthing unless that is a CMS if it<br /> is then it may be a HTML parser in PHP so you may not need the PHP tags.<br /> But that also depends on whether it can parse PHP which by the looks of <br /> things it is but its not doing the poll bit. Normally this prob is solved by <br /> changing the files extension to *.php<br /> <br /> Its nothing wrong with the poll so i'll levave it up to you what to do.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12557.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12557.php</link>
				<pubDate><![CDATA[Mon, 20 Dec 2004 20:33:23]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>Is there a way to make comments visible?</title>
				<description><![CDATA[ Hi Auron, I've got advanced poll 2.03 up and working by itself at <a class="snap_shots" href="http://eaglesfootball.milfordgrandprix.com/poll.php" target="_blank" rel="nofollow">http://eaglesfootball.milfordgrandprix.com/poll.php</a><br /> <br /> I have a few brief questions.<br /> <br /> 1)  After the people vote, view the results and post a comment, is there a way to publicly display the comments or are they only accessed thru the admin panel?<br /> <br /> 2)  As you'll see at the link above I have a basic poll working on a blank page but how do I control it's location on a page (ie where it appears)?  Does it somehow get put in a table or cell to control its movement??  I know it's an html type of question but I'm using a WYSIWYG editor rather than hard coding so I need a little help.<br /> Thanks, Kurt]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12580.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12580.php</link>
				<pubDate><![CDATA[Tue, 21 Dec 2004 18:18:40]]> GMT</pubDate>
				<author><![CDATA[ goldbadge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ look at the demo polls on this site or search the forums on how to display comments.<br /> <br /> the poll layout is done via templates that can be edited in the admin panel.<br /> <br /> to control where it appears is wherever you include the include code.<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/12581.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/12581.php</link>
				<pubDate><![CDATA[Tue, 21 Dec 2004 18:47:47]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>Help?!?</title>
				<description><![CDATA[ I have been struggeling with this for over a week now.  I would appreciate any help possible.  I have installed the polls, checked my file locations, tweaked everything imaginable, looked at it in firefox and IE.  Still to no avail.  Nothing shows up.  Nothing......<br /> <br /> My page is located at: [url]http://israellycool.goblogit.com/results/test.php[/url]<br /> <br /> The code on the page is:<br /> [code]&lt;?php<br /> // Important! You have to include it before your html code<br /> include_once &quot;/home/goblogit/public_html/israellycool/results/poll_cookie.php&quot;;<br /> ?&gt;<br /> &lt;html&gt;<br /> &lt;body&gt;<br /> &lt;?php<br /> include_once &quot;/home/goblogit/public_html/israellycool/results/booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;6&#41;;<br /> ?&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13355.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13355.php</link>
				<pubDate><![CDATA[Sat, 22 Jan 2005 23:32:23]]> GMT</pubDate>
				<author><![CDATA[ ginadapooh]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ try using relative paths eg.<br /> <br /> [code]&lt;?php <br /> include_once &quot;/israellycool/results/poll_cookie.php&quot;; <br /> ?&gt; <br /> &lt;html&gt; <br /> &lt;head&gt;<br /> &lt;/head&gt;<br /> &lt;body&gt; <br /> &lt;?php <br /> include_once &quot;/israellycool/results/booth.php&quot;; <br /> echo $php_poll-&gt;poll_process&#40;6&#41;; <br /> ?&gt; <br /> &lt;/body&gt; <br /> &lt;/html&gt;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13361.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13361.php</link>
				<pubDate><![CDATA[Sun, 23 Jan 2005 00:51:58]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Actually since it is in the same file as the poll_cookie and the booth wouldn't I have to make it just <br /> [code]&lt;?php<br /> include_once &quot;poll_cookie.php&quot;;<br /> ?&gt;<br /> &lt;html&gt;<br /> &lt;head&gt;<br /> &lt;/head&gt;<br /> &lt;body&gt;<br /> &lt;?php<br /> include_once &quot;booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;6&#41;;<br /> ?&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;[/code]<br /> <br /> That dosen't seem to work either :(]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13364.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13364.php</link>
				<pubDate><![CDATA[Sun, 23 Jan 2005 00:58:50]]> GMT</pubDate>
				<author><![CDATA[ ginadapooh]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ try moving it out of there.<br /> <br /> so the path is just results.<br /> <br /> does your server have PHP?<br /> Are you using the textfile or database version?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13395.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13395.php</link>
				<pubDate><![CDATA[Sun, 23 Jan 2005 20:58:10]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well, I got smart and decided to try it on a diffrent server.  It works (almost) flawlessly.  I am not sure what the server problem was, but later days to figure that out.  The only isssue I am having now is I am getting a<br /> [code]<br /> Warning&#58; Cannot modify header information - headers already sent by &#40;output started at /home/autumndr/public_html/israellycool/all.php&#58;2&#41; in /home/autumndr/public_html/israellycool/poll_cookie.php on line 21<br /> [/code]<br /> <br /> I am not sure if this is because I keep coming in and dinking with things or if it is something a bit more simple?<br /> <br /> Thank you for all of your wonderful advise!!  I may actually get to enjoy some of my weekend now :)]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13397.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13397.php</link>
				<pubDate><![CDATA[Sun, 23 Jan 2005 22:53:18]]> GMT</pubDate>
				<author><![CDATA[ ginadapooh]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Check for any empty lines or empty lines with spaces before and after the PHP code and tags.<br /> Do a search on "Warning: Cannot modify header information..." for more info.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13414.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13414.php</link>
				<pubDate><![CDATA[Mon, 24 Jan 2005 17:44:12]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>poll install error... unexpected T_STRING</title>
				<description><![CDATA[ I install the Advanced poll as directed, followed EVERY SINGLE instruction word for word.<br /> <br /> I set the paths correctly for the php code.<br /> <br /> i am using a webhosting company. the paths provided by the poll was correct so i used that.<br /> <br /> that path is [code]&lt;?php include_once &quot;/home/httpd/vhosts/uwi-iob.org/httpdocs/pollphp/textfile/poll_cookie.php&quot;; ?&gt;[/code]<br /> <br /> You can see the poll at [url]http://www.uwi-iob.org/polls/polls.php[/url]<br /> <br /> I keep getting the error [code]Parse error&#58; parse error, unexpected T_STRING in /home/httpd/vhosts/uwi-iob.org/httpdocs/polls/polls.php on line 2[/code]<br /> <br /> I spend the ENTIRE day searching this forum for an answer, the closest answer i found for unexpected T_STRING is that i have a php issue with my webserver and to adjust the php.ini file.<br /> <br /> But remember i am using a webhosting company, so i dont htink i will have access to that file. What should i do? Where is the error originating from? i hope is not a php issue with my webserver.<br /> <br /> Some server stats: Apache Fedora on Linux platform with mod_perl and php support.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13800.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13800.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 03:06:57]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ whats on line 2 of whatever file?<br /> <br /> for the path try...<br /> <br /> [code]&lt;?php include_once &quot;./pollphp/textfile/poll_cookie.php&quot;; ?&gt;[/code]<br /> <br /> This assumes the file calling the poll_cookie.php is in something like httpdocs - as in the base folder for your site, where the index.html/htm/php file is.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13801.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13801.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 03:28:25]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>T_String</title>
				<description><![CDATA[ Here are the first few lines of poll.php:<br /> <br /> [code]&lt;?php include_once &quot;/home/httpd/vhosts/uwi-iob.org/httpdocs/pollphp/textfile/poll_cookie.php&quot;; ?&gt;<br /> &lt;?xml version=&quot;1.0&quot;?&gt;<br /> &lt;!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'<br /> &quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;<br /> &lt;html lang='en' xml&#58;lang='en' xmlns='http&#58;//www.w3.org/1999/xhtml'&gt;[/code]<br /> <br /> Line 2 is actually :<br /> <br /> [code]&lt;?xml version=&quot;1.0&quot;?&gt;[/code]<br /> <br /> I commented off line 2 thinking the xml statement was causing the error, however that didnt work.<br /> <br /> I'll try setting the path as you said in your previous reply. I'll let you know what happened.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13803.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13803.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 03:54:41]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I set the path as you said. I get the same exact error.<br /> <br /> browse to the following URL: [url]http://www.uwi-iob.org/polls/polls.html[/url]<br /> <br /> If you view the source there, you will see the code.<br /> <br /> However, please note that the actually php file is at [url]http://www.uwi-iob.org/polls/polls.php[/url]<br /> <br /> the polls.php file is in directoy <br /> <br /> [code]httpdocs/polls/polls.php[/code]<br /> <br /> So when i tired what you suggested, i tried both [code]&lt;?php include_once &quot;.././pollphp/textfile/poll_cookie.php&quot;; ?&gt;[/code]<br /> and <br /> [code]&lt;?php include_once &quot;./pollphp/textfile/poll_cookie.php&quot;; ?&gt;[/code]<br /> <br /> and i still get the same error.<br /> <br /> I am really at a lost here.<br /> <br /> Thanks very much for the quick responses.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13806.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13806.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 04:19:37]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok, you would not believe this, but i totally took off the xml line and it worked!<br /> <br /> Before I had just commented it off, but i have no clue why it still didnt work then.<br /> <br /> Do you have any comments on this?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13807.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13807.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 04:26:15]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Re: T_String</title>
				<description><![CDATA[ [code]&lt;?php include_once &quot;/home/httpd/vhosts/uwi-iob.org/httpdocs/pollphp/textfile/poll_cookie.php&quot;; ?&gt;<br /> &lt;?xml version=&quot;1.0&quot;?&gt;<br /> &lt;!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'<br /> &quot;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;<br /> &lt;html lang='en' xml&#58;lang='en' xmlns='http&#58;//www.w3.org/1999/xhtml'&gt;[/code]<br /> <br /> in this code change &lt;?xml version="1.0"?&gt; to &lt;xml version="1.0"&gt; or &lt;?xml version="1.0"&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/13842.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/13842.php</link>
				<pubDate><![CDATA[Wed, 2 Feb 2005 18:08:23]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I did a search and read a lot and nothing works for me.  I know this is probably something easy that I am missing but I'll ask anyways :D <br /> <br /> My page is www.nebraskagamer.com<br /> <br /> I have the poll showing up just fine. I have the common problem with the cookie. I tried adding the <br /> [code]<br /> &lt;?php<br /> require &quot;http&#58;//www.nebraskagamer.com/poll/poll_cookie.php&quot;;<br /> ?&gt;<br /> [/code]<br /> <br /> I had to include the whole url for it to not have an error. poll/poll_cookie.php doesn't work. <br /> <br /> I added this at the very top of my html code. Before any code at all. I tried putting it in the same table as the code for my poll. Neither work. The only thing working is the ip deal, so I turned that off and the cookie doesn't work.<br /> <br /> I am so sorry, I am sure this question gets old. :cry:]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/14161.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/14161.php</link>
				<pubDate><![CDATA[Tue, 8 Feb 2005 19:19:16]]> GMT</pubDate>
				<author><![CDATA[ Omahaguy]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ So when you turn off the ip stuff and use this it doesn't stop you from voting multiple times?<br /> <br /> You can use either the ip table or the cookie.<br /> You can switch logging on for a particular poll, but, if my memory serves me right all that does <br /> is track stuff about the poll, like who voted and when.<br /> <br /> A post in this thread by me...<br /> <br /> <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?p=5675#5675" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?p=5675#5675</a><br /> <br /> May be helpful to explain a few things : )]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/14162.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/14162.php</link>
				<pubDate><![CDATA[Tue, 8 Feb 2005 19:38:55]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ *BUMP*]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2067/21801.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2067/21801.php</link>
				<pubDate><![CDATA[Fri, 15 Dec 2006 20:18:52]]> GMT</pubDate>
				<author><![CDATA[ Altshift]]></author>
			</item>
	</channel>
</rss>