Themes werden nicht angezeigt?
Eingetragen von aptana (11)
am 25.03.2011 - 22:14 Uhr in
am 25.03.2011 - 22:14 Uhr in
Hallo,
ich habe Drupal nicht das erste mal in Verwendung aber dieses Problem ist mir neu.
Also ich ändere das Standart Theme oder wähle eins der mitgelieferten aus doch im Frontend wird es nicht angezeigt. Ich sehe nur Text und Formulare.
Die Servereinstellungen und die CHMODs sollten auch stimmen da ich Sie mit einer funktionierenden Installation verglichen habe.
Auch eine komplette neu-installation brachte leider nicht den gewünschten Erfolg.
Ich hoffe das Ihr eine Ahnung habt woran das liegen könnte das die Themes zwar übernommen aber nicht angezeigt werden.
Danke schon mal Aptana..
Anhang | Größe |
---|---|
vor.jpg | 62.64 KB |
speichern.jpg | 99.71 KB |
nach.jpg | 53.92 KB |
- Anmelden oder Registrieren um Kommentare zu schreiben
Ich schon wieder. Ich denke
am 25.03.2011 - 22:33 Uhr
Ich schon wieder.
Ich denke das ich das Problem gefunden habe, nur verstehe ich nicht warum es bei "meinem" Server besteht.
Zur Lösung muss ich die .htaccess im Ordner
/sites/default/files
löschen.
Auch für die Installation musste ich die .htaccess im root löschen, soweit nicht das Problem aber die Datei hat hat ja ihre Sicherheitsberechtigung da zu sein.
Wenn Ihr also wisst warum mein Server (Celeros) nicht mit den Standard .htaccess zurecht kommt dann würde ich mich sehr über einen Tipp freuen.
Ohne die .htaccess-Datei hast
am 25.03.2011 - 23:57 Uhr
Ohne die .htaccess-Datei hast du keine CleanURLs
Vielleicht kommt dein Server mit bestimmten Anweisungen in der htaccess nicht zurecht. Gerade die Options (
Options +FollowSymLinks
undOptions -Indexes
) machen häufiger mal Probleme. Kannst ja mal versuchen, die .htaccess-Dateien mit rein zu nehmen und die Options auszukommentieren.Danke Dir schon mal für Deine
am 27.03.2011 - 23:11 Uhr
Danke Dir schon mal für Deine Antwort.
Ich habe gerade noch einmal die .htaccess hoch geladen und dann daran rum gefummelt, leider ohne Erfolg.
Egal was ich auskommentiere oder lösche, die Seite gibt den internal Fehler 500 aus.
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.
# Options -Indexes
# Follow symbolic links in this directory.
# Options +FollowSymLinks
# Multiviews creates problems with aliased URLs and is not needed for Drupal.
Options -Multiviews
# Make Drupal handle any 404 errors.
ErrorDocument 404 /index.php
# Force simple error message for requests for non-existent favicon.ico.
<Files favicon.ico>
# There is no end quote below, for compatibility with Apache 1.3.
ErrorDocument 404 "The requested file favicon.ico was not found.
</Files>
# Set the default handler.
DirectoryIndex index.php index.html index.htm
# Override PHP settings that cannot be changed at runtime. See
# sites/default/default.settings.php and drupal_initialize_variables() in
# includes/bootstrap.inc for settings that can be changed at runtime.
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_flag magic_quotes_gpc off
php_flag magic_quotes_sybase off
php_flag register_globals off
php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation off
</IfModule>
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# Enable expirations.
ExpiresActive On
# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600
<FilesMatch \.php$>
# Do not allow PHP scripts to be cached unless they explicitly send cache
# headers themselves. Otherwise all scripts would have to overwrite the
# headers set by mod_expires if they want another caching behavior. This may
# fail if an error occurs early in the bootstrap process, and it may cause
# problems if a non-Drupal PHP file is installed in a subdirectory.
ExpiresActive Off
</FilesMatch>
</IfModule>
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# Block access to "hidden" directories whose names begin with a period. This
# includes directories used by version control systems such as Subversion or
# Git to store control files. Files whose names begin with a period, as well
# as the control files used by CVS, are protected by the FilesMatch directive
# above.
#
# NOTE: This only works when mod_rewrite is loaded. Without mod_rewrite, it is
# not possible to block access to entire directories from .htaccess, because
# <DirectoryMatch> is not allowed here.
#
# If you do not have mod_rewrite installed, you should remove these
# directories from your webroot or otherwise protect them from being
# downloaded.
RewriteRule "(^|/)\." - [F]
# 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/...)
# uncomment the following:
# RewriteCond %{HTTP_HOST} !^www\. [NC]
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [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/...)
# uncomment the following:
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
# RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
# Modify the RewriteBase if you are using Drupal in a subdirectory or in a
# VirtualDocumentRoot and the rewrite rules are not working properly.
# For example if your site is at http://example.com/drupal uncomment and
# modify the following line:
# RewriteBase /drupal
#
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
# Pass all requests not referring directly to files in the filesystem to
# index.php. Clean URLs are handled in drupal_environment_initialize().
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
# Rules to correctly serve gzip compressed CSS and JS files.
# Requires both mod_rewrite and mod_headers to be enabled.
<IfModule mod_headers.c>
# Serve gzip compressed CSS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.css $1\.css\.gz [QSA]
# Serve gzip compressed JS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
# Serve correct content types, and prevent mod_deflate double gzip.
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
<FilesMatch "(\.js\.gz|\.css\.gz)$">
# Serve correct encoding type.
Header append Content-Encoding gzip
# Force proxies to cache gzipped & non-gzipped css/js files separately.
Header append Vary Accept-Encoding
</FilesMatch>
</IfModule>
</IfModule>
# $Id: .htaccess,v 1.111 2010/11/23 02:59:05 dries Exp $
so sieht die Datei jetzt aus und es funktioniert nichts wenn ich Sie lösche oder leere dann geht alles.
Ich habe alles mögliche in der Datei auskommentiert und auch mal gelöscht dennoch funktioniert die Seite nur wenn ich die Datei leere oder lösche :(
Ich würde die .htaccess zur sicherung der Seite gerne nutzen aber wenn Sie einfach alles blockiert dann ist mir das etwas zu sicher ;)
So ich habe noch einmal etwas
am 28.03.2011 - 22:12 Uhr
So ich habe noch einmal etwas am Server herumgespielt und nun scheint es zu gehen. (siehe Bild, auf was die Pfeile zeigen habe ich aktiviert)
danach habe ich die .htaccess aus dem Installationspaket hoch geladen und siehe da ich habe immer noch eine Seite ;)
im Ordner
/sites/default/files
ist bis dato, trotz Theme-Änderungen keine erneute .htaccess erschienen und es lässt sich auch ohne Protest alles +über das Backend ändern so wie es ja auch sein sollte.
PS: der Sceenshot stammt aus einem Parallels Confixx
PPS: kann als gelöst markiert werden auch wenn es keine eindeutige Lösung ist.
Hallo, ich habe gerade exakt
am 25.05.2012 - 08:30 Uhr
Hallo, ich habe gerade exakt das gleiche Problem. Kannst du mir noch sagen, um welche Einstellungen es sich handelt? (Das Bild mit den Pfeilen fehlt)
Danke
Erstelle am besten ein neues
am 25.05.2012 - 08:38 Uhr
Erstelle am besten ein neues Thema und beschreibe dort dein Problem.