source: trunk/www.guidonia.net/wp/wp-content/plugins/wp-super-cache/readme.txt@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 16.8 KB
Line 
1=== WP Super Cache ===
2Contributors: donncha
3Tags: performance,caching,wp-cache,wp-super-cache,cache
4Tested up to: 2.8.1
5Stable tag: 0.9.5
6Requires at least: 2.6
7Donate link: http://ocaoimh.ie/wordpress-plugins/gifts-and-donations/
8
9A very fast caching engine for WordPress that produces static html files.
10
11== Description ==
12This plugin generates static html files from your dynamic WordPress blog. After a html file is generated your webserver will serve that file instead of processing the comparatively heavier and more expensive WordPress PHP scripts.
13
14The static html files will be served to the vast majority of your users, but because a user's details are displayed in the comment form after they leave a comment those requests are handled by PHP. Static files are served to:
15
161. Users who are not logged in.
172. Users who have not left a comment on your blog.
183. Or users who have not viewed a password protected post.
19
2099% of your visitors will be served static html files. Those users who don't see the static files will still benefit because they will see regular WP-Cache cached files and your server won't be as busy as before. This plugin will help your server cope with a front page appearance on digg.com or other social networking site.
21
22If for some reason "supercaching" doesn't work on your server then don't worry. Caching will still be performed, but every request will require loading the PHP engine. In normal circumstances this isn't bad at all. Visitors to your site will notice no slowdown or difference. Supercache really comes into it's own if your server is underpowered, or you're experiencing heavy traffic.
23Super Cached html files will be served more quickly than PHP generated cached files but in every day use, the difference isn't noticeable.
24
25See the [WP Super Cache homepage](http://ocaoimh.ie/wp-super-cache/) for further information.
26
27The [changelog](http://svn.wp-plugins.org/wp-super-cache/trunk/Changelog.txt) is a good place to start if you want to know what has changed since you last downloaded the plugin.
28
29== Changelog ==
30
31= 0.9.5 =
32* Show next and last GC times in minutes, not local time.
33* Don't serve wp_cache cache files to rejected user agents. Supercache files are still served to them.
34* If enabled, mobile support now serves php cached files to mobile clients and static cached files to everyone else.
35* Added checks for "WPSC_DISABLE_COMPRESSION" and "WPSC_DISABLE_LOCKING" constants to disable compression and file locking. For hosting companies primarily.
36* Added check for DONOTCACHEPAGE constant to avoid caching a page.
37* Use PHP_DOCUMENT_ROOT when creating .htaccess if necessary.
38
39= 0.9.4.3 =
401. Added "Don't cache for logged in users" option.
412. Display file size stats on admin page.
423. Clear the cache when profile page is updated.
434. Don't cache post previews.
445. Added backslashes to rejected URI regex list.
456. Fixed problems with posts and comments not refreshing.
46
47== Installation ==
481. You should have the Apache mod mime and mod rewrite modules installed and WordPress fancy permalinks enabled. PHP safe mode should be disabled. If any of those are missing or off you can still use the slower WP-Cache part of the plugin.
492. If you have WP-Cache installed already, please disable it. Edit wp-config.php and make sure the WP_CACHE define is deleted, and remove the files wp-content/wp-cache-config.php and wp-content/advanced-cache.php. These will be recreated when you install this plugin.
503. Upload this directory to your plugins directory. It will create a 'wp-content/plugins/wp-super-cache/' directory.
514. If you are using WordPress MU you will need to install this in 'wp-content/mu-plugins/wp-super-cache/' and the file wp-cache.php must be copied into the mu-plugins directory.
525. WordPress users should go to their Plugins page and activate "WP Super Cache".
536. Now go to Settings->WP Super Cache and enable caching. If you see an error message or a blank screen you may need to fix it. See the "FAQ" section later in this readme for instructions.
547. mod_rewrite rules will be inserted into your .htaccess file. Look in your web root directory for this file. It should look similar to this:
55
56 `-----------------.htaccess-----------------`
57 `RewriteEngine On`
58 `RewriteBase /`
59
60 `RewriteCond %{REQUEST_METHOD} !=POST`
61 `RewriteCond %{QUERY_STRING} !.*=.*`
62 `RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$`
63 `RewriteCond %{HTTP:Accept-Encoding} gzip`
64 `RewriteCond %{HTTP_user_agent} !^.*(2.0\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|hiptop|IEMobile|iPhone|iPod|KYOCERA/WX310K|LG/U990|MIDP-2.0|MMEF20|MOT-V|NetFront|Newt|Nintendo\ Wii|Nitro|Nokia|Opera\ Mini|Palm|Playstation\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|Small|SonyEricsson|Symbian\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|Windows\ CE|WinWAP).*`
65 `RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f`
66 `RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L]`
67
68 `RewriteCond %{REQUEST_METHOD} !=POST`
69 `RewriteCond %{QUERY_STRING} !.*=.*`
70 `RewriteCond %{QUERY_STRING} !.*attachment_id=.*`
71 `RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|wp-postpass_).*$`
72 `RewriteCond %{HTTP_user_agent} !^.*(2.0\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|hiptop|IEMobile|iPhone|iPod|KYOCERA/WX310K|LG/U990|MIDP-2.0|MMEF20|MOT-V|NetFront|Newt|Nintendo\ Wii|Nitro|Nokia|Opera\ Mini|Palm|Playstation\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|Small|SonyEricsson|Symbian\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|Windows\ CE|WinWAP).*`
73 `RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f`
74 `RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L]`
75
76 `RewriteCond %{REQUEST_FILENAME} !-f`
77 `RewriteCond %{REQUEST_FILENAME} !-d`
78 `RewriteRule . /index.php [L]`
79 `-----------------.htaccess-----------------`
808. After you have enabled the plugin, look for the file "wp-content/cache/.htaccess". If it's not there you must create it. It should read:
81
82 `# BEGIN supercache`
83 `<IfModule mod_mime.c>`
84 ` AddEncoding gzip .gz`
85 ` AddType text/html .gz`
86 `</IfModule>`
87 `<IfModule mod_deflate.c>`
88 ` SetEnvIfNoCase Request_URI \.gz$ no-gzip`
89 `</IfModule>`
90 `<IfModule mod_headers.c>`
91 ` Header set Cache-Control 'max-age=300, must-revalidate'`
92 `</IfModule>`
93 `<IfModule mod_expires.c>`
94 ` ExpiresActive On`
95 ` ExpiresByType text/html A300`
96 `</IfModule>`
97 ``
98 `# END supercache`
999. Apache must be configured to allow the modules above. If you receive a "500 internal error" when serving requests to anonymous users you need to dig into your Apache configuration. This configuration in my virtual host works for me:
100
101 `<Directory /home/www/>`
102 `AllowOverride All`
103 `</Directory>`
10410. wp-content/advanced-cache.php loads the caching engine. This file is generated by the plugin. Make sure the path in the include_once() is correct.
105
106== How to uninstall WP Super Cache ==
107
1081. Remove the WP_CACHE define from wp-config.php. It looks like `define( 'WP_CACHE', true );`
1092. Clear the cache in the backend page and then deactivate the plugin on the plugins page.
1103. Remove the Super Cache mod_rewrite rules from your .htaccess file.
1114. Remove the files wp-content/advanced-cache.php and wp-content/wp-cache-config.php
1125. Remove the directory wp-content/cache/
1136. Remove the directory wp-super-cache from your plugins directory.
114
115== If all else fails and your site is broken ==
1161. Remove the WP_CACHE define from wp-config.php. It looks like `define( 'WP_CACHE', true );`
1172. Remove the rules (see above) that the plugin wrote to the .htaccess file in your root directory.
1183. Delete the wp-super-cache folder in the plugins folder.
1194. Optionally delete advanced-cache.php, wp-cache-config.php and the cache folder in wp-content/.
120
121== Frequently Asked Questions ==
122
123= How do I know my blog is being cached? =
124
125View the source of any page on your site. When a page is first created, you'll see the text "Dynamic page generated in XXXX seconds." and "Cached page generated by WP-Super-Cache on YYYY-MM-DD HH:MM:SS" at the end of the source code. On reload, a cached page will show the same timestamp so wait a few seconds before checking. If you have compression enabled, the text "Compression = gzip" will be added. If compression is disabled and the page is served as a static html file, the text "super cache" will be added. The only other way to check if your cached file was served by PHP script or from the static cache is by looking at the HTTP headers. WP-Cache (PHP) cached pages will have the header "WP-Super-Cache: WP-Cache". I used the <a href="https://addons.mozilla.org/en-US/firefox/addon/3829">Live HTTP Headers</a> extension for Firefox to examine the headers. You should also check your cache directory in wp-content/cache/supercache/hostname/ for static cache files.
126
127= Why is WP-Super-Cache better than WP-Cache? =
128
129This plugin is based on the excellent WP-Cache plugin and therefore brings all the benefits of that plugin to WordPress. On top of that it creates copies of every page that is accessed on a blog in a form that is quickly served by the web server. It's almost as quick as if the you had saved a page in your browser and uploaded it to replace your homepage.
130
131= Will comments and other dynamic parts of my blog update immediately? =
132
133Comments will show as soon as they are moderated, depending on the comment policy of the blog owner. Other dynamic elements on a page may not update unless they are written in Javascript, Flash, Java or another client side browser language. The plugin really produces static html pages. No PHP is executed when those pages are served. "Popularity Contest" is one such plugin that will not work. Plugins that show different content for mobile users will probaby not work either.
134
135= Will the Super Cache compression slow down my server? =
136
137No, it will do the opposite in fact. Super Cache files are compressed and stored that way so the heavy compression is done only once. These files are generally much smaller and are sent to a visitor's browser much more quickly than uncompressed html. As a result, your server spends less time talking over the network which saves CPU time and bandwidth, and can also serve the next request much more quickly.
138
139= Why doesn't WP UserOnline, Popularity Contest, WP Postratings or plugin X not work or update on my blog now? =
140
141This plugin caches entire pages and some plugins think they can run PHP code every time a page loads. To fix this, the plugin needs to use Javascript or AJAX methods to update. If the plugin displays information on the page, that must be a Javascript request too.
142
143= Why doesn't the plugin cache requests by search engine bots by default? =
144
145Those bots usually only visit each page once and if the page is not popular there's no point creating a cache file that will sit idle on your server.
146
147= Why shouldn't I create a cache file of every page on my site? =
148
149Like the previous question, there's no point caching pages that won't be visited. The large number of cache files will slow down the garbage collection system as it attempts to check each file. It also causes problems for hosting companies. In the event of a disk failure on your server it may take much longer to check the files. Remember how long a scandisk or a fsck took on a large drive?
150
151= Troubleshooting =
152
153If things don't work when you installed the plugin here are a few things to check:
154
1551. Is wp-content writable by the web server?
1562. Is there a wp-content/wp-cache-config.php ? If not, copy the file wp-super-cache/wp-cache-config-sample.php to wp-content/wp-cache-config.php and make sure WPCACHEHOME points at the right place. "plugins" should be "mu-plugins" if you're using WordPress MU.
1573. Is there a wp-content/advanced-cache.php ? If not, then you must copy wp-super-cache/advanced-cache.php into wp-content/. You must edit the file and change the path so it points at the wp-super-cache folder.
1584. If pages are not cached at all, remove wp-content/advanced-cache.php and recreate it, following the advice above.
1595. Make sure the following line is in wp-config.php and it is ABOVE the "require_once(ABSPATH.'wp-settings.php');" line:
160
161 `define( 'WP_CACHE', true );`
1626. Try the Settings->WP Super Cache page again and enable cache.
1637. Look in wp-content/cache/supercache/. Are there directories and files there?
1648. Anything in your php error_log?
1659. If your browser keeps asking you to save the file after the super cache is installed you must disable Super Cache compression. Go to the Settings->WP Super Cache page and disable it there.
16610. The plugin does not work very well when PHP's safe mode is active. This must be disabled by your administrator.
16711. If pages are randomly super cached and sometimes not, your blog can probably be viewed with and without the "www" prefix on the URL. You should choose one way and install the [Enforce www preference](http://txfx.net/code/wordpress/enforce-www-preference/) plugin if you are using an old WordPress install. The latest versions redirect themselves (you should always be running the latest version of WordPress anyway!)
16812. Private Server users at Dreamhost should edit wp-content/wp-cache-config.php and set the cache dir to "/tmp/" if they are getting errors about increasing CPU usage. See this [discussion](http://wordpress.org/support/topic/145895?replies=42) for more.
16913. File locking errors such as "failed to acquire key 0x152b: Permission denied in..." or "Page not cached by WP Super Cache. Could not get mutex lock." are a sign that you may have to use file locking. Edit wp-content/wp-cache-config.php and uncomment "$use_flock = true" or set $sem_id to a different value. You can also disable file locking from the Admin screen as a last resort.
17014. Make sure cache/wp_cache_mutex.lock is writeable by the web server.
17115. The cache folder cannot be put on an NFS or Samba or NAS share. It has to be on a local disk. File locking and deleting expired files will not work properly unless the cache folder is on the local machine.
17216. Garbage collection of old cache files won't work if WordPress can't find wp-cron.php. If your hostname resolves to 127.0.0.1 it could be preventing the garbage collection from working. Check your access_logs for wp-cron.php entries. Do they return a 404 (file not found) or 200 code? If it's 404 or you don't see wp-cron.php anywhere WordPress may be looking for that script in the wrong place. You should speak to your server administator to correct this or edit /etc/hosts on Unix servers and remove the following line. Your hostname must resolve to the external IP address other servers on the network/Internet use. See http://yoast.com/wp-cron-issues/ for more.
173
174 `127.0.0.1 myhostname.com`
175A line like "127.0.0.1 localhost localhost.localdomain" is ok.
17617. If old pages are being served to your visitors via the supercache, you may be missing Apache modules (or their equivalents if you don't use Apache). 3 modules are required: mod_mime, mod_headers and mod_expires. The last two are especially important for making sure browsers load new versions of existing pages on your site.
17718. The error message, "WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed!" appears at the end of every page. Open the file wp-content/advanced-cache.php in your favourite editor. Is the path to wp-cache-phase1.php correct? If it is not the caching engine will not load.
178
179== Custom Caching ==
180It is now possible to hook into the caching process using the add_cacheaction() function.
181
182Three hooks are available:
183
1841. 'wp_cache_get_cookies_values' - modify the key used by WP Cache.
1852. 'add_cacheaction' - runs in phase2. Allows a plugin to add WordPress hooks.
1863. 'cache_admin_page' - runs in the admin page. Use it to modify that page, perhaps by adding new configuration options.
187
188There is one regular WordPress filter too. Use the "do_createsupercache" filter
189to customize the checks made before caching. The filter accepts one parameter.
190The output of WP-Cache's wp_cache_get_cookies_values() function.
191
192See plugins/searchengine.php as an example I use for my [No Adverts for Friends](plugin at http://ocaoimh.ie/no-adverts-for-friends/)
193
194== Links ==
195[WP Widget Cache](http://wordpress.org/extend/plugins/wp-widget-cache/) is another caching plugin for WordPress. This plugin caches the output of widgets and may significantly speed up dynamic page generation times.
196
197== Updates ==
198Updates to the plugin will be posted here, to [Holy Shmoly!](http://ocaoimh.ie/) and the [WP Super Cache homepage](http://ocaoimh.ie/wp-super-cache/) will always link to the newest version.
199
200== Thanks ==
201I would sincerely like to thank [John Pozadzides](http://onemansblog.com/) for giving me the idea for this, for writing the "How it works" section and for testing the plugin through 2 front page appearances on digg.com
202
203Thanks to James Farmer and Andrew Billits of [Edu Blogs](http://edublogs.org/) fame who helped me make this more WordPress MU friendly.
Note: See TracBrowser for help on using the repository browser.