Page 4 of 15 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 149
  1. #31
    Join Date
    Jul 2010
    Posts
    243
    Plugin Contributions
    5

    Default Re: Poll Manager Support Thread

    excellent.. installed and works first timeon 1.3.9f

    great add-on!!

  2. #32
    Join Date
    Aug 2004
    Posts
    112
    Plugin Contributions
    0

    Default Re: Poll Manager Support Thread

    Hi, im using 1.38a

    Installed but I am unable to add any polls, keep getting error:

    "Please define at least two poll options!"

    All fielsd have been filled out, what am I doing wrong?

    Thanks for the mod.

  3. #33
    Join Date
    Jun 2009
    Posts
    207
    Plugin Contributions
    2

    Default Re: Poll Manager Support Thread

    A possile cause may be that another addon modified some of the standard functions of Zen-Cart. You have other addons installed? Can you check if either of them modified <admin>/includes/functions/html_output.php?

  4. #34
    Join Date
    Aug 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Poll Manager Support Thread

    Quote Originally Posted by SoftCorpse View Post
    Hi, im using 1.38a

    Installed but I am unable to add any polls, keep getting error:

    "Please define at least two poll options!"

    All fielsd have been filled out, what am I doing wrong?

    Thanks for the mod.
    I have also same problem I just installed on Zen Cart v1.3.9f/v1.3.9f

    There is only one colum to fill options under Option information. When i click add an option , Nothing is happening. No option colum is displaying to put second option info.

    Please help us !!!!!!!

    Thanks ...........

  5. #35
    Join Date
    Aug 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Poll Manager Support Thread

    Quote Originally Posted by boudewijn View Post
    A possile cause may be that another addon modified some of the standard functions of Zen-Cart. You have other addons installed? Can you check if either of them modified <admin>/includes/functions/html_output.php?
    i have installed another modules. But i dont think that i changed html_output.php file in admin area.

    here is my html_output file code.
    PHP Code:
    <?php
    /**
     * @package admin
     * @copyright Copyright 2003-2009 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: html_output.php 14139 2009-08-10 13:46:02Z wilt $
     */

    ////
    // The HTML href link wrapper function
      
    function zen_href_link($page ''$parameters ''$connection 'NONSSL'$add_session_id true) {
        global 
    $request_type$session_started$http_domain$https_domain;
        if (
    $page == '') {
          die(
    '</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>Function used:<br><br>zen_href_link(\'' $page '\', \'' $parameters '\', \'' $connection '\')</b>');
        }

        if (
    $connection == 'NONSSL') {
          
    $link HTTP_SERVER DIR_WS_ADMIN;
        } elseif (
    $connection == 'SSL') {
          if (
    ENABLE_SSL_ADMIN == 'true') {
            
    $link HTTPS_SERVER DIR_WS_HTTPS_ADMIN;
          } else {
            
    $link HTTP_SERVER DIR_WS_ADMIN;
          }
        } else {
          die(
    '</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine connection method on a link!<br><br>Known methods: NONSSL SSL<br><br>Function used:<br><br>zen_href_link(\'' $page '\', \'' $parameters '\', \'' $connection '\')</b>');
        }
        if (!
    strstr($page'.php')) $page .= '.php';
        if (
    $parameters == '') {
          
    $link $link $page;
          
    $separator '?';
        } else {
          
    $link $link $page '?' $parameters;
          
    $separator '&';
        }

        while ( (
    substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link substr($link0, -1);

    // Add the session ID when moving from different HTTP and HTTPS servers, or when SID is defined
        
    if ( ($add_session_id == true) && ($session_started == true) ) {
          if (
    defined('SID') && zen_not_null(SID)) {
            
    $sid SID;
          } elseif ( ( (
    $request_type == 'NONSSL') && ($connection == 'SSL') && (ENABLE_SSL_ADMIN == 'true') ) || ( ($request_type == 'SSL') && ($connection == 'NONSSL') ) ) {
    //die($connection);
            
    if ($http_domain != $https_domain) {
              
    $sid zen_session_name() . '=' zen_session_id();
            }
          }
        }

        if (isset(
    $sid)) {
          
    $link .= $separator $sid;
        }

        return 
    $link;
      }

      function 
    zen_catalog_href_link($page ''$parameters ''$connection 'NONSSL') {
        if (
    $connection == 'NONSSL') {
          
    $link HTTP_CATALOG_SERVER DIR_WS_CATALOG;
        } elseif (
    $connection == 'SSL') {
          if (
    ENABLE_SSL_CATALOG == 'true') {
            
    $link HTTPS_CATALOG_SERVER DIR_WS_HTTPS_CATALOG;
          } else {
            
    $link HTTP_CATALOG_SERVER DIR_WS_CATALOG;
          }
        } else {
          die(
    '</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine connection method on a link!<br><br>Known methods: NONSSL SSL<br><br>Function used:<br><br>zen_href_link(\'' $page '\', \'' $parameters '\', \'' $connection '\')</b>');
        }
        if (
    $parameters == '') {
          
    $link .= 'index.php?main_page='$page;
        } else {
          
    $link .= 'index.php?main_page='$page "&" zen_output_string($parameters);
        }

        while ( (
    substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link substr($link0, -1);

        return 
    $link;
      }

    ////
    // The HTML image wrapper function
      
    function zen_image($src$alt ''$width ''$height ''$params '') {
        
    $image '<img src="' $src '" border="0" alt="' $alt '"';
        if (
    $alt) {
          
    $image .= ' title=" ' $alt ' "';
        }
        if (
    $width) {
          
    $image .= ' width="' $width '"';
        }
        if (
    $height) {
          
    $image .= ' height="' $height '"';
        }
        if (
    $params) {
          
    $image .= ' ' $params;
        }
        
    $image .= '>';

        return 
    $image;
      }

    ////
    // The HTML form submit button wrapper function
    // Outputs a button in the selected language
      
    function zen_image_submit($image$alt ''$parameters '') {
        global 
    $language;

        
    $image_submit '<input type="image" src="' zen_output_string(DIR_WS_LANGUAGES $_SESSION['language'] . '/images/buttons/' $image) . '" border="0" alt="' zen_output_string($alt) . '"';

        if (
    zen_not_null($alt)) $image_submit .= ' title=" ' zen_output_string($alt) . ' "';

        if (
    zen_not_null($parameters)) $image_submit .= ' ' $parameters;

        
    $image_submit .= '>';

        return 
    $image_submit;
      }

    ////
    // Draw a 1 pixel black line
      
    function zen_black_line() {
        return 
    zen_image(DIR_WS_IMAGES 'pixel_black.gif''''100%''1');
      }

    ////
    // Output a separator either through whitespace, or with an image
      
    function zen_draw_separator($image 'pixel_black.gif'$width '100%'$height '1') {
        return 
    zen_image(DIR_WS_IMAGES $image''$width$height);
      }

    ////
    // Output a function button in the selected language
      
    function zen_image_button($image$alt ''$params '') {
        global 
    $language;

        return 
    zen_image(DIR_WS_ADMIN DIR_WS_LANGUAGES $_SESSION['language'] . '/images/buttons/' $image$alt''''$params);
      }

    ////
    // javascript to dynamically update the states/provinces list when the country is changed
    // TABLES: zones
      
    function zen_js_zone_list($country$form$field) {
        global 
    $db;
        
    $countries $db->Execute("select distinct zone_country_id
                                   from " 
    TABLE_ZONES "
                                   order by zone_country_id"
    );

        
    $num_country 1;
        
    $output_string '';
        while (!
    $countries->EOF) {
          if (
    $num_country == 1) {
            
    $output_string .= '  if (' $country ' == "' $countries->fields['zone_country_id'] . '") {' "\n";
          } else {
            
    $output_string .= '  } else if (' $country ' == "' $countries->fields['zone_country_id'] . '") {' "\n";
          }

          
    $states $db->Execute("select zone_name, zone_id
                                  from " 
    TABLE_ZONES "
                                  where zone_country_id = '" 
    $countries->fields['zone_country_id'] . "'
                                  order by zone_name"
    );


          
    $num_state 1;
          while (!
    $states->EOF) {
            if (
    $num_state == '1'$output_string .= '    ' $form '.' $field '.options[0] = new Option("' PLEASE_SELECT '", "");' "\n";
            
    $output_string .= '    ' $form '.' $field '.options[' $num_state '] = new Option("' $states->fields['zone_name'] . '", "' $states->fields['zone_id'] . '");' "\n";
            
    $num_state++;
            
    $states->MoveNext();
          }
          
    $num_country++;
          
    $countries->MoveNext();
        }
        
    $output_string .= '  } else {' "\n" .
                          
    '    ' $form '.' $field '.options[0] = new Option("' TYPE_BELOW '", "");' "\n" .
                          
    '  }' "\n";

        return 
    $output_string;
      }

    ////
    // Output a form
      
    function zen_draw_form($name$action$parameters ''$method 'post'$params ''$usessl 'false') {
        
    $form '<form name="' zen_output_string($name) . '" action="';
        if (
    zen_not_null($parameters)) {
          if (
    $usessl) {
            
    $form .= zen_href_link($action$parameters'NONSSL');
          } else {
            
    $form .= zen_href_link($action$parameters'NONSSL');
          }
        } else {
          if (
    $usessl) {
            
    $form .= zen_href_link($action'''NONSSL');
          } else {
            
    $form .= zen_href_link($action'''NONSSL');
          }
        }
        
    $form .= '" method="' zen_output_string($method) . '"';
        if (
    zen_not_null($params)) {
          
    $form .= ' ' $params;
        }
        
    $form .= '>';
        
    $form .= '<input type="hidden" name="securityToken" value="' $_SESSION['securityToken'] . '">';
        return 
    $form;
      }

    ////
    // Output a form input field
      
    function zen_draw_input_field($name$value '~*~*#'$parameters ''$required false$type 'text'$reinsert_value true) {
        
    $field '<input type="' zen_output_string($type) . '" name="' zen_output_string($name) . '"';

        if ( 
    $value == '~*~*#' && (isset($GLOBALS[$name]) && is_string($GLOBALS[$name])) && ($reinsert_value == true) ) {
          
    $field .= ' value="' zen_output_string(stripslashes($GLOBALS[$name])) . '"';
        } elseif (
    $value != '~*~*#' && zen_not_null($value)) {
          
    $field .= ' value="' zen_output_string($value) . '"';
        }

        if (
    zen_not_null($parameters)) $field .= ' ' $parameters;

        
    $field .= ' />';

        return 
    $field;
      }

    ////
    // Output a form password field
      
    function zen_draw_password_field($name$value ''$required false) {
        
    $field zen_draw_input_field($name$value'maxlength="40"'$required'password'false);

        return 
    $field;
      }

    ////
    // Output a form filefield
      
    function zen_draw_file_field($name$required false) {
        
    $field zen_draw_input_field($name''' size="50" '$required'file');

        return 
    $field;
      }

    ////
    // Output a selection field - alias function for zen_draw_checkbox_field() and zen_draw_radio_field()
      
    function zen_draw_selection_field($name$type$value ''$checked false$compare ''$parameters '') {
        
    $selection '<input type="' zen_output_string($type) . '" name="' zen_output_string($name) . '"';

        if (
    zen_not_null($value)) $selection .= ' value="' zen_output_string($value) . '"';

        if ( (
    $checked == true) || (isset($GLOBALS[$name]) && is_string($GLOBALS[$name]) && ($GLOBALS[$name] == 'on')) || (isset($value) && isset($GLOBALS[$name]) && is_string($GLOBALS[$name]) && (stripslashes($GLOBALS[$name]) == $value)) || (zen_not_null($value) && zen_not_null($compare) && ($value == $compare)) ) {
          
    $selection .= ' checked="checked"';
        }

        if (
    zen_not_null($parameters)) $selection .= ' ' $parameters;

        
    $selection .= ' />';

        return 
    $selection;
      }

    ////
    // Output a form checkbox field
      
    function zen_draw_checkbox_field($name$value ''$checked false$compare ''$parameters '') {
        return 
    zen_draw_selection_field($name'checkbox'$value$checked$compare$parameters);
      }

    ////
    // Output a form radio field
      
    function zen_draw_radio_field($name$value ''$checked false$compare ''$parameters '') {
        return 
    zen_draw_selection_field($name'radio'$value$checked$compare$parameters);
      }

    ////
    // Output a form textarea field
      
    function zen_draw_textarea_field($name$wrap$width$height$text '~*~*#'$parameters ''$reinsert_value true) {
        
    $field '<textarea name="' zen_output_string($name) . '" wrap="' zen_output_string($wrap) . '" cols="' zen_output_string($width) . '" rows="' zen_output_string($height) . '"';

        if (
    zen_not_null($parameters)) $field .= ' ' $parameters;

        
    $field .= '>';

        if (
    $text == '~*~*#' && (isset($GLOBALS[$name]) && is_string($GLOBALS[$name])) && ($reinsert_value == true) ) {
          
    $field .= stripslashes($GLOBALS[$name]);
        } elseif (
    $text != '~*~*#' && zen_not_null($text)) {
          
    $field .= $text;
        }

        
    $field .= '</textarea>';

        return 
    $field;
      }

    ////
    // Output a form hidden field
      
    function zen_draw_hidden_field($name$value ''$parameters '') {
        
    $field '<input type="hidden" name="' zen_output_string($name) . '"';

        if (
    zen_not_null($value)) {
          
    $field .= ' value="' zen_output_string($value) . '"';
        } elseif (isset(
    $GLOBALS[$name]) && is_string($GLOBALS[$name])) {
          
    $field .= ' value="' zen_output_string(stripslashes($GLOBALS[$name])) . '"';
        }

        if (
    zen_not_null($parameters)) $field .= ' ' $parameters;

        
    $field .= ' />';

        return 
    $field;
      }

    ////
    // Output a form pull down menu
      
    function zen_draw_pull_down_menu($name$values$default ''$parameters ''$required false) {
    //    $field = '<select name="' . zen_output_string($name) . '"';
        
    $field '<select rel="dropdown" name="' zen_output_string($name) . '"';

        if (
    zen_not_null($parameters)) $field .= ' ' $parameters;

        
    $field .= '>' "\n";

        if (empty(
    $default) && isset($GLOBALS[$name]) && is_string($GLOBALS[$name]) ) $default stripslashes($GLOBALS[$name]);

        for (
    $i=0$n=sizeof($values); $i<$n$i++) {
          
    $field .= '<option value="' zen_output_string($values[$i]['id']) . '"';
          if (
    $default == $values[$i]['id']) {
            
    $field .= ' selected="selected"';
          }

          
    $field .= '>' zen_output_string($values[$i]['text'], array('"' => '&quot;''\'' => ''', '<' => '&lt;', '>' => '&gt;')) . '</option>' . "\n";
        }
        $field .= '
    </select>' . "\n";

        if ($required == true) $field .= TEXT_FIELD_REQUIRED;

        return $field;
      }
    ////
    // Hide form elements
      function zen_hide_session_id() {
        global $session_started;

        if ( ($session_started == true) && defined('
    SID') && zen_not_null(SID) ) {
          return zen_draw_hidden_field(zen_session_name(), zen_session_id());
        }
      }

  6. #36
    Join Date
    Jun 2009
    Posts
    207
    Plugin Contributions
    2

    Default Re: Poll Manager Support Thread

    Hi,

    The file is not the same as the standard file of version 1.3.9f.
    I noted 3 differences, of which the last two should cause PHP errors. If I use the file you posted, the admin interface won't startup.

    At the bottom: if ( ($session_started == true) && defined('SID) is missing a quote after SID
    and some lines before that: $field .= '>' . zen_output_string($values[$i]['text'], array('"' => '&quot;', '\'' => ''',
    should read: $field .= '>' . zen_output_string($values[$i]['text'], array('"' => '&quot;', '\'' => '&#039;',
    Last edited by boudewijn; 5 Nov 2010 at 07:01 AM.

  7. #37
    Join Date
    Apr 2009
    Posts
    46
    Plugin Contributions
    0

    Default Re: Poll Manager Support Thread

    How to change black font to white?

  8. #38
    Join Date
    Jun 2009
    Posts
    207
    Plugin Contributions
    2

    Default Re: Poll Manager Support Thread

    See the instructions in the help file, topic 'LAYOUT ISSUES'.

    The definition in the file mentioned can be changed to:

    define('PM_POLL_OPTIONS_LAYOUT', 'style="width:99%; color:#ffffff;" class="clearBoth"');

  9. #39
    Join Date
    Aug 2004
    Posts
    112
    Plugin Contributions
    0

    Default Re: Poll Manager Support Thread

    My html_output is attached. I have no idea if it has been modified or not, site has been running for ages and I have just recently required a poll.

    Thanks for the help!


    (** attachment removed by moderator **)

  10. #40
    Join Date
    Jun 2009
    Posts
    207
    Plugin Contributions
    2

    Default Re: Poll Manager Support Thread

    Quote Originally Posted by SoftCorpse View Post
    My html_output is attached. I have no idea if it has been modified or not, site has been running for ages and I have just recently required a poll.

    Thanks for the help!
    From the file you sent I can see you run ZC 1.3.8.a, and the file IS standard. So, I installed a clean copy of this version and only installed PM with it. Everything functions as it should.

    So, either some other mod is messing up your PM, or I didn't do the right tests. In which case I need more info from you.
    Can you point out exactely what steps you do, what you enter and what the result is?

    Thanks,
    Boudewijn

 

 
Page 4 of 15 FirstFirst ... 2345614 ... LastLast

Similar Threads

  1. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  2. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR