- Posts: 67
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question Bug Test
- forum-migrations
-
- Offline
- Junior Member
-
Less
More
- Posts: 50
- Thank you received: 2
17 years 2 months ago - 17 years 2 months ago #807
by forum-migrations
Replied by forum-migrations on topic Re:Bug Test
Last edit: 17 years 2 months ago by forum-migrations.
Please Log in or Create an account to join the conversation.
17 years 2 months ago - 17 years 2 months ago #839
by Matias
Replied by Matias on topic Re:Bug Test
I beleve that the first one has been fixed by me.
Wait for 1.0.8 or get the latest SVN and install / replace files with it.
Replacing files do not fix every bug (you would need to run upgrade script), but I believe that it would help to fix your problem.
@ That slash problem: yes, that's something worth to be fixed. I was already wondering, why we strip all the slashes..
Replacing files do not fix every bug (you would need to run upgrade script), but I believe that it would help to fix your problem.
@ That slash problem: yes, that's something worth to be fixed. I was already wondering, why we strip all the slashes..
Last edit: 17 years 2 months ago by Matias.
Please Log in or Create an account to join the conversation.
- forum-migrations
-
- Offline
- Junior Member
-
Less
More
- Posts: 50
- Thank you received: 2
17 years 2 months ago - 17 years 2 months ago #1101
by forum-migrations
Replied by forum-migrations on topic Re:Bug Test
Hi, please read:
Problem #1:
slashes
Problem #2:
Redundancy on Database tables:
Why fireboard needs the mail on each message??
jos_fb_messages
id parent thread catid name userid email
1 0 1 13 Felipe 64 [email protected]
id parent thread catid name userid email
2 0 2 13 Felipe 64 [email protected]
Problem #3:
Why my mail is showed like 3 times when im watching a post??
source code:
<input type = "hidden" name = "email" size = "35" class = "inputbox" maxlength = "35" value = " [email protected] "/>
Problem #4
Why fireboard show numbers above messages on subcategories??
Code of fb_sub_category_list.php:
if ($lastPosttime != 0)
{
unset($obj_lp);
$database->setQuery("SELECT id, thread, catid,name, subject, userid from #__fb_messages WHERE time=$lastPosttime and hold='0' and moved!='1' LIMIT 1" ;
$database->loadObject($obj_lp);
$latestname = $obj_lp->name;
$latestcatid = $obj_lp->catid;
$latestid = $obj_lp->id;
$latestsubject = stripslashes($obj_lp->subject);
$latestuserid = $obj_lp->userid;
$latestthread = $obj_lp->thread;
// count messages in thread
$database->setQuery("SELECT count(id) from #__fb_messages WHERE thread=$latestthread AND hold=0";
$latestcount = $database->loadResult();
$latestpage = ceil($latestcount / $fbConfig->messages_per_page);
echo($latestpage); // HERE!!!!!!!!!!! WHY????
}
Problem #5:
Why Fireboard redirect to homepage when login??
Problem #6: (this is not a real bug)
Why Fireboard do image attachments like this??
[im g size=511]myimage.jpg[/img]
Resized, but sometimes look ugly or bad, and you cant view the full image
What i had to do?
[u rl="http:\myimage.jpg"][ im g size=100]myimage.jpg[/img][/url]
Example of a thumbnail with link to full image
Problem #7 (related with slashes):
testing under windows, attachment was added (image) and the table:
jos_fb_attachment table
mesid filelocation
36501 C:AppServwwwjom/media/kunena/attachments/legacy/images/before.jpg
where are the \?
attachment table working for view referer post on administrator but replace with dummy doesnt work here (just img erased without replacement)
Soon more.........
Problem #1:
slashes
Problem #2:
Redundancy on Database tables:
Why fireboard needs the mail on each message??
jos_fb_messages
id parent thread catid name userid email
1 0 1 13 Felipe 64 [email protected]
id parent thread catid name userid email
2 0 2 13 Felipe 64 [email protected]
Problem #3:
Why my mail is showed like 3 times when im watching a post??
source code:
<input type = "hidden" name = "email" size = "35" class = "inputbox" maxlength = "35" value = " [email protected] "/>
Problem #4
Why fireboard show numbers above messages on subcategories??
Code of fb_sub_category_list.php:
if ($lastPosttime != 0)
{
unset($obj_lp);
$database->setQuery("SELECT id, thread, catid,name, subject, userid from #__fb_messages WHERE time=$lastPosttime and hold='0' and moved!='1' LIMIT 1" ;
$database->loadObject($obj_lp);
$latestname = $obj_lp->name;
$latestcatid = $obj_lp->catid;
$latestid = $obj_lp->id;
$latestsubject = stripslashes($obj_lp->subject);
$latestuserid = $obj_lp->userid;
$latestthread = $obj_lp->thread;
// count messages in thread
$database->setQuery("SELECT count(id) from #__fb_messages WHERE thread=$latestthread AND hold=0";
$latestcount = $database->loadResult();
$latestpage = ceil($latestcount / $fbConfig->messages_per_page);
echo($latestpage); // HERE!!!!!!!!!!! WHY????
}
Problem #5:
Why Fireboard redirect to homepage when login??
Problem #6: (this is not a real bug)
Why Fireboard do image attachments like this??
[im g size=511]myimage.jpg[/img]
Resized, but sometimes look ugly or bad, and you cant view the full image
What i had to do?
[u rl="http:\myimage.jpg"][ im g size=100]myimage.jpg[/img][/url]
Example of a thumbnail with link to full image
Problem #7 (related with slashes):
testing under windows, attachment was added (image) and the table:
jos_fb_attachment table
mesid filelocation
36501 C:AppServwwwjom/media/kunena/attachments/legacy/images/before.jpg
where are the \?
attachment table working for view referer post on administrator but replace with dummy doesnt work here (just img erased without replacement)
Soon more.........
Last edit: 17 years 2 months ago by forum-migrations.
Please Log in or Create an account to join the conversation.
17 years 2 months ago - 17 years 2 months ago #1138
by Matias
Replied by Matias on topic Re:Bug Test
#1: This is known bug and legacy from FB/JB. We will try to fix it soon.
#2: Database tables will be checked when we rename them.
#3: Good question.
#4: Fixed in SVN.
#5: In my site I have no redirect. It's Joomla setting, nothing to do with FB/Kunena.
#6: Good point. I was also thinking that urls back to Kunena would look much better if there would be subject instead of horrible looking url.
#7: Yes, this one is related to slashes, but I would translate all \\ to / anyway.
I added all new bugs to our task list. Thank you!
#8: Do you want to join our test team? :woohoo:
#2: Database tables will be checked when we rename them.
#3: Good question.
#4: Fixed in SVN.
#5: In my site I have no redirect. It's Joomla setting, nothing to do with FB/Kunena.
#6: Good point. I was also thinking that urls back to Kunena would look much better if there would be subject instead of horrible looking url.
#7: Yes, this one is related to slashes, but I would translate all \\ to / anyway.
I added all new bugs to our task list. Thank you!
#8: Do you want to join our test team? :woohoo:
Last edit: 17 years 2 months ago by Matias.
Please Log in or Create an account to join the conversation.
- forum-migrations
-
- Offline
- Junior Member
-
Less
More
- Posts: 50
- Thank you received: 2
17 years 2 months ago #1189
by forum-migrations
Replied by forum-migrations on topic Re:Bug Test
Hehe, ok, i can do it, i work with kunena a lot (migrations...)
bye
bye
Please Log in or Create an account to join the conversation.
Time to create page: 0.229 seconds