Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Can't enable polls?

Asked Modified Viewed 3,990 times
S
Strummer
S
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
asked
Junior Member

When I go and create a poll in the admin panel, it still shows "no polls defined" in the panel. I've tried this several times, and I'm beginning to wonder if there's an option that actually enables the poll? (The poll panel is already enabled)
0 replies

7 posts

V
vaesir
V
vaesir 10
  • Junior Member, joined since
  • Contributed 37 posts on the community forums.
  • Started 13 threads in the forums
answered
Junior Member

What is your version?
Also a link to your portal?
0 replies
S
Strummer
S
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

http://naruto-planet.atwebpages.com/news.php

My version is 7.02.07.
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Are polls you are trying to create actually created in your Admin interface?
0 replies
S
Strummer
S
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

Domi wrote:

Are polls you are trying to create actually created in your Admin interface?


Yes they are.
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

It´s odd for sure.
Try to move the panel to a new side, above all panels etc. It could collide with something.
Also download a new fresh copy of the pack and replace the panel.
0 replies
S
Strummer
S
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

Domi wrote:

It´s odd for sure.
Try to move the panel to a new side, above all panels etc. It could collide with something.
Also download a new fresh copy of the pack and replace the panel.


It didn't work, but I discovered something new! When i try to disable the panel, it appears again at the bottom of the page, still saying "No polls defined"
0 replies
F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

Ok, let´s try droping the table and make a new one.

Go to Custom Pages and run a preview of the code below.

<?php
$result = dbquery("DROP TABLE IF EXISTS ".$db_prefix."polls");
$result = dbquery("CREATE TABLE ".$db_prefix."polls (
poll_id MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
poll_title VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_0 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_1 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_2 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_3 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_4 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_5 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_6 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_7 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_8 VARCHAR(200) NOT NULL DEFAULT '',
poll_opt_9 VARCHAR(200) NOT NULL DEFAULT '',
poll_started INT(10) UNSIGNED NOT NULL DEFAULT '0',
poll_ended INT(10) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (poll_id)
) ENGINE=MYISAM;");
?>



Ps, please don´t quote messages that already are above your next answer.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 7 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

F
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
V
V
vaesir 10
  • Junior Member, joined since
  • Contributed 37 posts on the community forums.
  • Started 13 threads in the forums
S
S
  • Junior Member, joined since
  • Contributed 11 posts on the community forums.
  • Started 5 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet