Menu

#537 Error add Document

6.0.17
open
nobody
None
bug
2022-06-14
2022-06-14
No

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?

1 Attachments

Discussion

  • Uwe Steinmann

    Uwe Steinmann - 2022-06-14
     
  • Uwe Steinmann

    Uwe Steinmann - 2022-06-14

    You are missing the imagick extension. Btw, Windows is not officially supported. That may be the reason for some of your problems.

     

Log in to post a comment.