How to find big size files in file galleries ?
Hi Bernard Sfez / Tiki Specialist
You could do it in the database i think, the file size is recorded in there, so something like this should work:
Copy to clipboard
SELECT `fileId`, `galleryId`, `name`, `filename`, `filesize`, `filetype`, `user` FROM `tiki_files` ORDER BY `filesize` DESC LIMIT 0,1000;
Any help?