问题标签 [typo3-4.5]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
typo3 - RealURL 和 tt_news 多个 Singleviews
我有一个typo3,在一个共同的根和域下有多个树(每种语言一个),
tt_news.SinglePID 通过扩展模板中的常量进行配置。我的问题是,Realurl 总是使用英语树中的 SinglePID,例如,当我单击德语新闻条目时,Realurl 将我带到英语页面并显示德语新闻。任何想法如何解决?
谢谢
typo3 - Typo3 - FE 的 WFQBE 细粒度权限
我们有几个 Typo3 BE 中不存在的页面,我们正在尝试设置细化权限以允许某些人访问进行更改。无法通过 BE 导航以应用权限。这些页面是由 WFQBE 查询创建的,因此管理起来看起来很困难。
目前,我们只能将权限应用到所有用户,不能指定用户组。
这需要自定义扩展吗?要管理其他区域的用户权限?
templates - tt_address:向模板添加地址类别
是否可以以某种方式添加地址分配给 html 输出的 cetrain 组的子组?
在模板中我有###MAINGROUP###
和###GROUPLIST###
. 我不能使用主组,因为我需要的组并不总是主组。而对于 grouplist,我不能说哪个组是一个组的子组。
有人知道我该怎么做吗?
除此之外,我还需要 tt_address 表中自创字段的值。
编辑:
我像@lorenz 说的那样尝试。到目前为止我所拥有的:
ext_localconf.php:
class.tx_next_address_sort_addmarkers.php:
扩展键:next_address_sort
我得到的只是一个空白屏幕,但 apache 日志中没有错误
typo3 - 错字3 4.5 将 .zip 转换为 .t3x 扩展名
我是 Typo3 的新玩家,我遇到了向后兼容性的问题。
我正在使用typo3 6.1 版平台开发我的个人扩展,并将其打包成.zip 文件。这是可能的,因为 Typo3 版本 6.1 在使用扩展管理器上传扩展时可以接受 .zip 和 .t3x 文件。没有方法可以将我的扩展下载为 .t3x 格式。
问题是,现在我正在使用 Typo3 4.5 版在不同的站点上工作,我很想再次使用我的扩展程序。由于 Extension Manager 中没有任何方法可以上传 .zip 扩展名,因此我唯一的选择是将 .zip 转换为 .t3x 格式。
我有什么可能的方法吗?还是我错过了一些关于不同工作的文档?
php - TYPO3,tt_news 不允许选择多个类别
我的一个 TYPO3 网站中有一个奇怪的“错误”。我已经安装了 tt_news 并且在存储文件夹中有 5 个类别。
添加或编辑新闻时,我可以选择我的类别,但如果我选择多个类别,类别字段旁边会出现橙色警告并告诉我“必填字段
非常感谢。
url - 一个特定页面内容的完整 URL 仅在 Typo3 中,其余部分遵循基本 URL 常量
我正在使用typo 3 4.5.30 版管理一个协会的网站。该站点的模板中有 [baseURL] = http://www.afj-japon.org/的配置设置。一切正常,但我只需要一页就可以在代码中完整编写 URL。现在页面代码指示并且 URL 是完整编写的,用于重定向到其他页面,但对于图像。我需要将代码实际设置为如何将其设置为仅影响这一页而不影响整个站点?预先感谢您的帮助。问候, 吉尔斯
typo3 - spamProtectEmailAddresses Typo3 deactivate only in one specific page
I am managing an association's site using typo3 version 4.5.30. The site has the config setup for spam protection
Every time content is created that includes an email address, it encrypts it fine. I need to have this functionality disabled for one page only. How should I set it up ?
typo3 - Extbase 在查询/存储库中添加计算字段
我有一个正常的 extbase 扩展。
在控制器中,我得到了所有记录:
并在模板中显示它们:
如果记录是按类别最新的,现在我需要一个stuff.isnew
带有值的新字段。1
一个 SQL 语句看起来像:
(如果我必须编写自己的查询,我将不得不检查已删除、隐藏、开始时间、结束时间以检查记录现在是否处于活动状态)
我现在的问题是,将它添加到我的扩展中的最干净/最好的方法是什么?
css - 动作控制器中的 Extbase addAdditionalHeaderData(...),包含两次相同的 CSS
对于我的 extbase 扩展,我需要一个包含在所有动作控制器中的 CSS:
如果我现在有一个包含我的扩展的多个插件的页面,我有多个 CSS 包括:
编辑
我还可以执行以下操作:
但据我所知,这只是老办法。
typo3 - Set extbase Controller Action in plugin
I have set up an extbase extension in a TYPO3 4.5 site with the extension builder, containing just the default listAction in the controller.
Now I would like to add a new Action, and it doesn't work.
I don't need (aka. can't get to work) a flexform to choose the controller action.
As there's a field "Plugin mode", I thought I could just manually enter the action here:
And extend the plugin configuration as such in ext_localconf.php:
Also, in the controller, I have added a new action.
But, alas, the action is not called at all.
Did I interpret the field "plugin mode" wrong? Did I miss something?
Alternatively: Can I set the action for a "backend" plugin via TS as well?