* Graham * Mowi7 The standard filelist is single folder
The scripts I gave can be converted to just list the files
but as they use javascript to sort and paginate the results the memory overhead could be enormous for large folders
so you are far better off either using separate filelists or moving all the files to one folder
2017-05-17 18:15 · (0)
* Mowi7 * Graham Are you there Mr Graham?
2017-05-17 14:38 · (0)
* Mowi7 * Graham i'm not talking about search, i mean pure filelist to display file but with multiple folders
2017-05-16 15:26 · (0)
* Graham * Mowi7 yes I created a couple of versions that that are multi folder search scripts but the can be adapted to just be a file list they have been tried with over 100 folders in the list
http://syntax.xtgem.com/manual/basics/xtscripts/default?func=search
http://syntax.xtgem.com/manual/basics/xtscripts/default?func=search_two
They take a bit of work to set up
2017-05-16 12:39 · (0)
* Mowi7 * Graham is there any any filelist that can list multiple folders?
2017-05-16 12:07 · (0)
* Mowi7 * maltefky there are too many empty pages in your site bro
2017-05-16 12:05 · (0)
* maltefky * Mowi7 If u need advanced filelist i shall give u see demo HERE
2017-05-10 11:43 (edited 2017-05-10 11:45 by maltefky ) · (0)
* Mowi7 * Mowi7 its not working bro
2017-05-10 10:14 · (0)
* Mowi7 * Graham how many folders can be included?
2017-05-10 10:07 · (0)
* Graham * Mowi7 You mean this ?
from here http://ggnnww.yn.lt/rof
<!--parser:xtscript-->
# Path to files folder
var $path_to_folder = /uploads

# this removes files with no extension
var $filter= *.*

# 0 for all items
var $number_of_items = 5

# un-encoded filelist template
var $filelist_template = <div style="border-bottom:1px solid;margin:1px;padding:1px"><img src="http://xtgem.com/images/icons/mimes/.file_type..png" alt="*" /><a href=".file_url."> .file_name_base_parsed.</a> <br />.file_size. .file_mime.</div>

# Process variables
var $filelist_template = call htmlspecialchars $val=$filelist_template 
if not $number_of_items
var $number_of_items = list.length-1
endif
<!--/parser:xtscript-->
<script type="text/javascript">
function shuffleArray(array) {
  for (var i = array.length - 2; i > 0; i--) {
    var j = Math.floor(Math.random() * (i + 1));
    var temp = array[i];
    array[i] = array[j];array[j] = temp;}
return array;}
var rof;
var list=[<xt:filelist folder="{_$$path_to_folder |}" template=" '{_$$filelist_template |}', " filter="{_$$filter|}"/>'dummy_entry'];
var list = shuffleArray(list);
for(var i=0;i<{_$$number_of_items |};i++){
document.getElementById("rof").innerHTML+=list[i];}
</script>

Copy code
2017-04-30 09:49 (edited 2017-04-30 09:53 by Graham ) · (0)

Online: Guests: 1