TYPO3 8.x Flexforms 的缓存问题。如果我更改了 flexform 配置,我必须重新启动 Docker Apache Web 服务器。有没有更好的方法来修改 Flexforms 而无需在 TYPO3 中重新启动 Web 服务器?
我已经在我的 docker debian9 灯栈上尝试过的步骤:
1. 在 setup.ts 我已经禁用了所有缓存。config.no_cache = 1
2.我也试过 rm -Rf typo3temp 没有效果
3.在安装工具中清除所有缓存无效
4.用chrome或者shift+cmd+r重新加载框架无效
6. 在字段 User TSconfig 中添加 options.clearCache.system = 1 在 TYPO3 V8 'flush system cache' 中不再需要我'flush all cache' 应该可以正常工作。
<!--
for example modification in custom_flexform.xml before:
-->
<elementBrowserAllowed>jpg,png,gif</elementBrowserAllowed>
<!--
for example modification in custom_flexform.xml after:
-->
<elementBrowserAllowed>jpg</elementBrowserAllowed>
如果不重新启动 Web 服务器,我作为后端的 flexform 不会更新我的 Flexform 配置。