tbrehm
2008-04-22 0c0d284f099e09410d0998c092e03b8d1f207416
- Detect older ISPConfig versions in installer and stop if ISPConfig 2 is found.
2 files modified
9 ■■■■■ changed files
install/install.php 4 ●●●● patch | view | raw | blame | history
install/update.php 5 ●●●●● patch | view | raw | blame | history
install/install.php
@@ -81,6 +81,10 @@
    die("ERROR: Cannot write to the directory ".dirname(ISPC_LOG_FILE).". Are you root or sudo ?\n\n");
}
if(is_dir('/root/ispconfig') || is_dir('/home/admispconfig')) {
    die('This software can not be installed on a server wich runs ISPConfig 2.x.');
}
//** Select the language
$conf['language'] = $inst->simple_query('Select language', array('en','de'), 'en');
install/update.php
@@ -53,6 +53,11 @@
//** Installer/updater logfile
define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log');
//** Check for ISPConfig 2.x versions
if(is_dir('/root/ispconfig') || is_dir('/home/admispconfig')) {
    die('This software can not be installed on a server wich runs ISPConfig 2.x.');
}
//** Get distribution identifier
$distname = get_distname();