TYPO3 / CmsComposerInstallers

TYPO3 CMS Composer Installer
GNU General Public License v2.0
58 stars 39 forks source link

Replace index.php symlink with require #71

Closed rvock closed 7 years ago

rvock commented 7 years ago

Currently a symlink of index.php is created which points to the index.php in typo3-cms.

There are some hosts (e.g. DomainFactory) which generate a 500 Server Error for symlinked PHP files. The simple workaround is to use a require within a normal PHP file:

<?php
require '../typo3_src/index.php';
helhum commented 7 years ago

This has been prepared with version 1.4 and will be fixed with TYPO3 9 (TYPO3 has become responsible for setting up the web directory)

However you can require helhum/typo3-composer-setup (https://github.com/helhum/typo3-composer-setup) for current typo3 version versions to already achieve the same now.