home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Plugins / wp-super-cache / readme.txt < prev    next >
Text File  |  2008-02-18  |  6KB  |  95 lines

  1. === WP Super Cache ===
  2. Contributors: donncha
  3. Tags: performance,caching,wp-cache
  4. Tested up to: 2.3.2
  5. Stable tag: 0.5.4
  6.  
  7. A modification of WP-Cache that produces static html files.
  8.  
  9. == Description ==
  10. This 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.
  11.  
  12. However, because a user's details are displayed in the comment form after they leave a comment, the plugin will only serve static html files to:
  13.  
  14. 1. Users who are not logged in.
  15. 2. Users who have not left a comment on your blog.
  16. 3. Or users who have not viewed a password protected post. 
  17.  
  18. The good news is that probably more than 99% of your visitors don't do any of the above! 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 should help your server cope with a front page appearance on digg.com or other social networking site.
  19.  
  20. See the [WP Super Cache homepage](http://ocaoimh.ie/wp-super-cache/) for further information.
  21.  
  22. == Installation ==
  23. 1. You must have mod mime, mod rewrite and fancy permalinks enabled. PHP safe mode should be disabled.
  24. 2. 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.
  25. 3. Upload this directory to your plugins directory. It will create a 'wp-content/plugins/wp-super-cache/' directory.
  26. 4. 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.
  27. 5. WordPress users should go to their Plugins page and activate "WP Super Cache".
  28. 6. Now go to Options->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.
  29. 7. 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:
  30.  
  31.     -----------------.htaccess-----------------
  32.     RewriteEngine On
  33.     RewriteBase /
  34.     
  35.     RewriteCond %{QUERY_STRING} !.*s=.*
  36.     RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
  37.     RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
  38.     RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
  39.     RewriteCond %{HTTP:Accept-Encoding} gzip
  40.     RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz -f
  41.     RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz [L]
  42.     
  43.     RewriteCond %{QUERY_STRING} !.*s=.*
  44.     RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
  45.     RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
  46.     RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
  47.     RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html -f
  48.     RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1index.html [L]
  49.     
  50.     RewriteCond %{REQUEST_FILENAME} !-f
  51.     RewriteCond %{REQUEST_FILENAME} !-d
  52.     RewriteRule . /index.php [L]
  53.     -----------------.htaccess-----------------
  54. 8. After you have enabled the plugin, look for "wp-content/cache/.htaccess". If it's not there you must create it. It should read:
  55.     AddEncoding x-gzip .gz
  56.     AddType text/html .gz
  57.  
  58. == Frequently Asked Questions ==
  59. If things don't work when you installed the plugin here are a few things to check:
  60.  
  61. 1.  Is wp-content writable by the web server?
  62. 2.  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.
  63. 3.  Is there a wp-content/advanced-cache.php ? If not, then you must symlink wp-super-cache/wp-cache-phase1.php to it with the command while in the wp-content folder. `ln -s plugins/wp-super-cache/wp-cache-phase1.php advanced-cache.php` If you can't do that, then copy the file. That will work too.
  64. 4.  Make sure the following line is in wp-config.php and it is ABOVE the "require_once(ABSPATH.'wp-settings.php');" line: `define( 'WP_CACHE', true );`
  65. 5.  Try the Options->WP Super Cache page again and enable cache.
  66. 6.  Look in wp-content/cache/supercache/. Are there directories and files there?
  67. 7.  Anything in your php error_log?
  68. 8.  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 Options->WP Super Cache page and disable it there.
  69. 9.  The plugin does not work very well when PHP's safe mode is active. This must be disabled by your administrator.
  70.  
  71. == Custom Caching ==
  72. It is now possible to hook into the caching process using the add_cacheacton() function.
  73. Three hooks are available:
  74.  
  75. 1. 'wp_cache_get_cookies_values' - modify the key used by WP Cache.
  76. 2. 'add_cacheaction' - runs in phase2. Allows a plugin to add WordPress hooks.
  77. 3. 'cache_admin_page' - runs in the admin page. Use it to add modify that page.
  78.  
  79. There is one regular WordPress filter too. Use the "do_createsupercache" filter 
  80. to customize the checks made before caching. The filter accepts one parameter. 
  81. The output of WP-Cache's wp_cache_get_cookies_values() function.
  82.  
  83. See plugins/searchengine.php as an example I use for my [No Adverts for Friends](plugin at http://ocaoimh.ie/no-adverts-for-friends/)
  84.  
  85. == Updates ==
  86. Updates to the plugin will be posted here, to http://ocaoimh.ie/ and the page
  87. http://ocaoimh.ie/wp-super-cache/ will always link to the newest version.
  88.  
  89. == Thanks ==
  90. I would sincerely like to thank [John Pozadzides](http://onemansblog.com/) for 
  91. giving me the idea for this, for writing the "How it works" section and for
  92. testing the plugin through 2 front page appearances on digg.com
  93. Thanks to James Farmer and Andrew Billits of [Edu Blogs](http://edublogs.org/) fame who helped me
  94. make this more WordPress MU friendly.
  95.