【发布时间】:2017-01-05 10:35:37
【问题描述】:
我想通过在扩展管理器中直接上传来安装扩展。但是我总是收到消息“没有为包找到有效的 ext_emconf.php 文件...”。有人可以帮助解决这个问题吗?
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'Interfrog Themeconfiguration',
'description' => 'contains all themeconfiguration tables config,color,font,colorshemes without an existing theme',
'category' => 'misc',
'author' => 'Interfrog',
'author_email' => 'info@interfrog.de',
'author_company' => 'Interfrog Produktion GmbH',
'state' => 'beta',
'uploadfolder' => true,
'createDirs' => NULL,
'clearCacheOnLoad' => true,
'version' => '2.3.1',
'constraints' => array(
'depends' => array(
'extbase' => '7.6',
'fluid' => '7.6',
'typo3' => '7.6',
),
'conflicts' => array(
),
'suggests' => array(
),
),
'autoload' => array(
'psr-4' => array('Interfrog\\IfThemeconfiguration\\' => 'Classes')
),
);
?>
【问题讨论】:
-
文件内容看起来不错,经过测试。检查文件权限?
标签: php typo3 extbase typo3-7.6.x