Skip to content

Instantly share code, notes, and snippets.

View baschny's full-sized avatar

Ernesto Baschny baschny

View GitHub Profile
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.
@baschny
baschny / INSTALL.md
Last active December 28, 2015 12:39
TYPO3 INSTALL.md work in progress for 6.2

INSTALLING TYPO3

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
@baschny
baschny / README.md
Last active December 28, 2015 12:38
TYPO3 README.md work in progress for 6.2

TYPO3 CMS

TYPO3 is an PHP based open source web content management system released under the GNU GPL. TYPO3 is copyright (c) 1999-2013 by Kasper Skaarhoj.

This document provides a basic introduction to TYPO3.

Getting Started

@baschny
baschny / AdditionalConfiguration.php
Created November 16, 2013 12:47
TYPO3 CMS AdditionalConfiguration.php adaptations for easy use of "git bisect". If you want to use "git bisect" on 6.2 development, you end up having to change your configuration depending if certain features are in or not. This addition to AdditionalConfiguration.php help automating these changes for you at runtime depending if certain commit i…
<?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);
}