Kunena 7.0.6 & Kunena 6.4.12 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.6 [K 7.0.6] 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.

The Kunena team is also pleased to announce the twelfth version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Solved Crypsis Template bugged?

More
11 years 1 week ago - 11 years 1 week ago #165579 by BamiGorengo
Hey There,

When i activate the Crypsis Template i get a error that tell me only:

500 Internal Server Error

Fatal Error was detected!

Please contact the site owner.

Any Idea?
Last edit: 11 years 1 week ago by BamiGorengo.

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

More
11 years 1 week ago #165584 by xillibit
Replied by xillibit on topic Crypsis Template bugged?
Hello,

Can-you enable debug mode into Joomla! and Kunena configuration panel ? Then you will see a more detailled error message instead error 500

I don't provide support by PM, because this can be useful for someone else.
The following user(s) said Thank You: BamiGorengo

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

More
11 years 6 days ago - 11 years 6 days ago #165604 by BamiGorengo

Fatal Error was detected!

The error was detected in the Devmonkeys Template.

Fatal Error: Cannot redeclare class lessc_formatter_compressed in templates/devmonkeys/less/lessc.inc.php on line 3759


I develop a own kunena template and iclude there lessphp...
On my own template i get the same error...

I think its a problem with the Crypsis includet less compiler.
I have to find a way to fis this for MY tempalte to, any ideas?

Cripsys and "My Template" Works both fine when i use a default joomla template without includet lessphp.

I Mean this error happens only when i have includet lessphp in the SITE TEMPLATE "AND" in the Kunena Template.
Last edit: 11 years 6 days ago by BamiGorengo.

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

More
11 years 6 days ago - 11 years 6 days ago #165605 by 810
Replied by 810 on topic Crypsis Template bugged?
you don't need lessphp files in your template files.

Just add this on your index.php
Code:
// Compile CSS from LESS files. $this->compileLess('yourtemplatename.less', 'kunena.css'); $this->addStyleSheet('kunena.css');

Where 'yourtemplatename.less' is your main less file
Last edit: 11 years 6 days ago by 810.
The following user(s) said Thank You: BamiGorengo

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

More
11 years 6 days ago - 11 years 6 days ago #165607 by BamiGorengo
I have in kunena only my style.less and the output is style.css...

I tryed this:
Code:
// Compile CSS from LESS files. $this->compileLess('/less/style.less', '/css/style.css'); $this->addStyleSheet('/css/style.css');

and this to:
Code:
[code type=php]// Compile CSS from LESS files. $this->compileLess('style.less', 'style.css'); $this->addStyleSheet('style.css');
[/code]

Nothing works =/

Edit:

With this i get error:

Fatal Error: Using $this when not in object context in components/com_kunena/template/dev_mafuba/template.php on line 14

Last edit: 11 years 6 days ago by BamiGorengo.

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

More
11 years 6 days ago #165608 by 810
Replied by 810 on topic Crypsis Template bugged?
No do just:
Code:
$this->compileLess('style.less', 'kunena.css'); $this->addStyleSheet('kunena.css');

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

Time to create page: 0.285 seconds