If you are not registered or logged in, you may still use these forums but with limited features. Show recent topics
  [Search] Search   [Hottest Topics] Hottest Topics   [Members]  Member Listing   [FAQ]  FAQ 
[Register] Register / 
[Login] Login 
Advanced Poll not showing up  XML
Forum Index » Support Forum
Author Message
Anonymous



I'm using Emax which provides customers with their own web designer. I installed AP with Fantastico and it works fine.

I put

  1. <?php  
  2. include_once "poll/booth.php";  
  3. echo $php_poll->poll_process(x);        // x = Poll ID  
  4. ?>  


Before the <html> tag and I put

  1. <?php  
  2. include_once "poll/booth.php";  
  3. echo $php_poll->poll_process("newest");  
  4. ?>  


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.
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
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%
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:
  1. <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?
Anonymous



So where would this go?

  1. <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?
Anonymous



I found the option to change it from percentages to votes in the option page.
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.
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"
Anonymous



Thanks.
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:
  1. <?  
  2. /* 
  3. +-------------------------------------------------------------------------- 
  4. |   MkPortal 
  5. |   ======================================== 
  6. |   by Meo aka Luponero <Amedeo de longis> 
  7. | 
  8. |   (c) 2004 mkportal.it 
  9. |   http://www.mkportal.it 
  10. |   Email: luponero@mclink.it 
  11. | 
  12. +--------------------------------------------------------------------------- 
  13. | 
  14. |   > MKPortal 
  15. |   > Written By Amedeo de longis 
  16. |   > Date started: 9.2.2004 
  17. | 
  18. +-------------------------------------------------------------------------- 
  19. */  
  20.   
  21. define ( 'IN_MKP', 1 );  
  22.   
  23. $MK_PATH = "./";  
  24. require $MK_PATH."mkportal/conf_mk.php";  
  25.   
  26. switch($MK_BOARD) {  
  27.     case 'IPB':  
  28.         $driverf = "IPB/ipb_driverf.php";  
  29.         $board_functions = "IPB/ipb_board_functions.php";  
  30.     break;  
  31.     case 'PHPBB':  
  32.         $driverf = "PHPBB/php_driverf.php";  
  33.         $board_functions = "PHPBB/php_board_functions.php";  
  34.     break;  
  35.     case 'VB':  
  36.         $driverf = "VB/vb_driverf.php";  
  37.         $board_functions = "VB/vb_board_functions.php";  
  38.     break;  
  39.     case 'OXY':  
  40.         $driverf = "oxy_driverf.php";  
  41.         $board_functions = "oxy_board_functions.php";  
  42.     break;  
  43.     case 'IPB13':  
  44.             $driverf = "IPB13/ipb13_driverf.php";  
  45.         $board_functions = "IPB13/ipb13_board_functions.php";  
  46.     break;  
  47.     default:  
  48.         $driverf = "SMF/smf_driverf.php";  
  49.         $board_functions = "SMF/smf_board_functions.php";  
  50.     break;  
  51. }  
  52.   
  53. require $MK_PATH."mkportal/include/$driverf";  
  54. require $MK_PATH."mkportal/include/functions.php";  
  55. require $MK_PATH."mkportal/include/$board_functions";  
  56. require "$mklib->template/tpl_main.php";  
  57.   
  58. $mkportals->input = $mklib->mkp_input();  
  59.   
  60. if($MK_OFFLINE && !$mkportals->member['g_access_cp'] && !$mklib->member['g_access_cpa']) {  
  61.         $message = $mklib->lang['offline'];  
  62.         $mklib->off_line_page($message);  
  63.         exit;  
  64. }  
  65.   
  66. $switch = array('blog'         =>   "blog",  
  67.                 'chat'         =>   "chat",  
  68.                 'contents'     =>   "contents",  
  69.                 'downloads'    =>   "downloads",  
  70.                 'gallery'      =>   "gallery",  
  71.                 'news'         =>   "news",  
  72.                 'quote'        =>   "quote",  
  73.                 'reviews'      =>   "reviews",  
  74.                 'search'       =>   "search",  
  75.                 'topsite'      =>   "topsite",  
  76.                 'urlobox'      =>   "urlobox",  
  77.                 );  
  78.   
  79.   
  80. if (!isset($switch[$mkportals->input['ind']])) {  
  81.     $mkportals->input['ind'] = "contents";  
  82. }  
  83. if (!$mklib->disablegzip && $mkportals->input['ind'] != "downloads") {  
  84.     ob_end_clean();  
  85.     @ob_start('ob_gzhandler');  
  86. }  
  87. require "./mkportal/modules/{$switch[$mkportals->input['ind']]}/index.php";  
  88.   
  89.   
  90. ?>  


