Compare commits

...

3 commits

Author SHA1 Message Date
Sharon Rotgaizer d18fde669e
Merge a6781936da into a1ae0fa729 2024-05-07 10:31:35 +05:30
BANKA2017 a1ae0fa729
fix: #52 Does not respect directory tree while uploading a folder containing sub-folders (#1056) 2024-05-01 10:01:27 +05:30
Sharon Rotgaizer a6781936da
Fix ZIP viewer
Support Zip extension viewer for php versions 8.0.0 above.
2023-07-15 22:10:39 +03:00

View file

@ -958,7 +958,7 @@ if (!empty($_FILES) && !FM_READONLY) {
$targetPath = $path . $ds;
if ( is_writable($targetPath) ) {
$fullPath = $path . '/' . basename($fullPathInput);
$fullPath = $path . '/' . $fullPathInput;
$folder = substr($fullPath, 0, strrpos($fullPath, "/"));
if (!is_dir($folder)) {
@ -2692,22 +2692,23 @@ function fm_get_directorysize($directory) {
* @return array|bool
*/
function fm_get_zif_info($path, $ext) {
if ($ext == 'zip' && function_exists('zip_open')) {
$arch = @zip_open($path);
if ($arch) {
if ($ext == 'zip' && class_exists('ZipArchive')) {
$arch = new ZipArchive;
if ($arch->open($path)) {
$filenames = array();
while ($zip_entry = @zip_read($arch)) {
$zip_name = @zip_entry_name($zip_entry);
$zip_folder = substr($zip_name, -1) == '/';
$filenames[] = array(
'name' => $zip_name,
'filesize' => @zip_entry_filesize($zip_entry),
'compressed_size' => @zip_entry_compressedsize($zip_entry),
for($i = 0; $i < $arch->numFiles; $i++ ){
$stat = $arch->statIndex($i);
$zip_folder = substr($stat['name'], -1) == '/';
$filenames[] = array(
'name' => $stat['name'],
'filesize' => $stat['size'],
'compressed_size' => $stat['comp_size'],
'folder' => $zip_folder
//'compression_method' => zip_entry_compressionmethod($zip_entry),
//'compression_method' => $stat['comp_method'],
);
}
@zip_close($arch);
}
$arch->close();
return $filenames;
}
} elseif($ext == 'tar' && class_exists('PharData')) {