Project

General

Profile

Bug #67610

Updated by Markus Klein almost 9 years ago

I'm using TYPO3 7.3 in nginx, php-fpm (5.6.9) environment. 
 When trying to render the pagetree in Backend the following error is thrown: 
 Unable to call TYPO3\CMS\Core\ExtDirect\ExtDirectDebug::__destructor() 

 To solve you'll need to add  
 <pre> 
	  
	 /** 
	  * destructor 
	  * 
	  * Currently empty, but automatically registered and called during 
	  * ExtDirect shutdown. 
	  * 
	  * @see http://forge.typo3.org/issues/25278 
	  */ 
	 public function __destructor() { 

	 } 
 </pre> 

 to the following file: 
 @/typo3/sysext/core/Classes/ExtDirect/ExtDirectDebug.php@ /typo3/sysext/core/Classes/ExtDirect/ExtDirectDebug.php

Back