We have a lot of modules installed, but the Save Configuration button is not showing up. I looked at the top/bottom, scrolled left/right, but it's just not showing.

I am logged in as admin.

Thanks

Comments

savithac’s picture

Better way to install new drupal. Install "module filter" module.This module is used to filter all the modules.
Save Configuration button appear in left side of admin/modules.
After enable other modules in one by one.

homersheineken’s picture

We do have Module Filter installed. The button show doesn't show on the left side.

savithac’s picture

Can you give a bit more detail... Including screen short?
say your drupal 6.-_ _ version?

homersheineken’s picture

Thanks

This is the bottom of the module page in Drupal 6.21

http://readersupportednews.org/images/stories/article_imgs5k/5468.toc%20...

I've scrolled left/right/top/bottom. We did have the Module Filter installed, but turned it off to see if the button would show. It doesn't when it's enabled either.

TelFiRE’s picture

This was never solved? How disheartening.

LucasDailey’s picture

I couldn't find the button either, but I did after reading this post. Mine was hiding at the bottom of the middle list of modules (its sort of a menu), NOT at the bottom of the page below the right side list of modules. With the theme you're using I can't tell, but that list rollout on the left might have it.

DeejayM’s picture

I know this is an old thread but it hasn't got a definitive answer, so I thought I'd add my observations.

I found this post as I couldn't see my 'Save configuration' button either, and also have the 'Module filter' enabled.

Using view source I can see the 'Save configuration' button is being rendered and using CSS I can surface it with something like.

html.js #module-filter-submit input {
    position: fixed;
    bottom: 0;
    left: 30px;
}

Which will keep the button on view on the bottom left of your screen.

cveitch’s picture

Thank you DeejayM, I was able to sort this issue using your suggestion.