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

Solved Crypsis Template bugged?

More
10 years 10 months ago - 10 years 10 months 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: 10 years 10 months ago by BamiGorengo.

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

More
10 years 10 months 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
10 years 10 months ago - 10 years 10 months 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: 10 years 10 months ago by BamiGorengo.

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

More
10 years 10 months ago - 10 years 10 months 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: 10 years 10 months ago by 810.
The following user(s) said Thank You: BamiGorengo

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

More
10 years 10 months ago - 10 years 10 months 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: 10 years 10 months ago by BamiGorengo.

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

More
10 years 10 months 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.334 seconds