[TYPO3-english] Re: Path /index.php is not a link. How do I fix?

Christian Hackl hackl.chris at googlemail.com
Wed Apr 4 16:57:01 CEST 2018


delete e. g. httpdocs/index.php file...

then create a symlink to the typo3 src like:

https://docs.typo3.org/typo3cms/InstallationGuide/stable/singlehtml/


or if you haven't access to console, you can do it with php like:

<?php

unlink("typo3");
unlink("typo3_src");
unlink("index.php");

echo 'Create Symlinks: <br />';

if(symlink ('typo3_src-6.2.26/','typo3_src')) {
    echo 'typo3_src ok <br />';

    if(symlink ('typo3_src/index.php','index.php')) {
    	echo 'index.php ok <br />';
	} else {
	    echo 'index.php not ok <br />';
	}

	if(symlink ('typo3_src/typo3','typo3')) {
		echo 'typo3 ok <br />';
	} else {
	    echo 'typo3 not ok <br />';
	}

} else {
    echo 'typo3_src not ok <br />';
}


More information about the TYPO3-english mailing list