Ну, и последняя (первая) ошибка, которая непосредственно возникает при подгрузке extensions, ведет к тому же файлу class.em_index.php. Фрагмент непосредственно после предыдущего (в функции fetchMetaData($metaType)): 
 
case 'extensions': 
	$this->fetchMetaData('mirrors'); // if we fetch the extensions anyway, we can as well keep this up-to-date 
 
	$mirror = $this->getMirrorURL(); 
	$extfile = $mirror.'extensions.xml.gz'; 
	$extmd5 = t3lib_div::getURL($mirror.'extensions.md5'); 
		if(is_file(PATH_site.'typo3temp/extensions.xml.gz')) $localmd5 = md5_file(PATH_site.'typo3temp/extensions.xml.gz'); 
 
		if($extmd5 === false) { 
			$content .= '<p>Error:  
The extension MD5 sum could not be fetched from '.$mirror.'extensions.md5. Possible reasons: network problems, allow_url_fopen is off, curl is not enabled in Install tool.</p>'; 
		} elseif($extmd5 == $localmd5) { 
			$content .= '<p>The extension list has not changed remotely, it has thus not been fetched.</p>'; 
		} else { 
			$extXML = t3lib_div::getURL($extfile); 
			if($extXML === false) { 
				$content .= '<p>Error: The extension list could not be fetched from '.$extfile.'. Possible reasons: network problems, allow_url_fopen is off, curl is not enabled in Install tool.</p>'; 
			} else { 
				t3lib_div::writeFile(PATH_site.'typo3temp/extensions.xml.gz', $extXML); 
				$content .= $this->xmlhandler->parseExtensionsXML(PATH_site.'typo3temp/extensions.xml.gz'); 
			} 
		} 
		break; 
} 
 
 
Соответственно проблема возникает из-за ошибки в $extmd5, которая явлется функцией t3lib_div::getURL($mirror.'extensions.md5'), где $mirror = $this->getMirrorURL() 
 
В общем, опять существует некая проблема с функцией getURL из файла class.t3lib_div.php
		 
		
		
		
		
		
		
		
	 |