[TYPO3-english] symbolic links - symlinks

bernd wilke t3ng at bernd-wilke.net
Wed Mar 26 14:00:49 CET 2014


Am 26.03.14 13:37, schrieb Peder Høy Kristensen:
> In the guide ‘TYPO3-v6-2-whats-new.pdf’ it says:
>
> The following symbolic links must exist:
> typo3_src
> typo3
> index.php
> (points to TYPO3 source directory) (points to directory: typo3_src/typo3) (points to 
le: typo3_src/index.php)
>
> How do I create those symlinks on my webproviders server? It’s a Linux server. I have FTP access to the server.

if you have the possibility to execute shell-commands from PHP you may 
write a litte php-programm, upload and execute it:

<?php
exec('ln -s ../typo3_src-6.2.0 typo3_src');
exec('ln -s typo3_src/index.php index.php');
exec('ln -s typo3_src/typo3 typo3');
exec('cp typo3_src/_.htaccess .htaccess');
?>


you might modify the script from http://pi-phi.de/241.html?L=1 which is 
not ready for 6.2 yet.

bernd
-- 
http://www.pi-phi.de/cheatsheet.html


More information about the TYPO3-english mailing list