WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: seanie_morris on June 19, 2018, 06:00:57 PM

Title: Error: [237] The addon Template is not installed properly!
Post by: seanie_morris on June 19, 2018, 06:00:57 PM
Hi Folks,

I get this error message when I try to install the snailrain template from wbce.at
Quote
[237] The addon Template is not installed properly!
When I try it a second time, it says the template is already installed, and via FTP I see that the folder is there. The template is not in the Add Ons section to remove it, I have to do that via FTP. I have tried the whole process a couple of times.

Other templates I tried install fine. What would cause this to happen?

Seanie.
Title: Re: Error: [237] The addon Template is not installed properly!
Post by: evaki on June 19, 2018, 09:39:32 PM
info.php
This is missing
$template_function     = 'template';
And $template_license is to long (Data too long for column 'license' at row 1)

To insert like this:
Code: [Select]
$template_directory = 'snailrain';
$template_name = 'snailrain';
$template_version = '0.95';
$template_platform = '2.8.3';

$template_function     = 'template';

$template_author = 'free-responsive-templates.com';

//$template_license = 'This Template is licensed under the Creative Commons Attribution 3.0 License. You are free to use Snailrain Responsive Template. You can not remove copyright notice from any our template without our permission. Credits in footer should remain intact. Uses Photos are from Norbert Gumbrecht.';

$template_license = 'This Template is licensed under the Creative Commons Attribution 3.0 License.  Uses Photos are from Norbert Gumbrecht.';

$template_description = 'Snailrain is a responsive starter template. Its reworked for WBCE / WebsiteBaker CMS by Norbert Gumbrecht.';

$block[1] = 'Main';
$block[2] = 'Right';
$block[3] = 'Box';

$menu[1]='Mainmenu';
$menu[2]='None';


I hope it helps
Reg./MfG. Evaki
Title: Re: Error: [237] The addon Template is not installed properly!
Post by: evaki on June 19, 2018, 09:58:33 PM
@ DEV
War da nicht mal was, gabs oder gibts sowas wie 'ne Verlängerungsmöglic hkeit?
Ala
$template_license = 'This Template........... ................... ...........';
.$template_license = '.................ar e from Norbert Gumbrecht.';
mit oder ohne Punkt? Oder velwechsre ich was?

Oder gaaaanz anders gefragt, weils ja anscheinend den CORE betrifft: "Warum gibts es diese Beschränkung? Sinn? Zweck?"
MfG. Evaki
Title: Re: Error: [237] The addon Template is not installed properly!
Post by: DarkViper on June 20, 2018, 12:51:27 AM
Das Feld ist nicht dafür vorgesehen, um einen kompletten Lizenztext aufzunehmen, sondern nur die Lizenzbezeichnung und einen Link zum gültigen Lizenztext.
Da die DEVs auf die Templateersteller keinen Einfluss haben, tauchen immer wieder mal solche Stilblüten auf.
Title: Re: Error: [237] The addon Template is not installed properly!
Post by: evaki on June 20, 2018, 10:22:26 AM
DANKE!
Title: Re: Error: [237] The addon Template is not installed properly!
Post by: seanie_morris on June 20, 2018, 01:35:02 PM
Danke, evacki, your solution worked perfectly, thank you! :)

Seanie.