TYPO3 is an open source PHP based web content management system released under the GNU GPL. TYPO3 is copyright (c) 1999-2013 by Kasper Skaarhoj.
This document describes:
- System requirements for TYPO3
- Installation routine
| Press Release: TYPO3 CMS 6.2 LTS Released | |
| The next version of the TYPO3 CMS was released on March 25th, 2014: | |
| TYPO3 CMS 6.2 LTS. This is the second Long Term Support (LTS) release | |
| in the history of TYPO3 CMS. This release will be supported by the CMS | |
| team at least during the next three years. | |
| Since the last LTS (Version 4.5 in 2011) the TYPO3 community has | |
| released versions 4.6, 4.7, 6.0 and 6.1. |
| <?php | |
| # ... | |
| function isCommitIncluded($commit) { | |
| $cmd = sprintf('GIT_DIR=%s/.git git log -1 %s^..HEAD', PATH_site . 'typo3_src', $commit); | |
| $output = ''; | |
| exec($cmd, $output); | |
| return (count($output) > 0); | |
| } |