- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
将 TYPO3 4.5(或 6.1)升级到 6.2 的推荐步骤是什么?我有一台 mac,我的网站在一个共享的 Linux 帐户上运行。
最佳答案
这是我想分享的升级实践的分步指南。感谢有关 https://jweiland.net/typo3/vortraege/typo3camp-berlin-2014.html 的指南对我帮助很大。
请注意,这些是我的个人经验,可能适用于您的环境,也可能不适用于您的环境。认真对待一切。
我区分“快速”和“长期”升级。使用“长”升级,您进行两次升级。首先,您升级实时站点的副本,使所有扩展和模板工作,当您准备好时,您声明内容卡住,使用在第一步中修改的文件重新进行升级。对于“快速”升级,您立即声明内容卡住,进行升级和测试,然后直接部署到测试或实时环境。
在本地设置站点
BE][adminOnly] = 0
) 时,不要忘记检查该站点是否有用户贡献的内容?如果是这样,要么禁用提交它的可能性,要么记下启用升级站点后必须重新导入的表。 Hint: Work locally. I can only refer to using MAMP Pro (be sure to get the pro version) on a mac. Always be aware on which site (and with which DB) you are working, btw! And attention: OS X file system is case insensitve, which can be a bummer when deploying to Linux (see below). For the database administration, I prefer http://www.sequelpro.com/ to phpMyAdmin for most tasks. It's very handy to make backups or to quickly browse tables, although it has a few missing features in comparison with phpMyAdmin. It is also extremely reliable for importing dbs onto a live server - where phpMyAdmin can stall often.
[SYS][UTF8filesystem]
,请注意:通过 Coda 或 Transmit(尚未测试 Cyberduck)等流行 (S)FTP 客户端将文件传输到 OS X 可能会损坏包含 UTF-8 文件名的文件名。因此,当您部署时,指向此类文件的所有链接都将无效。在传输或使用 scp 之前将它们打包到存档中。首先避免设置。 Hint: If you're working on MAMP, you'll have to chown all the files (except templates and config files of your apps (like Sublime)) to _www:_www. I have found it useful to define some aliases for the sudo chown in ~/.bash_profile, like
alias chownmamp="sudo chown -R _www:_www ."
and vice versa to your own user. Another possibility might be to temporarilychmod 777
everything - when deploying, taking extra care this is removed (find . -type f -exec chmod 644 {} \;find . -type d -exec chmod 755 {} \;
)
Hint: If you use different hostnames for your local and the live site, replace them where needed. For the command line, I have found
grep -rl 'www.site.ch' ./ | xargs sed -i 's/www.site.ch/www.localsite.dev/g'
useful. But of course you can do that in your IDE or editor too. Don't forget to check realurl_conf.php and .htaccess too. For a quick run, it is also possible to use the real hostnames, so you don't have to replace anything (but won't be able to compare sites from the same machine).
Hint: On MAMP, I've had issues with
$TYPO3_CONF_VARS['BE']['warning_email_addr']
which prevented logging into the install tool with an error 500, as it couldn't sent the email. Remove that setting in localconf.php for the local upgrade if it happens.
config.admPanel = 1
,通过 admPanel=1
在您的管理员用户的 TS 中启用它,并使用您将查看 FE 的域登录。 adminPanel 仅在您登录到该域时才会显示!当您在那里时,还将 options.clearCache.system = 1
添加到管理员的 TS,这样您也可以在生产模式下清除系统缓存。 SELECT * FROM tt_content WHERE list_type = 'news_pi1'
一起使用,或者通过查看 tt_content 中的所有 cType = 'list'
条目。如果不使用它,也考虑删除扩展。或者它可以被更好的扩展替换,或者手动/通过 tt_content 重新构建? (例如旋转木马,我宁愿不必为此保持扩展。但请检查预算!一切都需要时间。indexed_search
,因为 ke_search
是一个非常可靠的替代方案,可以快速设置。 Hint: with FAL, the _cli_scheduler user needs rights for every file mount you want to index with ke_search, else the indexing via scheduler will fail.
This version works for TYPO3 4.5.0 - 6.2.999
- 如果没有,请不要更新。 typo3conf/ext
我们现在将有一个很短的扩展列表。那很好! Hint: don't be too eager with APC, the availability check in 6.2 isn't perfect, cf. https://forge.typo3.org/issues/64030 (you can't use it if your shared hosting relies on suPHP).
File Abstraction Layer: Update storage index
并更新引用索引。 Hint: If something doesn't seem to be complete after all wizards went through, you can re-enable the upgrade wizards in LocalConfiguration.php under
['INSTALL']['wizardDone']
. (Like if the whole sys_file_reference table empty and there are no images in tt_content table - remove the line forTceformsUpdateWizard
, so it can run again).
Hint: Check typo3conf/AdditionalConfiguration.php and make sure there are no values in it that override values from LocalConfiguration.php. I've had this on a 6.1->6.2 upgrade, and thus was unable to enable error logs (the
devIPmask
was overridden all the time).
Hint: here are a few occasional replacements I had to make for 6.2 compatibility:
require_once(PATH_tslib . 'class.tslib_pibase.php‘);
-> if (!class_exists('tslib_pibase')) require_once(PATH_tslib . 'class.tslib_pibase.php');
require_once(PATH_t3lib . 'class.t3lib_scbase.php‘);
-> require_once(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('backend'). 'Classes/Module/BaseScriptClass.php‘);
t3lib_div::GPvar()
-> \TYPO3\CMS\Core\Utility\GeneralUtility::_GP()
mysql_num_rows($res)
-> GLOBALS['TYPO3_DB']->sql_num_rows($res)
t3lib_div::intInRange
-> t3lib_utility_Math::forceIntegerInRange
t3lib_div::view_array()
-> t3lib_utility_Debug::viewArray
t3lib_div::testInt
-> t3lib_utility_Math::canBeInterpretedAsInteger
/Applications/MAMP/bin/php/php5.5.18/bin/php ./typo3/cli_dispatch.phpsh extbase help
Hint: In the last case, take care, to select the page template in accordance to the selected BE Layout, never use .if, always use CASE. See With TYPO3 be_layout, how to choose frontend template correctly (performance-wise)?
config.doctype=html5
(不是 html_5),将所有 HTML
对象替换为 TEXT
。使用 TypoScript Object Browser (TSOB) 至少检查 TS 中没有错误。 Hint: Btw, extensions I use on all sites: realurl_clearcache, nc_staticfilecache, sourceopt, ke_search. On most sites (feature-based), of course: news, powermail.
Hint: Also make sure that the "page tree rights" group is properly set up, cf http://typo3.uni-koeln.de/typo3-admin-access-default.html?&L=0
Hint: Here's a snippet I add to all user's userTSConfig.
sys_file
以获取 missing = 1
。您可以在本地重新运行上面提到的调度程序 FAL 任务,以查看它可以修复某些文件名。如果没有其他方法,您仍然可以将所有文件重命名为小写,参见。 How do I rename all files to lowercase? 关于typo3 - 如何将 TYPO3 4.5 升级到 6.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28675796/
考虑这两个程序及其尝试编译。 #include int main() { std::vector a; // Errors centered around `Typo` being an i
如何才能检测到拼写错误,但仅限于特定短语。另一种思考方式是如何检测某个正则表达式的拼写错误。 例如,我不想要一个通用的拼写错误查找器,我在上面找到了多个资源。我不想要一个通用的拼写检查器,我又在上面找
我现在正在研究算法,我遇到过一个例子,我的回答是 Infinite loop但在正确答案中,它说它是 O(log2n) . function someFunc(n) { for(var i =
IntelliJ IDEA 具有检查拼写的功能。在分析概述中,我可以看到发现了多少拼写错误,例如发现 12 个拼写错误。在代码中,它们使用绿色波浪线突出显示。 但是,我发现手动查找那些波浪线非常困难。
我是 still通过“七周内的七种语言”,我发现了一个错字或我不明白的东西。 挑战之一是: Write a function that takes an argument x and returns
我正在从 Jquery 调用 WCF Rest 服务,如下所示。在我的 WCF Rest 服务中,安全模式是传输。下面的代码返回“访问被拒绝”错误。 function GetRest
引用自 Resources Documentation 的 smallestWidth 部分安卓: Thus, the value you use should be the actual small
IntelliJ IDEA 具有检查拼写的检查功能。在分析概览中,我可以看到发现了多少拼写错误,例如发现 12 个拼写错误。在代码中,它们使用绿色波浪线突出显示。 但是,我发现手动查找那些波浪线非常困
当命名变量或提供字符串参数时,Android Studio 似乎对我如何标记事物有问题。 有没有办法关闭它? 最佳答案 是的,打开 Preferences -> Editor -> Inspectio
我已将数据添加到 solr。 名称字段值为:“batman”、“bat man”、“bat-man” 因此,如果用户搜索“btman”,结果应显示搜索中的所有上述值。 我发现这样的查询:localho
use YAML::XS; local $YAML::XS::DumpCode=1; ... 我收到警告: Name "YAML::XS::DumpCode" used only once: poss
我在 react native 应用程序中遇到了 eslint 的问题。我正在为我的组件声明样式属性。它看起来像: Component.propTypes = { styles: ViewPro
我的一个函数加密一个字符串,我的一个测试验证它发生了。自然,像 sldjf982389 这样的字符串不被识别为有效的英语单词,所以 IntelliJ提示。 如果有办法在不向字典中添加垃圾的情况下抑制这
我在云托管中托管了一个 wordpress 网站。我注意到 apache error_log 文件大小增长得非常快,我发现了这个错误(Kirki: Typo found in field post_t
我经常被指向错误博客引擎的来源,即 http://typosphere.org/stable.tar.gz但是,如果我下载并执行以下操作:捆绑安装等。它会作为单独的引擎运行。 我尝试将拼写错误安装为
我正在使用 cakePHP 创建待办事项应用程序。 CakePHP 会为您创建查询等。这就是为什么不能出现拼写错误的原因。 错误: Error: SQLSTATE[42S22]: Column not
我有一个脚本,它列出了特定目录中可能的文件。该代码工作正常,但如何避免此警告? #!/usr/bin/perl use strict; use warnings; use autodie; my $l
在Lua网站上https://www.lua.org/pil/16.1.html ,有这段代码 function Account:new (o) o = o or {} -- create o
在我的 Gruntfile.js 中,我将咖啡任务配置为如此,并且 src/ 目录中存在一个文件 script.coffee: coffee: { dist: { files:
我的问题是关于行(编辑:19),其中新的 PrintWriter 是使用将 FileWriter fw 作为参数的构造函数创建的。如果稍后在实际写作中不使用,我不明白将 BufferedWriter
我是一名优秀的程序员,十分优秀!