+ Antworten
Ergebnis 1 bis 10 von 10

Thema: Internal Server Error bei Links

  1. #1
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard Internal Server Error bei Links

    Hallo zusammen!

    Ich bin am verzweifeln!
    Lese mich hier durch hunderte Beiträge die ein ähnliches Problem beschreiben, bisher aber ohne Erfolg bei mir!

    Mein Problem:
    Meine Seite geht ganz normal auf, wenn ich aber einen Link zu einem Beitrag anklicke (Oder auch Weiterlesen-Links), dann kommt immer:
    Internal Server Error

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

    Please contact the server administrator, [no address given] 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 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2.2.16 Server at MEINE-DOMAIN.de Port 80
    Ich kapiers nicht mehr!!!

    Hinweise:
    Server bei Domain-Factory
    PHP Version: 5-53STABLE-STANDARD
    MySQL: 5.1.45

    Installiert in einem Unterverzeichnis: MEINE-DOMAIN.de/testjoomla
    Suchmaschinenfreundliche URLS sind aktiv

    Hier meine .htaccess
    Code:
    ##
    # @version $Id: htaccess.txt 14401 2010-01-26 14:10:00Z louis $
    # @package Joomla
    # @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
    # @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    # Joomla! is Free Software
    ##
    
    
    #####################################################
    #  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
    #
    # The line just below this section: 'Options +FollowSymLinks' may cause problems
    # with some server configurations.  It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file.  If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url's.  If they work,
    # it has been set by your server administrator and you do not need it set here.
    #
    #####################################################
    
    ##  Can be commented out if causes errors, see notes above.
    Options +FollowSymLinks
    
    #
    #  mod_rewrite in use
    
    RewriteEngine On
    
    ########## Begin - Rewrite rules to block out some common exploits
    ## If you experience problems on your site block out the operations listed below
    ## This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    ## Deny access to extension xml files (uncomment out to activate)
    #<Files ~ "\.xml$">
    #Order allow,deny
    #Deny from all
    #Satisfy all
    #</Files>
    ## End of deny access to extension xml files
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
    # Block out any script trying to base64_encode crap to send via URL
    RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
    # Block out any script that includes a ********** tag in URL
    RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    # Block out any script trying to modify a _REQUEST variable via URL
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    # Send all blocked request to homepage with 403 Forbidden error!
    RewriteRule ^(.*)$ index.php [F,L]
    #
    ########## End - Rewrite rules to block out some common exploits
    
    #  Uncomment following line if your webserver's URL
    #  is not directly related to physical file paths.
    #  Update Your Joomla! Directory (just / for root)
    
    # RewriteBase /
    
    
    ########## Begin - Joomla! core SEF Section
    #
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !^/index.php
    RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
    RewriteRule (.*) index.php
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
    #
    ########## End - Joomla! core SEF Section

    Hoffentlich kann mir schnell jemand bei helfen!
    Geändert von Rambaldi (11.11.2010 um 22:12 Uhr)

  2. #2
    Gute Seele des Boards Avatar von Indigo66
    Registriert seit
    30.10.2007
    Ort
    München
    Beiträge
    10.687
    Bedankte sich
    338
    Erhielt 3.354 Danksagungen
    in 3.244 Beiträgen

    Standard

    Passiert das auch bei ausgeschalteten SEF?
    Wenn nicht, stimmt was mit der .htaccess nicht.

  3. #3
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    Habe die .htaccess nicht ohne Grund geschickt
    Liegt an Ihr, weiß nur net warum!

    Deinen Vorgeschlagenen Test habe ich grade mal gemacht! Und siehe da. Es geht!

    Nur mit SEF leider nimmer!

  4. #4
    --- Avatar von anka
    Registriert seit
    01.05.2008
    Ort
    Basel
    Beiträge
    9.077
    Bedankte sich
    342
    Erhielt 3.298 Danksagungen
    in 3.084 Beiträgen

    Standard

    Aendere diese Zeile in der .htaccess (Raute # am Anfang der Zeile löschen)

    Code:
     RewriteBase /testjoomla
    Häufige Fragen und Antworten zu Joomla: Joomla FAQ - Kleines Helferlein: Firebug
    Joomla braucht dich!

    Kein Support per PN


  5. Erhielt Danksagungen von:


  6. #5
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    Ein Traum!

    hat wunderbar funktioniert!
    Darf ich noch ne kurze Erklärung haben was ich damit änderte?
    Nur weil ich wissbegierig bin

  7. #6
    --- Avatar von anka
    Registriert seit
    01.05.2008
    Ort
    Basel
    Beiträge
    9.077
    Bedankte sich
    342
    Erhielt 3.298 Danksagungen
    in 3.084 Beiträgen

    Standard

    Seeehr vereinfacht erklärt: damit teilst du dem System mit, wo deine Joomla-Installation erreichbar ist .
    Häufige Fragen und Antworten zu Joomla: Joomla FAQ - Kleines Helferlein: Firebug
    Joomla braucht dich!

    Kein Support per PN


  8. Erhielt Danksagungen von:


  9. #7
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    Ok, danke!
    Leider hatte ich voreilig gesagt es geht

    Habe vergessen wieder die SEF-Funktion zu aktivieren!

    Und nu: Wieder das selbe spiel :(

  10. #8
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    Ich weiß nicht warum, aber hiermit kam ich dann doch weiter:

    .htaccess
    Code:
    ##
    # @version $Id: htaccess.txt 14401 2010-01-26 14:10:00Z louis $
    # @package Joomla
    # @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
    # @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
    # Joomla! is Free Software
    ##
    
    
    #####################################################
    #  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
    #
    # The line just below this section: 'Options +FollowSymLinks' may cause problems
    # with some server configurations.  It is required for use of mod_rewrite, but may already
    # be set by your server administrator in a way that dissallows changing it in
    # your .htaccess file.  If using it causes your server to error out, comment it out (add # to
    # beginning of line), reload your site in your browser and test your sef url's.  If they work,
    # it has been set by your server administrator and you do not need it set here.
    #
    #####################################################
    
    ##  Can be commented out if causes errors, see notes above.
    Options +FollowSymLinks
    
    #
    #  mod_rewrite in use
    
    RewriteEngine On
    
    ########## Begin - Rewrite rules to block out some common exploits
    ## If you experience problems on your site block out the operations listed below
    ## This attempts to block the most common type of exploit `attempts` to Joomla!
    #
    ## Deny access to extension xml files (uncomment out to activate)
    #<Files ~ "\.xml$">
    #Order allow,deny
    #Deny from all
    #Satisfy all
    #</Files>
    ## End of deny access to extension xml files
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
    # Block out any script trying to base64_encode crap to send via URL
    RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
    # Block out any script that includes a ********** tag in URL
    RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
    # Block out any script trying to set a PHP GLOBALS variable via URL
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    # Block out any script trying to modify a _REQUEST variable via URL
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    # Send all blocked request to homepage with 403 Forbidden error!
    RewriteRule ^(.*)$ index.php [F,L]
    #
    ########## End - Rewrite rules to block out some common exploits
    
    #  Uncomment following line if your webserver's URL
    #  is not directly related to physical file paths.
    #  Update Your Joomla! Directory (just / for root)
    
     RewriteBase /testjoomla
    
    
    ########## Begin - Joomla! core SEF Section
    #
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !^/index.php
    RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
    RewriteRule (.*) index.php
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
    #
    ########## End - Joomla! core SEF Section

  11. #9
    --- Avatar von anka
    Registriert seit
    01.05.2008
    Ort
    Basel
    Beiträge
    9.077
    Bedankte sich
    342
    Erhielt 3.298 Danksagungen
    in 3.084 Beiträgen

    Standard

    Das ist doch das, was ich geschrieben habe^^...
    Häufige Fragen und Antworten zu Joomla: Joomla FAQ - Kleines Helferlein: Firebug
    Joomla braucht dich!

    Kein Support per PN


  12. Erhielt Danksagungen von:


  13. #10
    Neu an Board
    Registriert seit
    21.06.2010
    Beiträge
    94
    Bedankte sich
    37
    Erhielt 2 Danksagungen
    in 2 Beiträgen

    Standard

    Ja, aber irgendwie hats vorhin nicht funktioniert!
    War wohl sonst was falsch bei mir

    DANKE jedenfalls

+ Antworten

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein