DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

FAQ

Q: I'm getting "Uncaught TYPO3 Exception #1289386765: Could not analyse class:Tx_Community_Service_Access_AccessService maybe not loaded or no autoloader? Tx_Extbase_Object_Container_Exception_UnknownObjectException thrown in file typo3sysextextbaseClassesObjectContainerClassInfoFactory.php in line 45."

A: Please include Community static template.

Q: I'm getting “Fatal error: Call to a member function getParentKeyFieldName() on a non-object in typo3sysextextbaseClassesPersistenceStorageTypo3DbBackend.php on line 660“ when accessing page with threaded messages plugin.

A: The static template form Community has to be included after the static template from Extbase (as we are overriding some Extbase classes). You can check the order of templates in Template Analyzer.

Q: How can I preserve community parameters in TYPO3 page menu?

A: add this line to Typoscript configuration

config.linkVars := addToList(tx_community)

alternatively you can use typolink “addQueryString =1”

in your menu like this:

1 = TMENU
1 {
     NO {
         linkWrap = <li>|</li>
         doNotLinkIt = 1
         stdWrap.typolink.parameter.data = page:uid
         stdWrap.typolink.addQueryString = 1
     }
}