Kunena 6.3.0 released

The Kunena team has announce the arrival of Kunena 6.3.0 [K 6.3.0] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x. This version addresses most of the issues that were discovered in K 6.2 and issues discovered during the last development stages of K 6.3

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Question Polls still broke?

More
12 years 7 months ago #31 by detlef
Replied by detlef on topic Re: Polls still broke?
Can I drop or Empty this table ?

Offerte di lavoro per Operatore Socio Sanitario OSS su Lavoro oss

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago #32 by detlef
Replied by detlef on topic Re: Polls still broke?
I got still this

500 - JDatabaseMySQL::query: 1062 - Duplicate entry '0' for key 'PRIMARY' SQL=INSERT INTO jos_kunena_polls_options (text,pollid,votes) VALUES('let','49821','0')

JDatabaseMySQL::query: 1062 - Duplicate entry '0' for key 'PRIMARY' SQL=INSERT INTO jos_kunena_polls_options (text,pollid,votes) VALUES('let','49821','0')

Offerte di lavoro per Operatore Socio Sanitario OSS su Lavoro oss

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago - 12 years 7 months ago #33 by Matias
Replied by Matias on topic Re: Polls still broke?
Yes, and it tells me that you have item in your database with id=0 (as the table has primary key id). That's forbidden in MySQL.

You cannot drop the table (or you can, but you need to install Kunena again after doing it). You just loose all poll options if you do that.
Last edit: 12 years 7 months ago by Matias.

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago #34 by detlef
Replied by detlef on topic Re: Polls still broke?
I did it but I receive ever same response:

500 - JDatabaseMySQL::query: 1062 - Duplicate entry '0' for key 'PRIMARY' SQL=INSERT INTO jos_kunena_polls_options (text,pollid,votes) VALUES('let','49821','0')

Offerte di lavoro per Operatore Socio Sanitario OSS su Lavoro oss

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago #35 by xillibit
Replied by xillibit on topic Re: Polls still broke?
I think the column id of the table jos_kunena_polls_options isn't set on AUTO_INCREMENT

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago - 12 years 7 months ago #36 by detlef
Replied by detlef on topic Re: Polls still broke?
In my table jos_kunena_polls_options I can see 4 fields: id - set - votes - pollid
I must set all on AUTO_INCREMENT ?

If I try to set AUTO_INCREMENT in one of these, I receive an error.
Can you send me a correct table? I will import it in my db

I have also this issue...
[28-Aug-2011 04:44:28] PHP Warning: htmlspecialchars() [<a href='function.htmlspecialchars'>function.htmlspecialchars</a>]: Invalid multibyte sequence in argument in /home/qoperatn/public_html/administrator/components/com_kunena/libraries/html/parser.php on line 84

Offerte di lavoro per Operatore Socio Sanitario OSS su Lavoro oss
Last edit: 12 years 7 months ago by detlef.

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago #37 by xillibit
Replied by xillibit on topic Re: Polls still broke?
The correct structure is the following, please make a backup before todo something :
Code:
CREATE TABLE IF NOT EXISTS `jos_kunena_polls_options` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pollid` int(11) DEFAULT NULL, `text` varchar(100) DEFAULT NULL, `votes` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `pollid` (`pollid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

I don't provide support by PM, because this can be useful for someone else.

Please Log in or Create an account to join the conversation.

More
12 years 7 months ago #38 by detlef
Replied by detlef on topic Re: Polls still broke?
Alleluhia :) Finally the Polls Works :)

Thank you very much for your help !!!

After this hard work, I'll open some millions of polls... :)

Offerte di lavoro per Operatore Socio Sanitario OSS su Lavoro oss

Please Log in or Create an account to join the conversation.

Time to create page: 0.421 seconds