Login in Backend nicht möglich

Hallo Community, grüß euch. Heute habe ich die Community Edition installiert bzw. versucht. Habe die manuelle Installation gewählt, da das Script as irgendeinem Grund nicht starten wollte. Das check tool sagt, dass alles OK ist. ionCube ist installiert. wenn ich meine URL aufrufe wird der Shop angezeigt. wenn man dann allerdings /backen oder /backend/index.php dazu schreibt kommt folgender Fehler: The requested URL /backend was not found on this server. mit /engine wird man auf /backend weitergeleitet. Vielleicht kann mir einer helfen? Die Suchfunktion hat leider kein Ergebnis gebracht. Danke euch schonmal

Also den Shop kann ich bspw. gar nicht aufrufen :wink: Evtl. Fehler bei der Installation aufgetreten? Schonmal geschaut ob die Dateien alle da sind oder ob etwas ganz offensichtlich fehlt?

anscheinend hat dein Server kein mod_rewrite bzw. unterstützt die .htaccess-Datei nicht. was sagt denn deine HTACCESS ?

siehe auch : installation-einstieg-f9/installation-zum-xten-t1892.html#p10660

Erstmal vielen Dank für eure Infos. Mitlerweile bin ich durch den Link von mmb_info. Unter folgender URL komme ich nun ins backend. mod_rewrite wird unterstützt. Eine .htaccess Datei habe ich nicht auf dem Webspace angelegt. Muss ich eine solche anlegen? Wenn ja mit welchen Werten? Danke nochmals für eure Klasse Hilfe :thumbup:

[quote=„pharao50“] Muss ich eine solche anlegen? Wenn ja mit welchen Werten? [/quote] so ganz allgemiein kann man das nicht beantworten, manche Hoster setzen eine voraus oder du erstellst halt eine wenn du gewisse Setting wie Komprimierung / oder eine Weiterleitung der Site oder eben diese Rewrites weiter fein"tunen" willst siehe auch hier : http://www.freewebmasterhelp.com/tutorials/htaccess/ oder GOOGLE :slight_smile: meine sieht in etwa so aus, da hab ich etwas dran geschraubt bis ich auch mit der Performance zufrieden war. Ob das der Weisheit letzter Schluss ist kann ich nicht sagen. Bei mir und dem Webspace passt das. [code] DirectoryIndex index.php DirectoryIndex shopware.php # FileETag MTime Size FileETag none
Deny from all

SetOutputFilter DEFLATE
RewriteEngine On # SSL secured whole Site # RewriteCond %{HTTPS} !=on # RewriteRule ^(.*) https://%{SERVER_NAME}/1 [R,L] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{REQUEST\_FILENAME}.jgz -f RewriteRule (.\*)\.js $1.js.jgz [L] AddType „text/javascript“ .js.jgz AddEncoding gzip .jgz
#
# AddType allows you to add to or override the MIME configuration
# file specified in TypesConfig for specific file types.
#
#AddType application/x-gzip .tgz
#
# AddEncoding allows you to have certain browsers uncompress
# information on the fly. Note: Not all browsers support this.
#
#AddEncoding x-compress .Z
#AddEncoding x-gzip .gz .tgz
#
# If the AddEncoding directives above are commented-out, then you
# probably should define those extensions to indicate media types:
#
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz

RewriteEngine on
#RewriteBase /shopware/
RewriteRule shopware.dll shopware.php
RewriteRule files/documents/.* engine [NC,L]
RewriteRule application.yaml engine [NC,L]
RewriteRule images/ayww/(.*) images/banner/1 RewriteRule sitemap.xml(.*) shopware.php?controller=SitemapXml RewriteRule templates/.*(css|js) engine/backend/php/sCacheTemplate.php?file=0 [NC,L] RewriteRule engine/core/php/sAjaxSearch.php engine/backend/php/sAjaxSearch.php [NC,L]
RewriteRule engine/core/php/campaigns.php$ engine/backend/php/campaigns.php [NC,L]

RewriteCond %{REQUEST_URI} !(engine/|images/|files/|templates/|.js$|.css$|.jpg$|.png$)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ shopware.php [PT,L,QSA]
# BEGIN EXPIRES
ExpiresActive on

Perhaps better to whitelist expires rules? Perhaps.

ExpiresDefault „access plus 1 month“

cache.appcache needs re-requests

in FF 3.6 (thx Remy ~Introducing HTML5)

ExpiresByType text/cache-manifest „access plus 0 seconds“

Your document html

ExpiresByType text/html „access plus 0 seconds“

Data

ExpiresByType text/xml „access plus 0 seconds“
ExpiresByType application/xml „access plus 0 seconds“
ExpiresByType application/json „access plus 0 seconds“

RSS feed

ExpiresByType application/rss+xml „access plus 1 hour“

Favicon (cannot be renamed)

ExpiresByType image/x-icon „access plus 1 week“

Media: images, video, audio

ExpiresByType image/gif „access plus 1 month“
ExpiresByType image/png „access plus 1 month“
ExpiresByType image/jpg „access plus 1 month“
ExpiresByType image/jpeg „access plus 1 month“
ExpiresByType video/ogg „access plus 1 month“
ExpiresByType audio/ogg „access plus 1 month“
ExpiresByType video/mp4 „access plus 1 month“
ExpiresByType video/webm „access plus 1 month“

HTC files (css3pie)

ExpiresByType text/x-component „access plus 1 month“

Webfonts

ExpiresByType font/truetype „access plus 1 month“
ExpiresByType font/opentype „access plus 1 month“
ExpiresByType application/x-font-woff „access plus 1 month“
ExpiresByType image/svg+xml „access plus 1 month“
ExpiresByType application/vnd.ms-fontobject „access plus 1 month“

CSS and JavaScript

ExpiresByType text/css „access plus 1 year“
ExpiresByType application/javascript „access plus 1 year“
ExpiresByType text/javascript „access plus 1 year“

Header append Cache-Control "public" # END EXPIRES # compress text, html, javascript, css, xml: AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE image/svg+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/atom_xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE application/x-httpd-php AddOutputFilterByType DEFLATE application/x-httpd-fastphp
      BrowserMatch ^Mozilla/4 gzip-only-text/html
      BrowserMatch ^Mozilla/4\.0[678] no-gzip
      BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
Header append Vary User-Agent env=!dont-vary mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image/.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* # Options -MultiViews # php\_value memory\_limit 128M php\_value max\_execution\_time 9000 # php\_flag magic\_quotes\_gpc off # php\_flag session.auto\_start off # php\_flag suhosin.session.cryptua off # php\_flag zend.ze1\_compatibility\_mode Off php\_flag SecFilterEngine Off # AddType x-mapp-php5 .php # AddHandler x-mapp-php5 .php [/code]

Hallo mmb_info, das war ja eine Blitzantwort :thumbup: Ich habe mir mal erlaubt folgende Code Zeilen aus deiner htaccess zu klauen: DirectoryIndex index.php DirectoryIndex shopware.php # FileETag MTime Size FileETag none <files> Deny from all </files><files> SetOutputFilter DEFLATE </files> RewriteEngine On # SSL secured whole Site # RewriteCond %{HTTPS} !=on # RewriteRule ^(.\*) https://%{SERVER\_NAME}/$1 [R,L] RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{REQUEST\_FILENAME}.jgz -f RewriteRule (.\*)\.js$ $1\.js.jgz [L] AddType "text/javascript" .js.jgz AddEncoding gzip .jgz und siehe da es klappt