Only shows 10 of 70+ files?
Veggieryan - March 13, 2009 - 20:24
| Project: | File Server |
| Version: | 6.x-1.0-alpha3 |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | won't fix |
Jump to:
Description
There seems to be a bug in the display of existing files.
This is in a og_vocab category.
User uploaded 70+ files, everything worked great, but only 10 files show in the listing in both cyberduck and the web browser.
All 70+ files show up in the file browser, file gallery and drupal node views.
These are large files 2-4mb in size.
Is there some php setting I should check?

#1
Same here.
Only the 10 first files appear in distant browsing.
Not usable until fixed.
#2
hints: this number seems to match the 10 filles/page display in Drupal - only the fist page shows up
#3
I modified the Views to not limit the number of post per page.
Still the same: no way to see more than 10 files per directory
#4
Seems a great module, but not much responsive community...
#5
Please help!
Thank you
#6
Is FileServer designed for a maximum of 10 files per folder ?
Is this an erratic bug that was only noticed twice or the module is actually in use for more than 10 files for only 2 installs?
Is this module maintained?
I know that we should be lucky for everything that works in alpha versions, but all the File Framework familly is a really great and deadly awaited set of modules.
Thanks for developping this great project,
#7
Please, can someone look at this issue?
I looked in the module's files to find a place where the number "10" would appear... no success!
This is really the only one problem I have with this so great module.
Who do not dream to be able to sync files between a Drupal site and desktops?
#8
This is not File Server's or DAV's fault, but a problem with Taxonomy's taxonomy_select_nodes (see http://drupal.org/node/389598), which, unfortunately, seems still open (patches don't pass testing).
A quick workaround that may work for someone, but not everybody: go to Content Management -> RSS Publishing and increase the number of items in each feed. This will allow you to show up to 50 files through WebDav.
A dirtier fix, which keeps the number of items in a feed untouched and allows you to show a bigger number of files, is as follows: edit taxonomy.module and change line 1141 from
$result = db_query_range($sql, $args, 0, variable_get('feed_default_items', 10));to
$result = db_query_range($sql, $args, 0, 1000);or whatever number is good for you. Yet another possibility may be to manually set the variable 'feed_default_items' in the database (untested).
I'll set this as 'won't fix', since it's not a bug of this module.
#9
Thank you so much for taking care!
The problem has gone
I applied the change in the module. I read the thread about patching this core module, but I did not really understand why such a limit exists, and if justified, why it would be insane to simply increase the value of 10 to something more usable.
This means that File Taxonomy Server server is even better that I thgought... When the MIME problem will be solved, I'll have a spendid DMS. (http://drupal.org/node/537358)