after numerous problems I was able to install version 6.018 over version 6.15. I had to deactivate:
/*
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key][stripslashes($k)] = $v;
$process[] = &$process[$key][stripslashes($k)];
} else {
$process[$key][stripslashes($k)] = stripslashes($v);
}
}
}
unset($process);
}
*/
In the file inc/inc.Settings.php
Now I have this problem when I insert a file, how do I fix it?
You are missing the imagick extension. Btw, Windows is not officially supported. That may be the reason for some of your problems.