Ullas Prabhakar
Ullas Prabhakar

Reputation: 416

drupal internal server error

I had created a folder in my site, and uploaded drupal in it. But when I access it, the following error is coming

    Internal Server Error

 The server encountered an internal error or misconfiguration and was unable 
to complete your request.

 Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

 More information about this error may be available in the server error log.

Upvotes: 0

Views: 1212

Answers (2)

Spudley
Spudley

Reputation: 168685

Assuming you're trying to run Drupal for the first time (ie run the installer), have you followed the pre-install setup?

Here's Drupal's "Quick install guide for beginners": http://drupal.org/documentation/install/beginners

Since you've already uploaded the code and you have your domain set up, you can probably skip down to the big labelled "Create the configuration file and grant permissions".

The first thing in this section is to create your settings.php file. Drupal won't work without this. You also need to set its file permissions to that Drupal's installer can update it.

My guess is that this is why you're getting the error. Follow the instructions on the page I linked you to above and you should be okay.

You'll also need to have a database ready for use by Drupal. The Drupal installer will populate the DB tables, but you need to at least have the empty DB ready for it to use.

Hope that helps.

Upvotes: 1

Jeroen Baert
Jeroen Baert

Reputation: 1314

There are literally thousands of things that can be wrong

  • Do you have access to the webserver logs? Check /log/apache/error.log for errors.
  • Have you already configured drupal correctly? Normally, when you surf to the drupal root directory, you get presented with an installer message.
  • Does your server support PHP?

I'd recommend any of the following:

  • Checking that you meet the Drupal requirements
  • Re-uploading the whole Drupal folder
  • Testing the Drupal folder (is this a custom installation, or just straight from the drupal website?) on local LAMPP webserver.

Upvotes: 2

Related Questions