tpl_main.php (this is a page that contain a pages codes and i use the FILE codes to show the pages):
  1. <?  
  2. /* 
  3. +-------------------------------------------------------------------------- 
  4. |   MkPortal "default" Portal Template 
  5. |   ======================================== 
  6. |   by Meo aka Luponero <Amedeo de longis> 
  7. |      visiblesoul <Don K. Colburn>    
  8. |   (c) 2004-2005 mkportal.it 
  9. |   http://www.mkportal.it 
  10. |   Email: luponero@mclink.it 
  11. | 
  12. +--------------------------------------------------------------------------- 
  13. | 
  14. |   > MKPortal 
  15. |   > Written By Amedeo de longis 
  16. |   > Date started: 9.2.2004 
  17. | 
  18. +-------------------------------------------------------------------------- 
  19. */  
  20.   
  21. class tpl_main {  
  22.   
  23. function view_header($title, $css, $js, $pmk_js, $board_header) {  
  24. global $mklib, $mklib_board;  
  25. //$css = $mklib_board->import_css();  
  26. return <<<EOF  
  27.   
  28. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
  29.         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  30. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">  
  31.   
  32. <!-- begin document head -->  
  33.   
  34. <head>  
  35.   <meta http-equiv="content-type" content="text/html; charset={$mklib->charset}" />  
  36.   <meta name="generator" content="MKPortal" />  
  37.   <meta http-equiv="Pragma" content="no-cache" />  
  38.   <meta content="no-cache" http-equiv="no-cache" />  
  39.   <meta http-equiv="Cache-Control" content="no-cache" />  
  40.   {$title}  
  41.   {$css}  
  42.   {$board_header}  
  43.   <script type="text/javascript" src="{$js}"></script>  
  44.    {$pmk_js}  
  45. </head>  
  46.   
  47. <body onload="javascript:GetPos()">  
  48.   
  49. <!-- end document head -->  
  50.   
  51. EOF;  
  52. }  
  53.   
  54. function open_main($mainwidth) {  
  55. global $mklib;  
  56. return <<<EOF  
  57.   
  58. <!-- begin open main table -->  
  59.   
  60. <div id="mkwrapper" style="width: {$mainwidth};">  
  61. <table class="tabmain" width="100%" align="center" border="0" cellspacing="0" cellpadding="0">  
  62.   
  63.   <tr>  
  64.     <td width="100%" align="center">  
  65.   
  66.       <table border="0" width="100%" cellpadding="0" cellspacing="0">  
  67.   
  68. <!-- end open main table -->  
  69.   
  70. EOF;  
  71. }  
  72.   
  73. function view_logo() {  
  74. global $mklib;  
  75. return <<<EOF  
  76.   
  77. <!-- begin logostrip -->  
  78.     
  79.     <tr>  
  80.       <td id="mklogostrip" style="background-image: url('$mklib->images/sf_logo.jpg')" width="100%">  
  81.           <a href="$mklib->siteurl/index.php"><img src="$mklib->images/logo.gif" border="0" alt="" /></a>  
  82.           </td>  
  83.     </tr>  
  84.       
  85. <!-- end logostrip -->  
  86.   
  87. EOF;  
  88. }  
  89.   
  90. function view_linkbar($row_link) {  
  91. global $mklib, $mkportals;  
  92. return <<<EOF  
  93.   
  94. <!-- begin linkbar -->  
  95.   
  96.     <tr>  
  97.       <td>  
  98.         <table width="100%" align="center" cellspacing="0" cellpadding="2" border="0">  
  99.           <tr>  
  100.         <td class="navigatore" style="padding: 4px;">         
  101.           $row_link&nbsp;           
  102.         </td>  
  103.           </tr>  
  104.         </table>  
  105.       </td>  
  106.     </tr>  
  107.   
  108. <!-- end linkbar -->  
  109.   
  110. EOF;  
  111. }  
  112.   
  113. function view_urlo($urlo1, $urlo2) {  
  114. global $mklib;  
  115. return <<<EOF  
  116.   
  117. <!-- begin shoutbox -->  
  118.   
  119.     <tr align="left">  
  120.       <td>        
  121.         <table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">  
  122.           <tr>  
  123.         <td class="urlo" style="background-image: url('$mklib->images/m_sf.gif')" width="100%" valign="bottom" nowrap="nowrap">  
  124.         {$mklib->lang['urlolast']} - $urlo1  
  125.         </td>       
  126.           </tr>  
  127.           <tr>  
  128.         <td class="urlo2" colspan="2">$urlo2  
  129.         </td>  
  130.           </tr>  
  131.         </table>           
  132.       </td>  
  133.     </tr>  
  134.   
  135. <!-- end shoutbox -->  
  136.       
  137. EOF;  
  138. }  
  139.   
  140. function view_separator_h() {  
  141. global $mklib;  
  142. return <<<EOF  
  143.   
  144. <!-- begin horizontal spacer -->  
  145.   
  146. <!-- separatore orizzontale   
  147.     <tr align="center">  
  148.       <td class="trattini"><img src="$mklib->images/punto_or.gif" width="1" height="1" alt="" />  
  149.       </td>  
  150.     </tr> -->  
  151.   
  152. <!-- end horizontal spacer -->  
  153.   
  154. EOF;  
  155. }  
  156.   
  157. function open_body() {  
  158. global $mklib;  
  159. return <<<EOF  
  160.   
  161. <!-- begin open portal body -->  
  162.   
  163.     <tr align="center">  
  164.       <td width="100%">  
  165.         <table border="0" width="100%" cellspacing="0" cellpadding="0">  
  166.           <tr>  
  167.   
  168. <!-- end open portal body -->  
  169.             
  170. EOF;  
  171. }  
  172.   
  173. function view_column_left($blocks) {  
  174. global $mklib;  
  175.   
  176. return <<<EOF  
  177.   
  178. <!-- begin left column -->  
  179.   
  180.         <td id="menusx" valign="top" align="left">  
  181.         <div id="menucontents" style="$mklib->menucontents">  
  182.         <div style="text-align:right;"><a href="javascript:ColumnClose('menusx');MemoPos('MKmenusx', '1');"><img src="$mklib->images/f2.gif" border="0" alt="" /></a>&nbsp;</div>  
  183.           <table cellpadding="0" cellspacing="2" border="0" style="width: {$mklib->columnwidth}px;">  
  184.           {$blocks}  
  185.           </table>  
  186.         </div>  
  187.         <div id="menucloseds" style="$mklib->menucloseds">  
  188.         <div style="text-align:right;"><a href="javascript:ColumnOpen('menusx');MemoPos('MKmenusx', '0');"><img src="$mklib->images/f1.gif" border="0"  alt="" /></a></div>  
  189.         </div>  
  190.         </td>  
  191.   
  192. <!-- end left column -->  
  193.   
  194. EOF;  
  195. }  
  196.   
  197.   
  198. function view_separator_v() {  
  199. global $mklib;  
  200. return <<<EOF  
  201.   
  202. <!-- begin column spacer -->  
  203.   
  204.         <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="" />  
  205.         </td>  
  206.   
  207. <!-- end column spacer -->  
  208.   
  209. EOF;  
  210. }  
  211.   
  212. function view_column_center($blocks) {  
  213. global $mklib;  
  214. return <<<EOF  
  215.   
  216. <!-- begin center column -->  
  217.   
  218.         <td valign="top" align="left" width="100%">  
  219.           <table cellpadding="0" cellspacing="3" border="0" width="100%">  
  220.           {$blocks}  
  221.           </table>  
  222.         </td>  
  223.   
  224. <!-- end center column -->  
  225.           
  226. EOF;  
  227. }  
  228.   
  229. function view_column_right($blocks) {  
  230. global $mklib;  
  231. return <<<EOF  
  232.   
  233. <!-- begin right column -->  
  234.   
  235.         <td id="menudx" valign="top" align="left">  
  236.         <div id="menucontentr" style="$mklib->menucontentr">  
  237.         <div style="text-align:left;">&nbsp;<a href="javascript:ColumnClose('menudx');MemoPos('MKmenudx', '1')"><img src="$mklib->images/f1.gif" border="0" alt="" /></a></div>  
  238.           <table cellpadding="0" cellspacing="2" border="0" style="width: {$mklib->columnwidth}px;">  
  239.           {$blocks}  
  240.           </table>  
  241.         </div>  
  242.         <div id="menuclosedr" style="$mklib->menuclosedr">  
  243.         <div style="text-align:left;"><a href="javascript:ColumnOpen('menudx');MemoPos('MKmenudx', '0')"><img src="$mklib->images/f2.gif" border="0" alt="" /></a></div>  
  244.         </div>  
  245.         </td>  
  246.           
  247. <!-- end right column -->  
  248.   
  249. EOF;  
  250. }  
  251.   
  252. function close_body() {  
  253. global $mklib;  
  254. return <<<EOF  
  255.   
  256. <!-- begin close portal body -->  
  257.   
  258.           </tr>  
  259.         </table>  
  260.       </td>  
  261.     </tr>  
  262.       
  263. <!-- end close portal body -->  
  264.   
  265. EOF;  
  266. }  
  267.   
  268. function close_main() {  
  269. global $mklib;  
  270. return <<<EOF  
  271.   
  272. <!-- begin close main table -->  
  273.   
  274.       </table>  
  275.   
  276.     </td>  
  277.   </tr>  
  278. </table>  
  279. </div>  
  280.   
  281. <!-- end close main table -->  
  282.   
  283. EOF;  
  284. }  
  285.   
  286.   
  287. function view_footer($block) {  
  288. global $mklib;  
  289. return <<<EOF  
  290.   
  291. <!-- begin footer -->  
  292. <!-- you can add your credits here  -->  
  293.   
  294. <!-- end footer -->  
  295.   <p align="center">{$block}</p>  
  296.   
  297. </body>  
  298. </html>  
  299.   
  300. <!-- end footer -->  
  301.   
  302. EOF;  
  303. }  
  304.   
  305. function view_block($title, $content) {  
  306. global $mklib;  
  307. return <<<EOF  
  308.   
  309. <!-- begin block template -->  
  310.   
  311.             <tr>  
  312.               <td valign="top">  
  313.             <table border="0" width="100%" cellpadding="0" cellspacing="0">  
  314.               <tr>  
  315.                 <td>  
  316.                   <table border="0" cellpadding="0" cellspacing="0" width="100%">  
  317.                 <tr>  
  318.                   <td class="tdmenblock" width="1%"><img src="$mklib->images/m_sx.gif" border="0" class="tdmenblock" alt="" />  
  319.                   </td>  
  320.                   <td class="sottotitolo" width="99%" style="background-image: url('$mklib->images/m_sf.gif')" valign="middle" nowrap="nowrap">{$title}  
  321.                   </td>  
  322.                   <td class="tdmenblock" width="1%"><img src="$mklib->images/m_dx.gif" border="0" class="tdmenblock" alt="" />  
  323.                   </td>  
  324.                 </tr>  
  325.                   </table>  
  326.                 </td>  
  327.               </tr>  
  328.               <tr>  
  329.                 <td class="tablemenu" width="100%">  
  330.                   <table border="0" width="100%" cellpadding="1" cellspacing="1">  
  331.                   {$content}  
  332.                   </table>  
  333.                 </td>  
  334.               </tr>  
  335.               <tr>  
  336.                 <td>  
  337.                   <table border="0" cellpadding="0" cellspacing="0" width="100%">  
  338.                 <tr>  
  339.                   <td class="tdmenblock" width="1%" align="right" valign="top"><img src="$mklib->images/m_sx2.gif" class="tdmenblock" alt="" />  
  340.                   </td>  
  341.                   <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="" />  
  342.                   </td>  
  343.                   <td class="tdmenblock" width="1%"><img src="$mklib->images/m_dx2.gif" class="tdmenblock" alt="" />  
  344.                   </td>  
  345.                 </tr>  
  346.                   </table>  
  347.                 </td>  
  348.               </tr>  
  349.             </table>  
  350.               </td>  
  351.             </tr>  
  352.             <tr>  
  353.               <td class="tdspacer">&nbsp;  
  354.               </td>  
  355.             </tr>  
  356.   
  357. <!-- end block template -->             
  358.   
  359. EOF;  
  360. }  
  361.   
  362. function row_link( $icon, $url, $text) {  
  363. global $mklib;  
  364. return <<<EOF  
  365.   
  366. <!-- begin link template -->  
  367.   
  368.         &nbsp;<img src="$icon" border="0" style="vertical-align: middle;" alt="" />&nbsp;<a class="uno" $url>$text</a>  
  369.   
  370. <!-- end link template -->  
  371.   
  372. EOF;  
  373. }  
  374.   
  375. function view_quote($content, $author) {  
  376. global $mklib;  
  377. return <<<EOF  
  378. <!-- begin mkportal quote -->  
  379. <table class="mkquotetable" style="margin-top: 5px; margin-bottom: 5px; width: auto;" border="0" cellpadding="0" cellspacing="0">  
  380.   <tr>  
  381.     <td>  
  382.       <table border="0" cellpadding="0" cellspacing="0" width="100%">   
  383.     <tr>  
  384.       <td valign="bottom">  
  385.         <table border="0" cellpadding="0" cellspacing="0">            
  386.           <tr>  
  387.         <td valign="top" width="26"><img src="$mklib->images/quote/mkquote_balloon_l.gif" height="23" width="26" alt="" /></td>  
  388.         <td style="background-image: url($mklib->images/quote/mkquote_balloon_bg.gif); background-position: center; padding-bottom: 3px;" valign="middle" nowrap="nowrap">  
  389.           <span class="mkquoteball"><b>{$mklib->lang['editor_quote']}</b> $author</span>  
  390.         </td>  
  391.         <td valign="top"><img src="$mklib->images/quote/mkquote_balloon_r.gif" height="23" width="26" alt="" /></td>  
  392.           </tr>           
  393.         </table>  
  394.       </td>       
  395.           
  396.       <td align="right" valign="bottom" width="100%">  
  397.         <table border="0" cellpadding="0" cellspacing="0" width="100%">           
  398.           <tr>  
  399.         <td width="100%">  
  400.           <table border="0" cellpadding="0" cellspacing="0" width="100%">           
  401.             <tr>  
  402.               <td style="background-image: url($mklib->images/quote/mkquote_top_bg.gif);" valign="middle" width="100%"></td>  
  403.               <td align="left" valign="top"><img src="$mklib->images/quote/mkquote_top_r.gif" height="23" width="13" alt="" /></td>  
  404.             </tr>           
  405.           </table>  
  406.         </td>  
  407.           </tr>           
  408.         </table>  
  409.       </td>  
  410.     </tr>   
  411.       </table>  
  412.   
  413.       <table border="0" cellpadding="0" cellspacing="0" width="100%">   
  414.     <tr>  
  415.       <td style="background-image: url($mklib->images/quote/mkquote_left_bg.gif);" width="13"></td>  
  416.       <td class="mkquotetext" bgcolor="#ffffff" valign="top" width="100%">  
  417.         <i>$content</i>  
  418.       </td>  
  419.       <td style="background-image: url($mklib->images/quote/mkquote_right_bg.gif);" width="13"></td>  
  420.     </tr>  
  421.     <tr>  
  422.       <td valign="bottom" height="9" width="13"><img src="$mklib->images/quote/mkquote_bot_l.gif" alt="" /></td>  
  423.       <td style="background-image: url($mklib->images/quote/mkquote_bot_bg.gif);" width="100%"></td>  
  424.       <td valign="bottom" height="9" width="13"><img src="$mklib->images/quote/mkquote_bot_r.gif" alt="" /></td>  
  425.     </tr>   
  426.       </table>  
  427.     </td>  
  428.   </tr>    
  429. </table>  
  430. <!-- end mkportal quote -->  
  431. EOF;  
  432. }  
  433.   
  434. }  
  435.   
  436. $Skin = new tpl_main;  
  437.   
  438. ?>  


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.
[Email]
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
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
Carbonize
Master
[Avatar]

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
[Email] [WWW] [Yahoo!] aim icon [MSN] [ICQ]
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.
Carbonize
Master
[Avatar]

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
[Email] [WWW] [Yahoo!] aim icon [MSN] [ICQ]
 
Forum Index » Support Forum
Go to:   
Based on the open source JForum