Author |
Message |
10/05/2005 17:43:31
|
Anonymous
|
I would like to insert some advanced polls on several pages on my site, however I'm using frontpage 2003 and don't know exactly how to go about it. I tried searching for a install guide, but didn't find one. Can someone please point me in the right direction. Thank you for your help, Grim
|
|
09/10/2005 19:46:50
|
Ara
Beginner
Joined: 09/10/2005 19:39:34
Messages: 5
Offline
|
I also would love to know how to do this I have been fighting with FP over polls for about a week now.
|
|
09/10/2005 23:59:13
|
Auron
Expert
Joined: 23/06/2003 22:02:17
Messages: 1053
Offline
|
Does ur host have MySQL if ur using the MySQL version?
Does ur host have PHP?
Make sure ur page extension is *.php or see the thread about adding the poll to a non-php page using .htaccess file/s.
What code are u using to insert poll in ur pages?
Does frontpage require any special page extensions?
|
Visit my site @ www.ragnaru.com
Adv. Poll Install Guide NOW BACK ONLINE! (And also rather out of date I would of thought) |
|
10/10/2005 03:48:56
|
Ara
Beginner
Joined: 09/10/2005 19:39:34
Messages: 5
Offline
|
Frontpage does have special extentions. I am currently using phpBB and Coppermine so I know the server will run php scripts. Yes Acehost uses MySQL. I messed up my thaccess file trying to add the line you spoke of, but frontpage extetions alters it to look like this anyway.
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.companionsofvirtue.com
AuthUserFile /home/arabeta/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/arabeta/public_html/_vti_pvt/service.grp
I cant upload a new htaccess because when I do I get a 500 error so I am running with out one.... everything on the site seems fine but I am no closer to using polls.
|
|
10/10/2005 04:00:38
|
Ara
Beginner
Joined: 09/10/2005 19:39:34
Messages: 5
Offline
|
here is that shortend piece you asked for
----------beginning-------------
<?php
// Important! You have to include it before your html code
include_once "poll/poll_cookie.php";
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<title>Companions of Virtue</title>
<bgsound src="Foret.WAV" loop="-1">
<meta name="Microsoft Theme" content="slate 1011, default">
-------------body where insert will be-----------------
<td width="27%" align="left" valign="top" style="border-right-style:none; border-right-width:medium; border-top-style:none; border-top-width:medium" height="178">
November Release.
<?php
include_once "/home/arabeta/public_html/poll/booth.php";
echo $php_poll->poll_process("newest");
?>
</td>
|
|
|