cfconsultancy

Results 3 comments of cfconsultancy

Solved by using the extension=php_fileinfo.dll in php.ini But then a few notices will appear used the fix upload.php after that the following notices appear PHP Notice: Undefined variable: storeFolder in...

see https://github.com/trippo/ResponsiveFilemanager/issues/694

Fix 8.1 ***\filemanager\include\php_image_magician.php on line 486 and 487 find ``` $cropStartX = $cropArray['x']; $cropStartY = $cropArray['y']; ``` change to ``` $cropStartX = (int)$cropArray['x']; $cropStartY = (int)$cropArray['y']; ```