<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced Poll 2.03 -voting redirects without session id-"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced Poll 2.03 -voting redirects without session id-"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced Poll 2.03 -voting redirects without session id-</title>
				<description><![CDATA[ I am displaying several polls using the same url. The session id changes which poll is viewed. Everything seems to work fine except when you vote it directs you to the page without the session id.<br /> <br /> This is a page to show you what I mean. <br /> <a class="snap_shots" href="http://www.4seer.net/site.php?c=2" target="_blank" rel="nofollow">http://www.4seer.net/site.php?c=2</a><br /> <br /> After you vote it takes you to this page without "?c=2"<br /> <a class="snap_shots" href="http://www.4seer.net/site.php" target="_blank" rel="nofollow">http://www.4seer.net/site.php</a><br /> <br /> Does anyone know how to solve this?<br /> <br /> I would also like to know how to allow you to vote over and over by bypassing the ip check or the cookie. This is just to make the whole testing process easier. I have tried to delete the cookie and the field with the ip in the DB but nothing works...]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14564.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14564.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 04:10:06]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I can help you with your question but what doc did you read to get the polls posted in your web pages?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14566.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14566.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 05:29:55]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ DB, I use php/mysql. Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14568.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14568.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 06:19:12]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am assuming you are asking if I used the db or textfile version.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14569.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14569.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 06:23:08]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Duilen"]I am assuming you are asking if I used the db or textfile version.[/quote]<br /> <br /> he's asking a question, that's different.<br /> <br /> there's already a few topics on this already on the first and second pages of this forum, something like form action or redirect in the search might help.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14576.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14576.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 13:50:13]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I have almost figured it out. I need to edit this line in class_poll.php to forward to the right page.<br /> <br /> [code]$this-&gt;form_forward = &quot;site.php?c=$c&quot;;[/code]<br /> <br /> The only problem is I can't figure out how to transfer my session variable to class_poll.php. I have tried to change this line in booth.php but I can't seem to make it work.<br /> <br /> [code]require $include_path.&quot;/include/class_poll.php&quot;; [/code]<br /> <br /> I have tried...<br /> <br /> [code]require $include_path.&quot;/include/class_poll.php?c=$c&quot;;[/code]<br /> <br /> and<br /> <br /> [code]require 'http&#58;//4seer.net/site.php?c='.$c;[/code]<br /> <br /> I get URL file-access disabled by the server. So I logged into my cpanel to see if I could enable it but I only have the ability to enable allow_url_fopen. (already enabled)<br /> <br /> Any ideas?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14596.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14596.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 18:53:25]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I figured it out...<br /> <br /> If anyone is having the same problem you will need to edit 2 files. I'm not sure if this is the best way or not but it works.<br /> <br /> [b]booth.php [/b]<br /> Add the following line of code. <br /> [code]$_SESSION&#91;'c'&#93; = &quot;$c&quot;;[/code]<br /> <br /> I added it here.<br /> <br /> [code]require $include_path.&quot;/include/config.inc.php&quot;;<br /> require $include_path.&quot;/include/$POLLDB&#91;class&#93;&quot;;<br /> require $include_path.&quot;/include/class_poll.php&quot;;<br /> $_SESSION&#91;'c'&#93; = &quot;$c&quot;;[/code]<br /> <br /> [b]class_poll.php[/b]<br /> Add the following lines of code.<br /> 	[code]foreach &#40;$_SESSION as $name=&gt;$val &#41;<br />    &#123;<br />      $$name =&amp; $_SESSION&#91;&quot;$name&quot;&#93;;<br /> 	 &#125;[/code]<br /> <br /> here...<br />  [code]function poll&#40;&#41; &#123;<br /> 	foreach &#40;$_SESSION as $name=&gt;$val &#41;<br />    &#123;<br />      $$name =&amp; $_SESSION&#91;&quot;$name&quot;&#93;;<br /> 	 &#125;<br />         global $POLLTBL, $CLASS, $HTTP_SERVER_VARS;[/code]<br /> <br /> Now you will need to edit this line of code to something similar.<br /> [code]$this-&gt;form_forward = &quot;site.php?c=$c&quot;;[/code]<br /> <br /> [b]Note:[/b] I took this code straight from my site. You will need to modify yours accordingly. If the site you are displaying polls on is...<br /> http://site.com/index.php?menu=1<br /> You would need to replace all the c's with menu's.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4308/14600.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4308/14600.php</link>
				<pubDate><![CDATA[Sat, 26 Feb 2005 19:51:23]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>