fix path for website installations

This commit is contained in:
Sarah Hoffmann
2016-03-16 20:02:09 +01:00
parent 4b46c73088
commit 4ea0074548

View File

@@ -710,14 +710,14 @@
fail("Target directory does not exist.");
}
@symlink(CONST_BasePath.'/website/details.php', $sTargetDir.'/details.php');
@symlink(CONST_BasePath.'/website/reverse.php', $sTargetDir.'/reverse.php');
@symlink(CONST_BasePath.'/website/search.php', $sTargetDir.'/search.php');
@symlink(CONST_BasePath.'/website/search.php', $sTargetDir.'/index.php');
@symlink(CONST_BasePath.'/website/lookup.php', $sTargetDir.'/lookup.php');
@symlink(CONST_BasePath.'/website/deletable.php', $sTargetDir.'/deletable.php');
@symlink(CONST_BasePath.'/website/polygons.php', $sTargetDir.'/polygons.php');
@symlink(CONST_BasePath.'/website/status.php', $sTargetDir.'/status.php');
@symlink(CONST_InstallPath.'/website/details.php', $sTargetDir.'/details.php');
@symlink(CONST_InstallPath.'/website/reverse.php', $sTargetDir.'/reverse.php');
@symlink(CONST_InstallPath.'/website/search.php', $sTargetDir.'/search.php');
@symlink(CONST_InstallPath.'/website/search.php', $sTargetDir.'/index.php');
@symlink(CONST_InstallPath.'/website/lookup.php', $sTargetDir.'/lookup.php');
@symlink(CONST_InstallPath.'/website/deletable.php', $sTargetDir.'/deletable.php');
@symlink(CONST_InstallPath.'/website/polygons.php', $sTargetDir.'/polygons.php');
@symlink(CONST_InstallPath.'/website/status.php', $sTargetDir.'/status.php');
@symlink(CONST_BasePath.'/website/images', $sTargetDir.'/images');
@symlink(CONST_BasePath.'/website/js', $sTargetDir.'/js');
@symlink(CONST_BasePath.'/website/css', $sTargetDir.'/css');