Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

Could anyone advise which Apache module is required by Drupal system?

share|improve this question

3 Answers

The most common enabled module (or installed if not available) is mod_rewrite which helps your site have nice and clean urls. But even this isn't really required ... you can live without it but your site won't have nice links instead they will look like : www.example.com?q=node/12345. If PHP is working than that means that you have the necessary config to run Drupal.

share|improve this answer

I think you really only need (these are PHP extensions): mbstring curl gd mysql mcrypt jpeg png xml

...but not completely sure. my configuration above suits me fine. not sure if it can be of any help. If you using php as a module in apache, you can eliminate the fastcgi part.

share|improve this answer
2  
The first items you have listed are PHP extensions, not Apache extensions, correct? – Lester Peabody Feb 2 '12 at 13:32
yes, that's right – David Carter Feb 8 '12 at 7:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.