I have installed drupal 5.2, but whatever I try, when I want to go to te site, I get the following message:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@one.com 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.
I have gone to the url of my drupal site for the automatic configuration, but I get this error.
Then I've configured my default setting manually, same problem.
I created my database local, exported it and then imported it on my host to create the database, but still I get the same message.
Can anyone help me out?
thanks
Comments
I had the same problem and I
I had the same problem and I could solve it by removing the lines:
# Don't show directory listings for URLs which map to a directory.
Options -Indexes
# Follow symbolic links in this directory.
Options +FollowSymLinks
from .htaccess in the main-drupal-folder.
Maybe it helps you, too ;)
Is your installation in the
Is your installation in the root directory or in a subdirectory? Did you upload drupal in ascii or binary mode?
You may need to edit .htaccess depending on its location. Do not edit .htaccess prematurely, because if you do you may have to do another installation, especially if you remove lines.
can't configure drupal 5.2
My installation is in a subdirectory.
For one site, it is completely in a subdirectory, for another I've pasted de index.php file to the root.
can't configure drupal 5.2
the installation is in a subdirectory, for one website: de index.php is pasted to the root, for another website: everything is in a the subdirectory
Have you altered the
Have you altered the .htaccess file to indicate the base directory? it will be something like /subdomainname
Remove the # before the line, then upload and try.
still no succes
I still don't manage to configure it, despite changing and trying many things in the .htaccess file. I will paste the original .htaccess file here, perhaps telling me what rules I have to change ...
I have installed the drupal map in domain www.vosseslag.be in a map named drupal and would like to access it as drupal.vosseslag.be
Under here you can find the htaccess file, what lines do I need to change to what?
thanks
##
Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
"(\.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)|code-style\.p
l|Entries.*|Repository|Root|Tag|Template)$">
Order allow,deny
# Don't show directory listings for URLs which map to a directory.
Options -Indexes
# Follow symbolic links in this directory.
Options +FollowSymLinks
# Customized error messages.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.
# PHP 4, Apache 1.
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
# PHP 4, Apache 2.
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
# PHP 5, Apache 1 and 2.
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
# Requires mod_expires to be enabled.
# Enable expirations.
ExpiresActive On
# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600
# Do not cache dynamically generated pages.
ExpiresByType text/html A1
# Various rewrite rules.
RewriteEngine on
# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
#RewriteBase /drupal
# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]
# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]
# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
# $Id: .htaccess,v 1.81.2.2 2007/05/21 01:34:59 drumm Exp $
hi
i had pretty much the same problem but with another host. what i did was renamed the .htaccess to a.htaccess. then run the install script. worth a try if all else fails. :)