Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter gorod

    (@gorod)

    Well, that solution involves a complicated code.

    I have widget, built into my theme, that will display a list of posts.
    The widget allows an input of a single line, such as :

    meta_key=ratings_average&orderby=meta_value_num&order=desc&post_type=listing_type&posts_per_page=10&ratings_users>5

    Unfortunately, rating_users>5 doesn’t work. Other than that it displays all the top rated posts.

    Thread Starter gorod

    (@gorod)

    Found the problem. Plugin didn’t create table for wp-polls.

    Have to run query manually in phpmyadmin:


    — Table structure for table wp_pollsa

    CREATE TABLE IF NOT EXISTS wp_pollsa (
    polla_aid int(10) NOT NULL auto_increment,
    polla_qid int(10) NOT NULL default ‘0’,
    polla_answers varchar(200) character set latin1 NOT NULL default ”,
    polla_votes int(10) NOT NULL default ‘0’,
    PRIMARY KEY (polla_aid)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    — ——————————————————–


    — Table structure for table wp_pollsip

    CREATE TABLE IF NOT EXISTS wp_pollsip (
    pollip_id int(10) NOT NULL auto_increment,
    pollip_qid varchar(10) character set latin1 NOT NULL default ”,
    pollip_aid varchar(10) character set latin1 NOT NULL default ”,
    pollip_ip varchar(100) character set latin1 NOT NULL default ”,
    pollip_host varchar(200) character set latin1 NOT NULL default ”,
    pollip_timestamp varchar(20) character set latin1 NOT NULL default ‘0000-00-00 00:00:00’,
    pollip_user tinytext character set latin1 NOT NULL,
    pollip_userid int(10) NOT NULL default ‘0’,
    PRIMARY KEY (pollip_id)
    ) ENGINE=MyISAM DEFAULT CHARSET=ucs2;

    — ——————————————————–


    — Table structure for table wp_pollsq

    CREATE TABLE IF NOT EXISTS wp_pollsq (
    pollq_id int(10) NOT NULL auto_increment,
    pollq_question varchar(200) character set latin1 NOT NULL default ”,
    pollq_timestamp varchar(20) character set latin1 NOT NULL default ”,
    pollq_totalvotes int(10) NOT NULL default ‘0’,
    pollq_active tinyint(1) NOT NULL default ‘1’,
    pollq_expiry varchar(20) character set latin1 NOT NULL default ”,
    pollq_multiple tinyint(3) NOT NULL default ‘0’,
    pollq_totalvoters int(10) NOT NULL default ‘0’,
    PRIMARY KEY (pollq_id)
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    Thread Starter gorod

    (@gorod)

    http://imageshack.us/f/29/wqta.jpg/

    Here is a screenshot of the error.

    The plugin doesn’t save any polls.

    Thread Starter gorod

    (@gorod)

    Yes, your forums are as useless as your plugin.

    You see dozens of complaints here that your plugin cannot be installed on wordpress, all people see is a “redirect” message without any links or instructions.
    Why do you ignore those complaints ?
    Where are the installation instructions ?

Viewing 4 replies - 1 through 4 (of 4 total)