[phpBB Debug] PHP Warning: in file [ROOT]/ext/tas2580/seourls/event/listener.php on line 213: Undefined array key "FORUM_NAME"
REDAXO und Cache - Seite 2 - REDAXO Forum
Hallo,

Wir haben in letzter Zeit festgestellt, dass die Kommunikation via Slack viel schneller und zielführender ist als ein Beitrag im Forum. Aufgrund der neuen und besseren Möglichkeiten der Kommunikation haben wir uns entschlossen das Forum nur noch als Archiv zur Verfügung zu stellen. Somit bleibt es weiterhin möglich hier nach Lösungen zu suchen. Neue Beiträge können nicht mehr erstellt werden.

Wir empfehlen, für deine Fragen/Probleme Slack zu nutzen. Dort sind viele kompetente Benutzer aktiv und beantworten jegliche Fragen, gerne auch von REDAXO-Anfängern! Slack wird von uns sehr intensiv und meistens "rund um die Uhr" benutzt :-)
Selbst einladen kannst Du dich hier: https://redaxo.org/slack/
Benutzeravatar
Cheffchen
Beiträge: 1809
Registriert: 3. Mär 2009, 13:51
Wohnort: Berlin
Kontaktdaten: Website

Re: REDAXO und Cache

29. Feb 2016, 12:27

Hallo,

ein ganz dümliche idee, hast dir mal die .htaccess angeschaut im root und vielleicht sogar in /layout ordner.

Vielleicht ist die nicht standard und blockt das oder so.

mehr ideen hätte ich nicht mehr.

Cheffchen

Fränk
Beiträge: 15
Registriert: 25. Feb 2016, 21:20

Re: REDAXO und Cache

29. Feb 2016, 12:32

Im /layout Ordner liegt keine .htaccess sondern nur im root.
Ich konnte in der .htaccess allerdings auch nichts entdecken, was damit zutun haben könnte.

Hier die .htaccess:

Code: Alles auswählen

# DEFAULT CHARSET
AddDefaultCharset utf-8

# PREVENT DIRECTORY LISTING
<IfModule mod_autoindex.c>
	Options -Indexes
</IfModule>

# ADD MIME TYPES
<IfModule mod_mime.c>
	AddType image/x-icon .ico
	AddType image/svg+xml svg
	AddType video/ogg .ogv
	AddType video/mp4 .mp4
	AddType video/webm .webm
	AddType video/x-flv flv
	AddType audio/mpeg .mp3
	AddType audio/ogg .ogg
	AddType application/javascript .js
	AddType application/json .json
	AddType application/xml .xml
	AddType application/x-shockwave-flash .swf
	AddType application/vnd.ms-fontobject .eot
	AddType application/x-font-ttf .ttf
	AddType application/font-woff .woff
	AddType application/font-woff2 .woff2
	AddType font/opentype otf
</IfModule>

# COMPRESS FILES
<IfModule mod_deflate.c>
	AddOutputFilterByType DEFLATE text/html
	AddOutputFilterByType DEFLATE text/plain
	AddOutputFilterByType DEFLATE text/xml
	AddOutputFilterByType DEFLATE text/css
	AddOutputFilterByType DEFLATE image/svg+xml
	AddOutputFilterByType DEFLATE application/javascript
	AddOutputFilterByType DEFLATE application/json
	AddOutputFilterByType DEFLATE application/xml
	AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
	AddOutputFilterByType DEFLATE application/x-font-ttf
	AddOutputFilterByType DEFLATE font/opentype
</IfModule>

# ADD CACHING HEADERS
<IfModule mod_expires.c>
	ExpiresActive On
	ExpiresDefault "access plus 1 week"
	ExpiresByType text/html "access plus 0 seconds"
	ExpiresByType text/plain "access plus 0 seconds"
	ExpiresByType text/xml "access plus 0 seconds"
	ExpiresByType text/css "access plus 4 weeks"
	ExpiresByType image/gif "access plus 1 week"
	ExpiresByType image/png "access plus 1 week"
	ExpiresByType image/jpg "access plus 1 week"
	ExpiresByType image/jpeg "access plus 1 week"
	ExpiresByType image/x-icon "access plus 4 week"
	ExpiresByType image/svg+xml "access plus 4 weeks"
	ExpiresByType video/mp4 "access plus 4 weeks"
	ExpiresByType video/ogg "access plus 4 weeks"
	ExpiresByType video/webm "access plus 4 weeks"
	ExpiresByType video/x-flv "access plus 4 weeks"
	ExpiresByType application/javascript "access plus 4 weeks"
	ExpiresByType application/json "access plus 0 seconds"
	ExpiresByType application/xml "access plus 0 seconds"
	ExpiresByType application/x-shockwave-flash "access plus 4 weeks"
	ExpiresByType application/vnd.ms-fontobject "access plus 4 weeks"
	ExpiresByType application/x-font-ttf "access plus 4 weeks"
	ExpiresByType application/font-woff "access plus 4 weeks"
	ExpiresByType application/font-woff2 "access plus 4 weeks"
	ExpiresByType font/opentype "access plus 4 weeks"
