Kunena 7.0.2 Released

The Kunena team has announce the arrival of Kunena 7.0.2 [K 7.0.2] in stable which is now available for download as a native Joomla extension for J! 5.3.x/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

Important [K.5.0.RC3] Long page load times when posting

More
9 years 8 months ago #176847 by 810
jelle @kunena.org

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

More
9 years 8 months ago #176848 by jhebbel

810 wrote: jelle @kunena.org


I have sent SA credentials. If you want cpanel or ftp or anything let me know and I can set that up aswell.

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

More
9 years 8 months ago #177511 by 810
on the last rc, I have made some improvements, about the posting, did you see any improvement?

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

More
9 years 7 months ago #177512 by jhebbel
I'm going to give it a shot as soon as I get a chance to sit down and merge my own changes back into it, I cannot remember what at this point but I think I had a bunch of non template changes in the files as well.

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

More
9 years 7 months ago #177545 by jhebbel

810 wrote: on the last rc, I have made some improvements, about the posting, did you see any improvement?


On RC5 with Joomla 3.6 and does not appear to have made any difference. The slow email may be tied to something to do with HTML email as plain text emails sent by the joomla system are pretty quick. What do you use to define your boundaries in your html email, I have read about some string generators being used to generate the email boundaries being incredibly slow on some server configs.

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

More
9 years 7 months ago #178804 by jhebbel
So... I finally found the issue...

Joomla uses uniqid() to create a fandom string to boundary a message, apparently this does not work well with some servers, and is completely unnecessary anyway.

I modified line 2091 in libraries\vendor\phpmailer\class.phpmailer.php
from;
Code:
$this->uniqueid = md5(uniqid(time()));

to;
Code:
$this->uniqueid = uniqid('MAIL_',true);

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

Time to create page: 0.270 seconds