GetSimple Support Forum
Get Simple Installation "Internal Server Error" - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Installation & Setup (http://get-simple.info/forums/forumdisplay.php?fid=5)
+--- Thread: Get Simple Installation "Internal Server Error" (/showthread.php?tid=5058)



Get Simple Installation "Internal Server Error" - Nighteyes - 2013-08-12

Hello guys,

i have uploaded all files in this directory: rkn-immobilien.de/new
Now when i want to install the CMS i become this failure:

Internal Server Error

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

Please contact the server administrator, 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.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


All directories have CHMOD 755 and the files 644
my htaccess file is:

Code:
AddDefaultCharset UTF-8
Options -Indexes

# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
    Order allow,deny
    Deny from all
    Satisfy All
</Files>
<Files sitemap.xml>
        Order allow,deny
    Allow from all
    Satisfy All
</Files>

RewriteEngine on

# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase **REPLACE**

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]

My Provider is 1und1.de

I hope anyone can help me!

THX


RE: Get Simple Installation "Internal Server Error" - n00dles101 - 2013-08-12

seems to be working fine now.

this line.
RewriteBase **REPLACE**

should be replaced with
RewriteBase '/new'


RE: Get Simple Installation "Internal Server Error" - shawn_a - 2013-08-12

Your server might now allow the options part


RE: Get Simple Installation "Internal Server Error" - Nighteyes - 2013-08-12

Thank you for your support.
It works fine Smile


RE: Get Simple Installation "Internal Server Error" - babbomanghi - 2013-09-25

Hello
i have a same message error but the configuration of the file htaccess is ok

the cms is istalled on hosting aruba with php 5.3 on subdirectory for test

AddDefaultCharset UTF-8
Options -Indexes

# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
Order allow,deny
Deny from all
Satisfy All
</Files>
<Files sitemap.xml>
Order allow,deny
Allow from all
Satisfy All
</Files>

RewriteEngine on

# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /test/db/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]

help me

thks


RE: Get Simple Installation "Internal Server Error" - shawn_a - 2013-09-25

Try commenting out the options -indexes part

Then the files part, process of elimination until the error goes away.