</IfModule>

# REMOVE ETAG
<IfModule mod_headers.c>
	Header unset ETag 
</IfModule>

FileETag None

# REWRITING
<IfModule mod_rewrite.c>
	# ENABLE REWRITING
	RewriteEngine On
	RewriteBase /

	# REDIRECT SITEMAP.XML TO SEO42 SITEMAP FUNCTION
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteRule ^sitemap\.xml$ index.php?seo42_func=sitemap [NC,L]

	# REDIRECT ROBOTS.TXT TO SEO42 ROBOTS FUNCTION
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteRule ^robots\.txt$ index.php?seo42_func=robots [NC,L]

	# REWRITE RULE FOR GOOGLE SITE VERIFICATION FILE
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteRule ^google([a-zA-Z0-9]){1,20}\.html$ index.php?seo42_func=googlesiteverification [NC,L]

	# REWRITE RULE FOR SEO FRIENDLY DOWNLOAD URLS
	RewriteRule ^download[s]?/([^/]*) index.php?seo42_func=download&file=$1 [NC,L]

	# REWRITE RULE FOR SEO FRIENDLY IMAGE MANAGER URLS
	RewriteRule ^imagetypes/([^/]*)/([^/]*) index.php?rex_img_type=$1&rex_img_file=$2

	# REWRITE RULE FOR JS/CSS VERSIONING
	RewriteRule ^(.*)\.\d{10}\.(css|js)$ $1.$2 [L]

	# DON'T REWRITE IF REAL FILE, FOLDER OR SYMLINK EXISTS
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteCond %{REQUEST_FILENAME} !-l

	# EXCLUDE SPECIFIC FOLDERS FROM REWRITE ENGINE
	RewriteCond %{REQUEST_URI} !/files[0-9]*/
	RewriteCond %{REQUEST_URI} !/redaxo/
	RewriteCond %{REQUEST_URI} !/resources/

	# REWRITE ALL OTHER REQUESTS TO INDEX.PHP
	RewriteRule ^(.*)$ index.php?%{QUERY_STRING} [L]
</IfModule>


Ingo
Beiträge: 782
Registriert: 24. Jun 2010, 00:34

Re: REDAXO und Cache

29. Feb 2016, 13:31

Fränk hat geschrieben:Nochmal ein Nachtrag. Ich habe die main.css inzwischen aus dem Verzeichnis gelöscht. Cache von Redaxo geleert und auch der Browsercache ist gelöscht. Die Datei wird trotzdem nach wie vor geladen.
[ ] ich bin im falschen Verzeichnis unterwegs
[ ] jemand hat eine Voodoo Puppe des Webservers gemacht und piekst sie mit heissen Nadeln

Mach dein X :)

Benutzeravatar
runstop64
Beiträge: 369
Registriert: 23. Okt 2012, 21:34
Wohnort: Hamburg
Kontaktdaten: Website Facebook Twitter

Re: REDAXO und Cache

29. Feb 2016, 15:46

Moin,

Verständinsfragen:
Wird die Änderung im Template übernommen oder nicht?
Wie syncst du die Änderungen aus dem Dateisystem in die DB - welches Addon nutzt Du?
Hast Du inzwischen einen Admin Zugang?
Viele Grüße,
Daniel


studio-ahoi.de | Referenzen | Friends Of REDAXO

Fränk
Beiträge: 15
Registriert: 25. Feb 2016, 21:20

Re: REDAXO und Cache

29. Feb 2016, 17:03

Der liebe Ingo hatte mit der Voodoo Puppe gar nicht so unrecht. Nur das Die Puppe C-Name Record hieß und auf einen ganzen anderen Webspace gezeigt hat. Davon wusste ich allerdings nichts und bin auch nicht drauf gekommen.

Vielen Dank für die Hilfe.

Gruß
Fränk

Benutzeravatar
alexplus
Beiträge: 212
Registriert: 13. Feb 2007, 15:03
Wohnort: Heilbronn
Kontaktdaten: Website

Re: REDAXO und Cache

15. Mär 2016, 15:46

Andernfalls wäre es evtl. das hier gewesen (fürs Protokoll)
Fränk hat geschrieben:

Code: Alles auswählen

	ExpiresByType text/css "access plus 4 weeks"

Zurück zu „Allgemeines [R4]“