I can't access the AntiSpam config page. It just redirects me back to the main config page. I disabled antispam until I could get an API key, now I can't configure it when it's enabled again.

Comments

Jody Lynn’s picture

Status: Active » Postponed (maintainer needs more info)

Are you attempting to go to admin/config/antispam you mean?

Do you have permission to administer the module? Have you tried clearing your cache?

lance.gliser’s picture

The latest version, 7.x-1.5 has this menu item declaration:

  $items['admin/config/antispam'] = array(
    'title' => t('AntiSpam'),
    'description' => t('Use the anti-spam service to protect your site from spam.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array('antispam_settings_form'),
    'access arguments' => array('administer antispam settings'),
    'file' => 'antispam.admin.inc',
    'type' => MENU_LOCAL_TASK,
  );

The type should be MENU_NORMAL_ITEM, and you'll have to pick a subsection, or create your own. Something like development, metadata, or etc.

lance.gliser’s picture

Status: Postponed (maintainer needs more info) » Needs review
marcoscano’s picture

Version: 7.x-1.5 » 7.x-1.x-dev
Issue summary: View changes
Status: Needs review » Fixed

This is not an issue anymore in the -dev version, that path does not exist since this commit got in. Please test with the -dev version.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.