Skip to content
Michael Seevogel edited this page Mar 3, 2017 · 2 revisions

How to apply the patches to your TYPO3 Installation:



**1. Checkout the typo3_patches repository or download the repo as a tar/zip ball and extract it afterwards.**

Example:

cd ~
git clone https://github.com/ms217/typo3_patches.git

2. Switch into your root directory of your TYPO3 installation

3. Last step: Apply the patches

Examples:

Loop:

for i in $(ls ~/typo3_patches/4.5/*.diff); do patch -p1 < $i ; done

Single:
patch -p1 < ~/typo3_patches/4.5/cve-2016-5091.diff




In case that a patch is showing unwanted side-effects you can of course revert any applied patch.

Example: patch -R -p1 < ~/typo3_patches/4.5/cve-2016-5091.diff

Clone this wiki locally