<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Does advanced poll work in .html?"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Does advanced poll work in .html?"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Does advanced poll work in .html?</title>
				<description><![CDATA[ I would like my poll to work in .html extension, is that possible? thx.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/14943.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/14943.php</link>
				<pubDate><![CDATA[Mon, 7 Mar 2005 07:18:40]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Im having the same issue here. What is the tag to use to post the poll in a html document?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15019.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15019.php</link>
				<pubDate><![CDATA[Thu, 10 Mar 2005 09:25:24]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Only if your HOST has .htm extensions set up to be passed to PHP otherwise, and this is the normal setup, you need to use the .php extension.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15022.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15022.php</link>
				<pubDate><![CDATA[Thu, 10 Mar 2005 09:52:17]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>yes you can have advanced poll in your .HTML</title>
				<description><![CDATA[ I found a way to have your advanced poll in your HTML document and leave it as a HTML document.<br /> <br /> 1) Create a php page with just you poll. it should look something like this..<br /> <br /> &lt;? place the php coookie that is required for the poll here ?&gt;<br /> <br /> &lt;table&gt;<br /> put your php code for the poll here<br /> <br /> &lt;/table&gt;<br /> <br /> Notice you dont need the opening and closing tags for &lt;html&gt; and &lt;body&gt;.<br /> All you need is just the snippet of php/HTML code for the actuall poll.<br /> Save the php page as a .php...lets use test.php for this example.<br /> <br /> 2) Then in your HTML document, wherever you want your poll, put:<br /> <br /> [code]&lt;iframe src=&quot;http&#58;//www.yoursite.com/test.php&quot; height=&quot;205&quot; width=&quot;200&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot;&gt;&lt;/iframe&gt;[/code]<br /> <br /> Ofcourse you will have to play around with the width and height  till you get it right.<br /> <br /> If you want to see my implementation, you can check it here -  [url]www.uwi-iob.org[/url]<br /> <br /> Shivan Jaikaran]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15773.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15773.php</link>
				<pubDate><![CDATA[Sat, 23 Apr 2005 04:59:30]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ in the admin section it says to embed a poll into your html to do this:<br /> <br /> [code]<br /> &lt;?php<br /> // Important! You have to include it before your html code<br /> include_once &quot;/home/lyricsa/public_html/poll/poll_cookie.php&quot;;<br /> ?&gt;<br /> <br /> &lt;html&gt;<br /> &lt;body&gt;<br /> &lt;?php<br /> include_once &quot;/home/lyricsa/public_html/poll/booth.php&quot;;<br /> echo $php_poll-&gt;poll_process&#40;6&#41;;<br /> ?&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;<br /> [/code]<br /> <br /> but when i do that its ends up showing <br /> poll_process(6);<br /> ?&gt;<br /> instead of the poll. <br /> <br /> <br /> the iframe is a great idea, but i am chaging my site over from using iframes due to the fact they are not that compatible with other web browsers. so does anyone else have any more ideas on how to fix this embedded problem?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15778.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15778.php</link>
				<pubDate><![CDATA[Sun, 24 Apr 2005 07:29:26]]> GMT</pubDate>
				<author><![CDATA[ Lyric]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes use the .php extension :p or speak to your host to see if you can't have the .htm and .html extensions passed to PHP.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15779.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15779.php</link>
				<pubDate><![CDATA[Sun, 24 Apr 2005 07:35:31]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You can use .htaccess to have your page extension(ie .html ) to be handled as another like php. You pretty much customize how your page is served. I use it to handle my .htm and.html files as .shtml I assume it will work with other file extensions though. As I did below. The server parsed thing might have to be different make it work for php<br /> <br /> AddType text/html .shtml<br /> AddHandler server-parsed .html<br /> AddHandler server-parsed .shtml<br /> AddHandler server-parsed .htm]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15795.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15795.php</link>
				<pubDate><![CDATA[Mon, 25 Apr 2005 21:19:49]]> GMT</pubDate>
				<author><![CDATA[ Skorch]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ any idea how it'd be done for .php?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15802.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15802.php</link>
				<pubDate><![CDATA[Tue, 26 Apr 2005 07:44:23]]> GMT</pubDate>
				<author><![CDATA[ los5o7]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ you don't need to add .php to htaccess. it is already parsed since it has the php extension.<br /> if a page has php in it should have the php extension.<br /> <br /> php pages can contain html, its just pointless setting a server to pass .php <br /> and .html/htm files as most of the .html/htm files will have just html and not php.<br /> I mean, the server has to parse an entire file and it turns out it contains no php!<br /> What a waste of time and resources.<br /> <br /> I mean if your host has PHP, why do you need to give your page a .htm/html extension?<br /> You can use a .php extension and save yourself a lot of time.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15815.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15815.php</link>
				<pubDate><![CDATA[Tue, 26 Apr 2005 17:41:27]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I tried that way because i have a 109 page site and making it php compatible will take awhile. I would replace .shtml with .php and see how it went from there.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15852.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15852.php</link>
				<pubDate><![CDATA[Wed, 27 Apr 2005 20:04:26]]> GMT</pubDate>
				<author><![CDATA[ Skorch]]></author>
			</item>
			<item>
				<title>Ended up using pop up...</title>
				<description><![CDATA[ I added the following line to my htaccess file:<br /> [code]AddType application/x-httpd-php .php .html[/code]and my pages worked fine, the poll worked fine but it would not work on the index page which where I wanted it. I got a huge error which took the place of my index page:<br /> [code]MySQL Error &#58; Database Error<br /> Error Number&#58; 1046 No Database Selected<br /> PHP Version &#58; 4.3.10<br /> OS          &#58; Linux<br /> Server      &#58; Apache<br /> Script Name &#58; /index.php[/code]<br /> I have mod_rewrite on so perhaps that's why it won't work on the front page. It does seem to work on an inside page though.<br /> <br /> Instead, I ended up using a pop up. All my pages are PHP using .html extensions and I would lose far too much traffic if I had to switch over to PHP extensions. Using a pop up window works for now until I can find another solution to include it (I don't want to use an iframe). <br /> <br /> Good luck.<br /> Hope]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15888.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15888.php</link>
				<pubDate><![CDATA[Sun, 1 May 2005 02:27:58]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No that message means you forgot to fill in your MySQL details in the config file of the script.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15889.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15889.php</link>
				<pubDate><![CDATA[Sun, 1 May 2005 07:33:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>I think I completed config properly</title>
				<description><![CDATA[ That's intestesting because it works when opening the poll in a PHP file (as a popup) just fine and I believe I filled out everything properly in the config file. I'm thinking it could be because I added the include PHP code to part of an HTML template when I should be doing something else, like creating the PHP page and calling that within the template. Obviously, I don't know PHP (but will learn asap!) though I will experiment a bit and see what happens. Thank you Carbonize.<br /> Hope<br /> [quote="Carbonize"]No that message means you forgot to fill in your MySQL details in the config file of the script.[/quote]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/15898.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/15898.php</link>
				<pubDate><![CDATA[Tue, 3 May 2005 00:30:47]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>How to lose traffics via Advanced Poll</title>
				<description><![CDATA[ I have been searching this forum for a way to make it work in html files instead of php. Why ?<br /> <br /> Because if you have a nice page that ranks highly in a search engine with an html or htm extension, and suddenly change it to php .. the engine won't be able to find the page. It will think that the page won't exist anymore!<br /> <br /> That is a very easy way to lose traffic! <br /> <br /> So, I can only use php extension for new pages or pages that does not rank well . I believe there;s a way to make it work in html docs...still looking for it in this forum<br /> <br /> Sad that a nice software ended up having super-poor documentation  <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/16596.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/16596.php</link>
				<pubDate><![CDATA[Fri, 17 Jun 2005 18:23:46]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The search engine found your page once, it would find it again. Your other options are to set up a 302 page moved header for the htm extension and point it to the new page or simply .htaccess file to send anyone requesting the .html extension to the .php extension.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/16598.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/16598.php</link>
				<pubDate><![CDATA[Fri, 17 Jun 2005 18:49:59]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?t=4736" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?t=4736</a><br /> <br /> by Iskandar]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/16607.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/16607.php</link>
				<pubDate><![CDATA[Fri, 17 Jun 2005 23:31:30]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Bet Auron's happy now he doesn't have to explain how to do it :p<br /> It's quite funny because I just had to help a bloke with the guestbook who had used .htaccess to pass .htm to the processor. Personally I see no reason to not use .php but ho hum.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/16608.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/16608.php</link>
				<pubDate><![CDATA[Fri, 17 Jun 2005 23:36:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Bet Auron's happy now he doesn't have to explain how to do it :p<br /> It's quite funny because I just had to help a bloke with the guestbook who had used .htaccess to pass .htm to the processor. Personally I see no reason to not use .php but ho hum.[/quote]<br /> <br /> ditto on the last part. if only people planned ahead... lol<br /> <br /> nb. new site up soon!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4366/16609.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4366/16609.php</link>
				<pubDate><![CDATA[Fri, 17 Jun 2005 23:49:26]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
	</channel>
</rss>