I upgraded from 4.7 to 5.14 to 6.8 (well, trying to anyway for over 12 months now, but modules just are not ready even now!)
Spam module does not work at all, and I applied numerous patches that are available as attachments on the issues forum.
But admin/settings/spam/filters in Overview shows the "URL Filter" (in fact, it shows it even after I disabled the Spam URL Filter module, which may be another issue, but not important now).
But there is no tab for "URL Filter", no way to set its parameters.
I looked at url.module, it seemed much different from node_age.module - url.module has no _menu function, no _admin_settings function.
Is the URL filter in 6.x not ready for even testing right now?
Could this be a database-related problem - I noticed that some modules had trouble handling a 4.7 to 5.x to 6.x upgrade with old tables causing strange behavior. But given the difference in url.module and node_age.module, maybe it is not a database issue this time.
File has this at top: // $Id: url.module,v 1.1.2.4.2.1 2008/12/25 05:42:11 jeremy Exp $
Similar non-working issue for Custom Filters - though the tab is seen, when I click on "create custom filter" I get a message "Failed to load custom filter.".
Comments
Comment #1
bwooster47 commentedI ended up hacking url.module - I need url_limit_total to be "1" (so even 2 URLs in a post will be marked as spam).
Looking at the "variable" table in the database, I saw no variable with that name (probably because there was no install for that variable)?
So I changed the module itself, changed the call to be variable_get('url_limit_total', 1) in two places (the 1 was 10 in the original code).
Comment #2
naught101 commentedDuplicate of #361547: How to set the maximum number of URLs?