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 />';
}
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to