Closed (fixed)
Project:
Web File Manager
Version:
4.7.x-1.6
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Feb 2007 at 22:07 UTC
Updated:
23 Feb 2007 at 19:33 UTC
Followed README steps to the letter, unable to locate any links to admin/settings/webfm but was able to go to that path. However, page displays nothing but "settings" in bold and two buttons for Save and Reset.
Drupal 4.7.6
Apache 2.0.55
PHP 4.4.2-1.1
5.0.24a-Debian_9-log
Also, in the README, lines 38-39 say to create the two directories within the 'File system path' directory, and my assumption is that these directories are parallel to one another. Is this correct?
Comments
Comment #1
robmilne commentedI cannot explain why you don't see the settings page properly - not an issue that has come up before. Try flushing the various caches as well as the menu cache (go to admin/menu to renew menu cache). You might want to try uninstalling and reinstalling the module.
The two directories are parallel (one is db controlled, the other is not - don't put one into the other).
Comment #2
silurius commentedThank you for the super-quick response. I unchecked the module, saved modules, uploaded the webfm dir back into the modules directory (overwriting everything), refreshed modules, rechecked webfm, saved, and ran update.php just for the heck of it. Problem unchanged. Also, before I saw your response and did these things (but after the original problem) I noticed that when I navigated from the admin area back to the front page, I got an error I hadn't seen before:
user warning: Table 'registrar.drupal_webfm_file' doesn't exist query: SELECT * FROM drupal_webfm_file f INNER JOIN drupal_webfm_attach a ON f.fid = a.fid WHERE a.nid = 1 ORDER BY a.weight in /var/www/examplesite/includes/database.mysql.inc on line 121.Comment #3
robmilne commentedDoes drupal work without webfm (the 'examplesite' in the url has me concerned)? If you have access to mysql (either phpmyadmin or cmdline), does the webfm_file table exist? If not then the install failed and you may have to build the webfm tables by hand.
Comment #4
silurius commentedOh yes the site does actually work fine outside of wfm. It's practically brand-new as far as the database go. I actually only edited that text in my post above (but neglected another edit - see if you can find Waldo).
And no, that table did not get created. That must be the cause. Does this SQL look correct for manually setting that up (grabbed from webfm.install & inserted my own table prefix)?
Comment #5
silurius commentedI mean:
Comment #6
silurius commentedWhoops, replacing original title (treated this as a standard Drupal forum post).
Comment #7
robmilne commentedIf your mysql is 4.1:
If the db is 4.0 leave out the 'DEFAULT CHARSET=UTF8' bits.
The other alternative is to remove all references to webfm in the system table and try the install file again.
Comment #8
silurius commentedAha, for whatever reason, dropping the tables, deleting the references from the system table, and re-enabling the module did the trick. Oh and my MySQL is 5.0.24a-Debian_9-log.
Comment #9
robmilne commented