Antwort
 
LinkBack Themen-Optionen Thema durchsuchen Thema bewerten Ansicht
  #31  
Alt 25.07.07, 11:32
Benutzerbild von mstuebner
TYPO3 Forum Team
Moderator
 
Registriert seit: 01.09.04
Ort: 84424 Isen b. Dorfen
Alter: 41
Beiträge: 2.151
mstuebner eine Nachricht über Skype™ schicken

Zitat:
Zitat von Armin Beitrag anzeigen
nc_staticfilecache ist wirklich eine interessante Extension wenn die Seiten viele Besucher haben und/oder der Server etwas schwach auf der Brust ist.
Sehe ich nicht so, Warum soll man einen Server nicht die Arbeit erleichtern nur weil er noch nicht ausgelastet/überfordert ist? Die Zugriffszeiten werden in jedem Fall besser und das ist für die Besucher in jedem Fall angenehm.

Ich kann also Deine Einschränkungen nicht nachvollziehen.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Sponsored Links
  #32  
Alt 09.10.07, 16:43
Forum Newbie
 
Registriert seit: 02.01.07
Beiträge: 46

Sagt mal: gibts da irgendwelche Fallstricke bei der Extension? Bei mir legt er nicht einmal die statischen Dateien an. Natürlich bin ich ausgelogt. Hab sogar auf einem anderen Rechner die Seiten neu geladen. In der Info-Ansicht sieht man bei allen Seiten nur ein "not hit".

Könnte es sein, dass man bestimmte Einstellungen im TS machen oder lassen muss?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #33  
Alt 14.10.07, 13:25
TYPO3 Forum Team
Moderator
 
Registriert seit: 01.12.05
Ort: Kiel
Alter: 38
Beiträge: 1.967
Armin eine Nachricht über ICQ schicken Armin eine Nachricht über Skype™ schicken

moin,

Zitat:
@mstuebner:...Ich kann also Deine Einschränkungen nicht nachvollziehen.
Ist auch völlig unsinnig gewesen

@yahooooo
Wie es aussieht verhindert irgendwas das Cachen der Seite. Irgendwo ein _INT drinn...musst du mal suchen...evtl. stört eine Extension das Cachen.

Armin
__________________
Nichts kommt von selbst, sogar eine Dummheit muss man erst machen.

Tipps und Tricks zu TYPO3: http://typo3.intervation.de
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #34  
Alt 30.04.08, 14:30
Forum Stammgast
 
Registriert seit: 21.07.06
Alter: 34
Beiträge: 214

Hm,
ich nehme simulateStaticDocuments und meine .htaccess sieht dann so aus :
Code:
# Enable URL rewriting
RewriteEngine On

# Stop rewrite processing if we are in the typo3/ directory
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]

RewriteRule ^(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]

# Redirect http://mysite/typo3 to http://mysite/typo3/index_re.php
# and stop the rewrite processing
# For httpd.conf, use this line instead of the next one:
# RewriteRule ^/TYPO3root/typo3$ /TYPO3root/typo3/index.php [L]
RewriteRule ^typo3$ typo3/index_re.php [L]

#------------------------------------------------------------------------------
# beginning of static file cache ruleset

# Don't pull *.xml, *.css etc. from the cache
RewriteCond %{REQUEST_FILENAME} !^.*\.xml$
RewriteCond %{REQUEST_FILENAME} !^.*\.css$

# Check for Ctrl Shift reload
RewriteCond %{HTTP:Pragma} !no-cache
RewriteCond %{HTTP:Cache-Control} !no-cache

# Don't cache HTTPS traffic by default. You may choose to comment out this
# option if your site runs fully on https. If your site runs mixed, you will
# not want https traffic to be cached in the same typo3temp folder where it can
# be requested over http.
# Enable this if you use a mixed setup.
RewriteCond %{HTTPS} off

# NO backend user is logged in. Please note that the be_typo_user expires at the
# end of the browser session. So, although you have already logged out of the
# backend, you will still have to either restart your browser or remove the
# cookie manually for this rule to work.
RewriteCond %{HTTP_COOKIE} !be_typo_user [NC]

# NO frontend user is logged in. Logged in frontend users may see different
# information than anonymous users. But the anonymous version is cached. So
# don't show the anonymous version to logged in frontend users.
RewriteCond %{HTTP_COOKIE} !nc_staticfilecache [NC]

# We only redirect GET requests
RewriteCond %{REQUEST_METHOD} GET

# We only redirect URI's without query strings
RewriteCond %{QUERY_STRING} ^$

# We only redirect if a cache file actually exists

# Uncomment the following two lines if you use realurl:
#RewriteCond %{DOCUMENT_ROOT}//typo3cms/projekt1/typo3temp/tx_ncstaticfilecache//%{HTTP_HOST}/%{REQUEST_URI}index.html -f
#RewriteRule .* typo3temp/tx_ncstaticfilecache/%{HTTP_HOST}/%{REQUEST_URI} [L]

# Uncomment the following two lines if you use simulateStaticDocuments:
RewriteCond /www/145253_73765/rp-hosting/4332/5332/typo3cms/projekt1/typo3temp/tx_ncstaticfilecache/%{HTTP_HOST}/%{REQUEST_URI}/index.html -f
RewriteRule .*  typo3temp/tx_ncstaticfilecache/%{HTTP_HOST}/%{REQUEST_URI}/index.html [L]

# end of static file cache ruleset
#------------------------------------------------------------------------------

# If the file/symlink/directory does not exist => Redirect to index.php
# Important note: If you copy/paste this into httpd.conf instead
# of .htaccess you will need to add '%{DOCUMENT_ROOT}' left to each
# '%{REQUEST_FILENAME}' part.

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* index.php [L]
Leider cacht er keinerlei Seiten, er hängt auch keinen Comment dran oder legt die Files in typo3temp an - _INT-Objekte sind auch keine in Skripts vorhanden...

any ideas ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort


Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge anzufügen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

vB Code ist An.
Smileys sind An.
[IMG] Code ist An.
HTML-Code ist Aus.
Trackbacks are An
Pingbacks are An
Refbacks are An


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Allg. Tipps zur Seitenumsetzung mit T3 + Websitecheck teddy86 TYPO3 4.x Fragen und Probleme 0 14.07.07 09:47
staticfilecache auch mit .html? mic_jan Suchmaschinenfreundliche URLs (SEO) 4 26.06.07 17:58
Typo3 Suchmaschinenoptimierungs Tipps/Tricks Spyker Deine TYPO3 Projekte 1 16.06.06 08:59
Wie erstelle ich einen Beitrag für Tools und Tipps? Junior Tools und Tipps 0 12.02.06 15:17
Hausarbeit zu CMS - Tipps welcome :-) sissi Forum Bar 4 21.03.05 07:20


Alle Zeitangaben in WEZ +1. Es ist jetzt 07:20 Uhr.


Powered by vBulletin® Version 3.6.8 Patch Level 2 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Template-Modifikationen durch TMS