Probleem met CMS Forms CMSMS 2.0.1.1
Posted: Wed Oct 07, 2015 10:07 am
Hallo,
Zodra ik de module twitter installeer op CMSMS 2.0.1.1 krijg ik een blanco pagina op mijn admin scherm en op de website werkt niet meer.
Na lang zoeken ben ik erachter dat het in de module: CMSForms zit en wel in het bestand: CMSForms.module.php zodra ik verwijder werkt alles weer naar behoren.
De code in deze file is:
Dit is nadat ik heb geupdate van 1.12.1 naar 2.0.1.1
Wat kan ik hieraan doen?
Alvast bedankt!
Gr. Sjoerd
Zodra ik de module twitter installeer op CMSMS 2.0.1.1 krijg ik een blanco pagina op mijn admin scherm en op de website werkt niet meer.
Na lang zoeken ben ik erachter dat het in de module: CMSForms zit en wel in het bestand: CMSForms.module.php zodra ik verwijder werkt alles weer naar behoren.
De code in deze file is:
Code: Select all
<?php
/*
Module: CMS Forms - This module helps developers to handle forms for their frontend or backend applications
Copyrights: Jean-Christophe Cuvelier - 2012 ©
*/
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'class.CMSFormPlugins.php');
class CMSForms extends CMSModule
{
public function GetName() { return 'CMSForms'; }
public function GetVersion() { return '1.11.2'; }
public function GetAuthor() { return 'Jean-Christophe Cuvelier'; }
public function GetAuthorEmail() { return 'jcc@atomseeds.com'; }
public function GetHelp() { return $this->Lang('help'); }
public function MinimumCMSVersion() { return '1.10'; }
public function InitializeFrontend()
{
CMSFormPlugins::RegisterPlugins($this->smarty);
}
public function InitializeAdmin()
{
CMSFormPlugins::RegisterPlugins($this->smarty);
}
}
Wat kan ik hieraan doen?
Alvast bedankt!
Gr. Sjoerd