1 This document is a part of the TYPO3 project. TYPO3 is an open source web
2 content management system released under the GNU GPL. TYPO3 is copyright
3 (c) 1999-2011 by Kasper Skaarhoj.
5 This document contains information about TYPO3 version 4.6 which was released
8 An up-to-date version of this document also containing links to further in
9 depth information can be found here:
11 http://wiki.typo3.org/TYPO3_4.6
13 ===============================================================================
15 ===============================================================================
19 This version requires at least PHP 5.3, older versions of PHP are not supported
20 anymore with TYPO3 4.6.
22 * ImageMagick/GraphicsMagick
26 * PHP __constructor() methods
28 The old PHP 4 style class constructors, which have been the same as the class
29 name have been changed to use the PHP 5 __constructor() syntax. This is
30 considered as breaking change if extension called the old contructor of an
33 ===============================================================================
34 Changes and improvements
35 ===============================================================================
37 This will list all changes and improvements between TYPO3 4.5 and 4.6. For
38 technical details see ChangeLog included in the typo3_src package.
40 -------------------------------------------------------------------------------
42 -------------------------------------------------------------------------------
47 -------------------------------------------------------------------------------
49 * Static Published Pages
51 The feature to statically publish a page from the Admin Panel has been dropped.
52 There are better ways to achieve such a functionality, like e.g.
53 EXT:nc_staticfilecache.
55 * Removed extCache=2 option
57 The cache files in typo3conf/temp_CACHED_* were by default set to a hash that
58 was based on the extensionlist, but this is quite unnecessary, so the extCache
59 option was removed to be only used once in the typo3conf/ directory in order
60 to prevent hundreds of temp_CACHED_* files that don't get cleaned up
61 automatically. From now on the option $TYPO3_CONF_VARS['EXT']['extCache'] can
62 only be set to 0 or 1.
66 -------------------------------------------------------------------------------
70 Other general improvements
71 -------------------------------------------------------------------------------
73 * New scheduler task to delete old data from tables
75 The scheduler task 'Table garbage collection' can be used to delete old data
76 from growing tables like log tables on a regular basis. Additional tables that
77 can be cleaned up must be registered in $TYPO3_CONF_VARS['SC_OPTIONS']
78 ['scheduler']['tasks']['tx_scheduler_TableGarbageCollection']['options']
79 ['tables'] with its table name and a field. After that they can
80 be selected in the scheduler task.
83 * New scheduler task to delete old files from fileadmin trash directories
85 The scheduler task 'Fileadmin recycler garbage collection' can be used to
86 definitely delete old files from _recycler_ directories. When a _recycler_
87 directory exists within the path of a file to delete via the File module, the
88 file is not actually deleted, but stored in the _recycler_ folder.
89 This new task now deletes all files insider _recycler_ folders that have been
90 moved there for longer than a given number of days.
92 * New option to customize the cookie names used by TYPO3
94 It is now possible to customize the cookie names used by TYPO3 to avoid clashes
95 when running more installations on the same domain. The names used can be con-
97 $TYPO3_CONF_VARS['FE']['cookieName'] and
98 $TYPO3_CONF_VARS['BE']['cookieName'].
101 -------------------------------------------------------------------------------
103 -------------------------------------------------------------------------------
106 -------------------------------------------------------------------------------
110 Other improvements to the Backend
111 -------------------------------------------------------------------------------
115 -------------------------------------------------------------------------------
117 -------------------------------------------------------------------------------
121 Other Improvements in the Skin / Backend UI
122 -------------------------------------------------------------------------------
126 -------------------------------------------------------------------------------
127 Administration / Customization
128 -------------------------------------------------------------------------------
133 -------------------------------------------------------------------------------
137 -------------------------------------------------------------------------------
139 -------------------------------------------------------------------------------
142 -------------------------------------------------------------------------------
146 Although we do our best to make adjustments in a backwards-compatible manner,
147 we needed to break backwards compatibility at a few places. In order to see if
148 you are affected and how the issues can be solved, please read our notes on
151 http://forge.typo3.org/projects/typo3v4-mvc/wiki/Breaking_Changes
154 -------------------------------------------------------------------------------
158 Extension Development
159 -------------------------------------------------------------------------------
163 TypoScript / Frontend
164 -------------------------------------------------------------------------------
169 -------------------------------------------------------------------------------
173 -------------------------------------------------------------------------------
175 -------------------------------------------------------------------------------
179 -------------------------------------------------------------------------------
181 -------------------------------------------------------------------------------
183 * Switch to caching framework
185 The caching framework is enabled by default and the old database-only driven
186 caching is removed. This opens a lot of options for administrators to optimize
187 cache deployment and performance. Details about configuration options and usage
188 in own extensions can be found at http://wiki.typo3.org/Caching_framework.
191 * Caching framework: db backend uses own table namespace
193 The database backend must not define own tables and table definitions anymore.
194 Cache tables and table layout of the database backend will created by the
195 caching framework when needed.