This forum is for churches and ministries using Web-Empowered Church tools or packages. If you are a WEC customer, please submit a ticket. If you are reporting a bug with one of our plugins, please email us. If you are a business entity and want help that you cannot find here, please look at our services.

Notice: we are using new forum software and most messages from last 2 years were transferred. If you had an account before, please login to post a message on the forum.

Topic with no new replies

WEC Knowledgebase


Author Message
Written on: 02/12/2010
James Hagist
Topic creator
registered since: 05/26/2008
Posts: 2
Hi Guys,

I don't see WEC Knowledgebase on the website anymore. Have you stopped supporting/developing it?

Great extension... I hope not
Written on: 06/15/2010
Dave Slayback
registered since: 11/01/2004
Posts: 488
Hi James,

It is still available in the TYPO3 TER, and we do support it, but are not actively updating it. Since it is not used for church websites in our standard WEC Starter package, we do not list it on the website here.

The plugin was initially created for our old website. We may release an update in the next few months that has some fixes and minor updates. We can certainly answer any questions you may have in using it.

-Dave
Written on: 12/02/2011
Bernd Schmid
registered since: 04/29/2009
Posts: 33
Hello, Dave,
today I succeeded in installing your knowledgebase plugin. (I chose it because I already use other plugins like wec_discussion and wec_staffdirectory and found all of them very useful.)
Now I defined an administrator in wec_knowledgebase in order to edit the records in front end.
The text of the records makes heavy use of html and so a normal text field display is not good. How can I use a RTE like htmlarea for editing in the front end?
If not what plugin would you recommend instead?
Kind regards
Bernd
Written on: 12/05/2011
Bernd Schmid
registered since: 04/29/2009
Posts: 33
Hello, Dave,
today our Typo3 stopped displaying the frontend because of wec_knowledgebase.
I had to remove it.
The error was:
PHP Fatal error: Call to a member function extraItemMarkerProcessor() on a non-object in /data/www/intranet/htdocs/typo3conf/ext/tt_news/pi/class.tx_ttnews.php on line 1738
I found out that wec_knowledgebase added:
t3lib_extMgm::addPItoST43($_EXTKEY,'pi1/class.tx_wecknowledgebase_pi1.php','_pi1','list_type',1);
## ADD HOOK for ExtraCodes
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['extraCodesHook'][] = 'tx_wecknowledgebase_pi1';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['extraGlobalMarkerHook'][] = 'tx_wecknowledgebase_pi1';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['userDisplayCatmenuHook'][] = 'tx_wecknowledgebase_pi1';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['extraItemMarkerHook'][] = 'tx_wecknowledgebase_pi1';
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['what_to_display'][] = array('POPULAR','POPULAR',);
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['what_to_display'][] = array('CATDROPDOWN','CATDROPDOWN',);
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['what_to_display'][] = array('TUTORIAL_LIST','TUTORIAL_LIST',);
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['what_to_display'][] = array('TUTORIALS_MENU','TUTORIALS_MENU',);
tt_news is version 2.5.2 in our installation. Here is the code around line 1738:
// Adds hook for processing of extra item markers
if (is_array($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['extraItemMarkerHook'])) {
foreach($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['tt_news']['extraItemMarkerHook'] as $_classRef) {
$_procObj = & t3lib_div::getUserObj($_classRef);
$markerArray = $_procObj->extraItemMarkerProcessor($markerArray, $row, $lConf, $this);
What has gone wrong? Typo3 has Version 4.4.4
Regards
Bernd


[This article was edited 1 times, at last 05.12.2011 at 09:42.]
Written on: 02/14/2012
Bernd Schmid
registered since: 04/29/2009
Posts: 33
I found out what to do: include the static TS template into the root template of the site, not somewhere else in the page tree.