Exception : ParseError

syntax error, unexpected token ">"

1
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/bootstrap/mycbase/view/View.php(348) : eval()'d code, line 5

2
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/frontend/content/controller/ControllerContentText.php, line 114
111.             $oView->preRender();
112.             // Call plugins for actual content type
113.             $this->pluginAdapter($this->getType(), $oView, $oContent, array('contentHandle', 'textContentHandle'));
114.             $oView->render();
115. 
116.             return $oView->view();
117.         }
3
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/resources/MycTools.php, line 442
439.                 $oExtensionComponent = new $sFullQualifiedModuleName($this->oRequest, $this->oResponse);
440.                 $sRenderedData = $oExtensionComponent->setContentData($oContent);
441.                 if (method_exists($sFullQualifiedModuleName, $sMethodName)) {
442.                     $sRenderedData = $oExtensionComponent->$sMethodName();
443.                     if ($sRenderedData != '') {
444.                         $aExtension = $sRenderedData;
445.                         return $aExtension;
4
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/frontend/content/controller/Controller.php, line 274
271.                 $oView->render();
272.                 return $oView->view();
273.             } elseif (!empty($sFullQualifiedModuleName)) {
274.                 return $this->oMycTools->loadContentMethodOfModule($sFullQualifiedModuleName, $sAction, $oElement);
275.             }
276.         }
277. 
5
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/frontend/content/controller/Controller.php, line 218
215.                     if (!empty($sContentReplace)) {
216.                         $oView->assign('content', $sContentReplace);
217.                     } else {
218.                         $oView->assign('content', $this->getContent($oElement));
219.                     }
220.                 }
221.                 ($oElement->id != '') ? $oView->assign('id', $oElement->id) : $oView->assign('id', '');
6
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/frontend/content/controller/Controller.php, line 154
151.                             $this->buildTemplate($oElement['child'])
152.                         );
153.                     } else {
154.                         $aOutput[$sPlaceholder][] = $this->elementContent($oElement['parental']);
155.                     }
156.                 }
157.             }
7
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/frontend/content/controller/Controller.php, line 109
106.             $aResortContent = $this->oMycTools->rebuildContentByParentDependence($aContentData);
107.             $iContentRootId = 0;
108.             $aContentTree = $this->oMycTools->completeBuildContentTree($aResortContent, $iContentRootId);
109.             $sContent = $this->buildTemplate($aContentTree);
110.             $this->aDataCollector['#body']['content'] = $sContent;
111.             $sData = $this->aDataCollector;
112.             $this->oResponse->setData($sData);
8
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/resources/MycClassHandler.php, line 297
294. //            \memyc\resources\LoggerRK::setLogFile("111.txt");
295. //            \memyc\resources\LoggerRK::log($sModuleName . ' ' . $sMethodName);
296.             $oComponent = new $sModuleName($this->oRequest, $this->oResponse);
297.             $sMixedOutput = $oComponent->$sMethodName();
298.             if ($sMixedOutput != '') {
299.                 // CSS or JS files will be loaded on demand (in the backend)
300.                 $this->setDefaultFilesOnDemand($sExtensionName);
9
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/resources/MycClassHandler.php, line 88
85.                                 $sFullName = $aExtensionInformation['fullName'];
86.                                 $sClassName = $aExtensionInformation['shortName'];
87.                                 $sModuleName = $sFullName . '\\' . $sComponent;
88.                                 $sMixedOutput = $this->loadMethodOfModule(
89.                                     $sModuleName,
90.                                     $sActionMethod,
91.                                     $sExtensionName
10
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/bootstrap/bootstrap/controller/Controller.php, line 370
367.             $this->oRegistry->CALLEDEXTENSIONS = $orderedBeModuleList;
368. 
369.             // call now the extension if the route is correct
370.             $aDataArray = $this->oMycClassHandler->callRoutes($orderedBeModuleList);
371.             $this->oResponse->setData($aDataArray);
372.         }
373. 
11
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/bootstrap/bootstrap/controller/Controller.php, line 255
252.                         if ($sString != '') {
253.                             return $sString;
254.                         } else {
255.                             $this->startMemyc($aOrderedFeModuleList);
256.                             $sTemplateFile = 'template/frontend.html';
257.                             $oController = new \memyc\core\templatemanager\Controller(
258.                                 $this->oRequest,
12
/www/htdocs/w01d5672/websites/other/cms.memyc.org/memyc/init.php, line 125
122.     date_default_timezone_set($oRegistry->TIMEZONE);
123. }
124. $oBootstrapController = new bootstrap\bootstrap\Controller($oHttpRequest, $oHttpResponse);
125. $sOutput = $oBootstrapController->start();
126. 
127. // Compressing the output for a faster transfer from server to client
128. $oOutputCompression = new resources\OutputCompression();
13
/www/htdocs/w01d5672/websites/other/cms.memyc.org/index.php, line 21
18. } else {
19.     require_once('conf/MycConfiguration.php');
20.     // Initializing the system
21.     require_once('memyc/init.php');
22. }