Author |
Message |
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 23/08/2005 03:51:24
|
Anonymous
|
I'm using Emax which provides customers with their own web designer. I installed AP with Fantastico and it works fine.
I put
- <?php
- include_once "poll/booth.php";
- echo $php_poll->poll_process(x);
- ?>
Before the <html> tag and I put
- <?php
- include_once "poll/booth.php";
- echo $php_poll->poll_process("newest");
- ?>
Now to the part aout the web designer. You can create a box that can hold script so I put the above code into that box. I save the file and click publish. I load the page and it doesn't show up. I don't get any errors.
http://www.simulationcity.net/ The poll should show up right below the Topsites.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 26/08/2005 08:06:06
|
amber222
Graduate
Joined: 07/05/2004 21:13:07
Messages: 586
Offline
|
Your page extension needs to be .php. Rename page from index.html to index.php or put the poll code on a page that ends in .php. Alternatively, here is a post with tips on how to include the poll in an .html page:
Guide on How to Add Poll to HTML page
http://proxy2.de/forum/viewtopic.php?t=4736
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 27/08/2005 01:19:48
|
Anonymous
|
Yeah that was the problem. I never knew that you couldn't put php in an HTML page. Is there a way to get how many votes an option got?
EG: I made a poll on browsers and it says IE 40.00% how Do I get it to say 2 votes then 40.00%
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 27/08/2005 12:58:43
|
amber222
Graduate
Joined: 07/05/2004 21:13:07
Messages: 586
Offline
|
It looks like a template issue. Demo 3 shows the number of votes in parentheses after the percentages. http://proxy2.de/poll/demo_3.php?action=results&poll_ident=4
Demo 3 uses the plain template. I looked at the result_loop for the plain template and found the following code:
- <td><font face="$pollvars[font_face]" color="$pollvars[font_color]" size="1"><img src="$pollvars[base_gif]/$image.gif" width="$img_width" height="$pollvars[img_height]"> $vote_percent % ($vote_count)</font></td>
So I'm guessing it is a matter of using this plain template or including the ($vote_count) code in the result_loop of any other template you use. If the template directories and files permissions were set according to the info in the readme file, you should be able to edit the result_loop from the poll's Administration Panel.
Auron, will that work?
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 27/08/2005 23:16:33
|
Anonymous
|
So where would this go?
- <td><font face="$pollvars[font_face]" color="$pollvars[font_color]" size="1"><img src="$pollvars[base_gif]/$image.gif" width="$img_width" height="$pollvars[img_height]"> $vote_percent % ($vote_count)</font></td>
I have a vauge idea of what you're talking about. For the plain template the above code would go in the "Display Loop" box in the "plain" template?
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 27/08/2005 23:17:54
|
Anonymous
|
I found the option to change it from percentages to votes in the option page.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 28/08/2005 20:16:36
|
amber222
Graduate
Joined: 07/05/2004 21:13:07
Messages: 586
Offline
|
simulationcity wrote:I found the option to change it from percentages to votes in the option page.
Could you please explain this for other people who might want to do this? What do you mean by "options page"? I do not have any link like that.
Thanks.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 29/08/2005 15:18:20
|
Anonymous
|
Go into the AdminCP and at the top there is a image link and has "Generl Settings" below it. Scroll Down to "Miscellaneous" And there are two radio buttons beside "Display result as" select Votes and click "Submit Settings"
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 30/08/2005 08:40:49
|
Anonymous
|
Thanks.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 01/09/2006 09:45:35
|
squall5240
Newbie
Joined: 01/09/2006 09:21:39
Messages: 1
Location: Iran
Offline
|
hi,
first thanks for your great scripts !!!
i get the advanced poll and install it in a DB version and it works great and i don't have any problem with it. but my problems start when i want to put it in my page !
i use the MKPortal CMS for my site and it's realy good but i can't find where should i put the poll codes to work.
index.php:
- <?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- define ( 'IN_MKP', 1 );
-
- $MK_PATH = "./";
- require $MK_PATH."mkportal/conf_mk.php";
-
- switch($MK_BOARD) {
- case 'IPB':
- $driverf = "IPB/ipb_driverf.php";
- $board_functions = "IPB/ipb_board_functions.php";
- break;
- case 'PHPBB':
- $driverf = "PHPBB/php_driverf.php";
- $board_functions = "PHPBB/php_board_functions.php";
- break;
- case 'VB':
- $driverf = "VB/vb_driverf.php";
- $board_functions = "VB/vb_board_functions.php";
- break;
- case 'OXY':
- $driverf = "oxy_driverf.php";
- $board_functions = "oxy_board_functions.php";
- break;
- case 'IPB13':
- $driverf = "IPB13/ipb13_driverf.php";
- $board_functions = "IPB13/ipb13_board_functions.php";
- break;
- default:
- $driverf = "SMF/smf_driverf.php";
- $board_functions = "SMF/smf_board_functions.php";
- break;
- }
-
- require $MK_PATH."mkportal/include/$driverf";
- require $MK_PATH."mkportal/include/functions.php";
- require $MK_PATH."mkportal/include/$board_functions";
- require "$mklib->template/tpl_main.php";
-
- $mkportals->input = $mklib->mkp_input();
-
- if($MK_OFFLINE && !$mkportals->member['g_access_cp'] && !$mklib->member['g_access_cpa']) {
- $message = $mklib->lang['offline'];
- $mklib->off_line_page($message);
- exit;
- }
-
- $switch = array('blog' => "blog",
- 'chat' => "chat",
- 'contents' => "contents",
- 'downloads' => "downloads",
- 'gallery' => "gallery",
- 'news' => "news",
- 'quote' => "quote",
- 'reviews' => "reviews",
- 'search' => "search",
- 'topsite' => "topsite",
- 'urlobox' => "urlobox",
- );
-
-
- if (!isset($switch[$mkportals->input['ind']])) {
- $mkportals->input['ind'] = "contents";
- }
- if (!$mklib->disablegzip && $mkportals->input['ind'] != "downloads") {
- ob_end_clean();
- @ob_start('ob_gzhandler');
- }
- require "./mkportal/modules/{$switch[$mkportals->input['ind']]}/index.php";
-
-
- ?>
tpl_main.php (this is a page that contain a pages codes and i use the FILE codes to show the pages):
- <?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- class tpl_main {
-
- function view_header($title, $css, $js, $pmk_js, $board_header) {
- global $mklib, $mklib_board;
-
- return <<<EOF
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-
- <!-- begin document head -->
-
- <head>
- <meta http-equiv="content-type" content="text/html; charset={$mklib->charset}" />
- <meta name="generator" content="MKPortal" />
- <meta http-equiv="Pragma" content="no-cache" />
- <meta content="no-cache" http-equiv="no-cache" />
- <meta http-equiv="Cache-Control" content="no-cache" />
- {$title}
- {$css}
- {$board_header}
- <script type="text/javascript" src="{$js}"></script>
- {$pmk_js}
- </head>
-
- <body onload="javascript:GetPos()">
-
- <!-- end document head -->
-
- EOF;
- }
-
- function open_main($mainwidth) {
- global $mklib;
- return <<<EOF
-
- <!-- begin open main table -->
-
- <div id="mkwrapper" style="width: {$mainwidth};">
- <table class="tabmain" width="100%" align="center" border="0" cellspacing="0" cellpadding="0">
-
- <tr>
- <td width="100%" align="center">
-
- <table border="0" width="100%" cellpadding="0" cellspacing="0">
-
- <!-- end open main table -->
-
- EOF;
- }
-
- function view_logo() {
- global $mklib;
- return <<<EOF
-
- <!-- begin logostrip -->
-
- <tr>
- <td id="mklogostrip" style="background-image: url('$mklib->images/sf_logo.jpg')" width="100%">
- <a href="$mklib->siteurl/index.php"><img src="$mklib->images/logo.gif" border="0" alt="" /></a>
- </td>
- </tr>
-
- <!-- end logostrip -->
-
- EOF;
- }
-
- function view_linkbar($row_link) {
- global $mklib, $mkportals;
- return <<<EOF
-
- <!-- begin linkbar -->
-
- <tr>
- <td>
- <table width="100%" align="center" cellspacing="0" cellpadding="2" border="0">
- <tr>
- <td class="navigatore" style="padding: 4px;">
- $row_link
- </td>
- </tr>
- </table>
- </td>
- </tr>
-
- <!-- end linkbar -->
-
- EOF;
- }
-
- function view_urlo($urlo1, $urlo2) {
- global $mklib;
- return <<<EOF
-
- <!-- begin shoutbox -->
-
- <tr align="left">
- <td>
- <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
- <tr>
- <td class="urlo" style="background-image: url('$mklib->images/m_sf.gif')" width="100%" valign="bottom" nowrap="nowrap">
- {$mklib->lang['urlolast']} - $urlo1
- </td>
- </tr>
- <tr>
- <td class="urlo2" colspan="2">$urlo2
- </td>
- </tr>
- </table>
- </td>
- </tr>
-
- <!-- end shoutbox -->
-
- EOF;
- }
-
- function view_separator_h() {
- global $mklib;
- return <<<EOF
-
- <!-- begin horizontal spacer -->
-
- <!-- separatore orizzontale
- <tr align="center">
- <td class="trattini"><img src="$mklib->images/punto_or.gif" width="1" height="1" alt="" />
- </td>
- </tr> -->
-
- <!-- end horizontal spacer -->
-
- EOF;
- }
-
- function open_body() {
- global $mklib;
- return <<<EOF
-
- <!-- begin open portal body -->
-
- <tr align="center">
- <td width="100%">
- <table border="0" width="100%" cellspacing="0" cellpadding="0">
- <tr>
-
- <!-- end open portal body -->
-
- EOF;
- }
-
- function view_column_left($blocks) {
- global $mklib;
-
- return <<<EOF
-
- <!-- begin left column -->
-
- <td id="menusx" valign="top" align="left">
- <div id="menucontents" style="$mklib->menucontents">
- <div style="text-align:right;"><a href="javascript:ColumnClose('menusx');MemoPos('MKmenusx', '1');"><img src="$mklib->images/f2.gif" border="0" alt="" /></a> </div>
- <table cellpadding="0" cellspacing="2" border="0" style="width: {$mklib->columnwidth}px;">
- {$blocks}
- </table>
- </div>
- <div id="menucloseds" style="$mklib->menucloseds">
- <div style="text-align:right;"><a href="javascript:ColumnOpen('menusx');MemoPos('MKmenusx', '0');"><img src="$mklib->images/f1.gif" border="0" alt="" /></a></div>
- </div>
- </td>
-
- <!-- end left column -->
-
- EOF;
- }
-
-
- function view_separator_v() {
- global $mklib;
- return <<<EOF
-
- <!-- begin column spacer -->
-
- <td class="vspacer" width="0%" align="left" style="background-image: url('$mklib->images/punto_vert.gif')"><img src="$mklib->images/punto_vert.gif" width="6" height="3" alt="" />
- </td>
-
- <!-- end column spacer -->
-
- EOF;
- }
-
- function view_column_center($blocks) {
- global $mklib;
- return <<<EOF
-
- <!-- begin center column -->
-
- <td valign="top" align="left" width="100%">
- <table cellpadding="0" cellspacing="3" border="0" width="100%">
- {$blocks}
- </table>
- </td>
-
- <!-- end center column -->
-
- EOF;
- }
-
- function view_column_right($blocks) {
- global $mklib;
- return <<<EOF
-
- <!-- begin right column -->
-
- <td id="menudx" valign="top" align="left">
- <div id="menucontentr" style="$mklib->menucontentr">
- <div style="text-align:left;"> <a href="javascript:ColumnClose('menudx');MemoPos('MKmenudx', '1')"><img src="$mklib->images/f1.gif" border="0" alt="" /></a></div>
- <table cellpadding="0" cellspacing="2" border="0" style="width: {$mklib->columnwidth}px;">
- {$blocks}
- </table>
- </div>
- <div id="menuclosedr" style="$mklib->menuclosedr">
- <div style="text-align:left;"><a href="javascript:ColumnOpen('menudx');MemoPos('MKmenudx', '0')"><img src="$mklib->images/f2.gif" border="0" alt="" /></a></div>
- </div>
- </td>
-
- <!-- end right column -->
-
- EOF;
- }
-
- function close_body() {
- global $mklib;
- return <<<EOF
-
- <!-- begin close portal body -->
-
- </tr>
- </table>
- </td>
- </tr>
-
- <!-- end close portal body -->
-
- EOF;
- }
-
- function close_main() {
- global $mklib;
- return <<<EOF
-
- <!-- begin close main table -->
-
- </table>
-
- </td>
- </tr>
- </table>
- </div>
-
- <!-- end close main table -->
-
- EOF;
- }
-
-
- function view_footer($block) {
- global $mklib;
- return <<<EOF
-
- <!-- begin footer -->
- <!-- you can add your credits here -->
-
- <!-- end footer -->
- <p align="center">{$block}</p>
-
- </body>
- </html>
-
- <!-- end footer -->
-
- EOF;
- }
-
- function view_block($title, $content) {
- global $mklib;
- return <<<EOF
-
- <!-- begin block template -->
-
- <tr>
- <td valign="top">
- <table border="0" width="100%" cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td class="tdmenblock" width="1%"><img src="$mklib->images/m_sx.gif" border="0" class="tdmenblock" alt="" />
- </td>
- <td class="sottotitolo" width="99%" style="background-image: url('$mklib->images/m_sf.gif')" valign="middle" nowrap="nowrap">{$title}
- </td>
- <td class="tdmenblock" width="1%"><img src="$mklib->images/m_dx.gif" border="0" class="tdmenblock" alt="" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="tablemenu" width="100%">
- <table border="0" width="100%" cellpadding="1" cellspacing="1">
- {$content}
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td class="tdmenblock" width="1%" align="right" valign="top"><img src="$mklib->images/m_sx2.gif" class="tdmenblock" alt="" />
- </td>
- <td class="tdmenblock" width="99%" style="background-image: url('$mklib->images/m_sf2.gif')"><img src="$mklib->images/m_sf2.gif" border="0" class="tdmenblock" alt="" />
- </td>
- <td class="tdmenblock" width="1%"><img src="$mklib->images/m_dx2.gif" class="tdmenblock" alt="" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="tdspacer">
- </td>
- </tr>
-
- <!-- end block template -->
-
- EOF;
- }
-
- function row_link( $icon, $url, $text) {
- global $mklib;
- return <<<EOF
-
- <!-- begin link template -->
-
- <img src="$icon" border="0" style="vertical-align: middle;" alt="" /> <a class="uno" $url>$text</a>
-
- <!-- end link template -->
-
- EOF;
- }
-
- function view_quote($content, $author) {
- global $mklib;
- return <<<EOF
- <!-- begin mkportal quote -->
- <table class="mkquotetable" style="margin-top: 5px; margin-bottom: 5px; width: auto;" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td valign="bottom">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td valign="top" width="26"><img src="$mklib->images/quote/mkquote_balloon_l.gif" height="23" width="26" alt="" /></td>
- <td style="background-image: url($mklib->images/quote/mkquote_balloon_bg.gif); background-position: center; padding-bottom: 3px;" valign="middle" nowrap="nowrap">
- <span class="mkquoteball"><b>{$mklib->lang['editor_quote']}</b> $author</span>
- </td>
- <td valign="top"><img src="$mklib->images/quote/mkquote_balloon_r.gif" height="23" width="26" alt="" /></td>
- </tr>
- </table>
- </td>
-
- <td align="right" valign="bottom" width="100%">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td width="100%">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td style="background-image: url($mklib->images/quote/mkquote_top_bg.gif);" valign="middle" width="100%"></td>
- <td align="left" valign="top"><img src="$mklib->images/quote/mkquote_top_r.gif" height="23" width="13" alt="" /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td style="background-image: url($mklib->images/quote/mkquote_left_bg.gif);" width="13"></td>
- <td class="mkquotetext" bgcolor="#ffffff" valign="top" width="100%">
- <i>$content</i>
- </td>
- <td style="background-image: url($mklib->images/quote/mkquote_right_bg.gif);" width="13"></td>
- </tr>
- <tr>
- <td valign="bottom" height="9" width="13"><img src="$mklib->images/quote/mkquote_bot_l.gif" alt="" /></td>
- <td style="background-image: url($mklib->images/quote/mkquote_bot_bg.gif);" width="100%"></td>
- <td valign="bottom" height="9" width="13"><img src="$mklib->images/quote/mkquote_bot_r.gif" alt="" /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end mkportal quote -->
- EOF;
- }
-
- }
-
- $Skin = new tpl_main;
-
- ?>
by the way all of the CMS pages is PHP !
* www.MKPortal.it is a free CMS under GPL Licence !
* sorry for my bad english
plz help me i really need your poll because it's really handy and powerfull.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 15/04/2008 11:49:39
|
stormrider2008
Beginner
Joined: 15/04/2008 11:44:46
Messages: 5
Offline
|
Hello all,
I've read through the install instructions and the forum replies and followed all advice put advanced poll is still not showing up on my .php page.
I have:
- added this code right before my </HEAD> tag:
<?php // Important! You have to include it before your html code
include_once "/home/ratesupe/public_html/survey/db/poll_cookie.php";
?>
- and embedded this in my HTML code on the page:
<?php include_once "/home/ratesupe/public_html/survey/db/booth.php"; echo $php_poll->poll_process(4);?>
- I've also renamed the page to .php
- added the following in the .htaccess file: AddType application/x-httpd-php .php .htm
- my doctype is the following: <!DOCTYPE HTML PUBLIC "//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
can anyone help me out?
Kind regards
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 17/04/2008 12:07:19
|
stormrider2008
Beginner
Joined: 15/04/2008 11:44:46
Messages: 5
Offline
|
Hi there,
could anyone help me out? i've been tryiing to play with it over the past few days and still no luck!
Regards,
Kelvin
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 17/04/2008 12:54:34
|
Carbonize
Master
![[Avatar]](/forum/images/avatar/96871336492d73e733f55.jpg)
Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline
|
link?
|
Carbonize
I am not the maker of the Advanced Guestbook
get Lazarus |
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 17/04/2008 13:18:25
|
stormrider2008
Beginner
Joined: 15/04/2008 11:44:46
Messages: 5
Offline
|
Hi Carbonize,
well, its actually on a site that hasn't gone live yet - so can't provide a link.
But all the elements that might affect it are:
- added this code right before my </HEAD> tag:
<?php // Important! You have to include it before your html code
include_once "/home/ratesupe/public_html/survey/db/poll_cookie.php";
?>
- and embedded this in my HTML code on the page:
<?php include_once "/home/ratesupe/public_html/survey/db/booth.php"; echo $php_poll->poll_process(4);?>
- I've also renamed the page to .php
- added the following in the .htaccess file: AddType application/x-httpd-php .php .htm
- my doctype is the following: <!DOCTYPE HTML PUBLIC "//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
is there any other info you would need? Please let me know and I can send through.
Thanks for this.
|
|
![[Post New]](/forum/templates/html/images/icon_minipost_new.gif) 17/04/2008 16:50:23
|
Carbonize
Master
![[Avatar]](/forum/images/avatar/96871336492d73e733f55.jpg)
Joined: 12/06/2003 19:26:08
Messages: 4292
Location: Bristol, UK
Offline
|
The htaccess stuff is irrelevant if you are already using a .php file. So the booth stuff is before the doctype?
|
Carbonize
I am not the maker of the Advanced Guestbook
get Lazarus |
|
|