tgeorge
Forum Replies Created
-
Forum: Plugins
In reply to: [Link to Post] [Plugin: Link to Post] Broken in WordPress 3.3No, no word from the developper. I commented on his website too :
http://julienappert.com/realisations/plugin-link-to-post
but no response. And I couldn’t find an alternative plug-in. For now, I am using the standard “Link” button in WordPress. Thanks to the WordPress developers, one of the features provided by the Link to Post plug-in was recently built into the core. This new “Link” feature is relatively hidden (or at least not very obvious), so see screenshot :
Unfortunately, you can’t link to tags using this built-in feature ; and because it’s core, you can’t fiddle with the code.
Forum: Plugins
In reply to: [W3 Total Cache] Invalid mfunc tag syntaxI have to say I am puzzled by Frederick’s comment. He says to start PHP before MFUNC and to end PHP after MFUNC. But this obviously will result in a parse error, because
<!-- mfunc -->is invalid PHP code. PHP uses a different syntax for comments.Hmm… I guess Frederick was wrong when he said to put PHP start and end tags outside of MFUNC. They clearly have to be inside of MFUNC. Try this :
<!-- mfunc --> <?php echo popular_posts_views(); ?> <!-- /mfunc -->Concerning the “w3_url_format” error, I had the same problem, and I solved it like this :
There is a way to disable caching of a particular section of a page using MFUNC. Here is how. Replace this code :
<?php echo popular_posts_views(); ?>with this code :
<?php <!-- mfunc --> echo popular_posts_views(); <!-- /mfunc --> ?>I cannot test this myself. I hope it works.
In the “Install” tab of W3TC, you can see the contents of your .htaccess file.
To apply the modifications in the stylesheet, go to the “Minify” tab of W3TC and click on “empty cache”. Only the “Minify” is involved with stylesheets.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] list of javascript that can be moved to footer?Your choice of words is really bizarre. JavaScript is a programming language. You want to “move” a programming language? I suppose you want to move some JavaScript code, but what does “list of JavaScript” mean? Finally, how is this related to W3 Total Cache?
1. Open your FTP program and connect to your site.
2. Browse to the /public_html/ folder.
3. Edit the wp-config.php file (it’s a text file).
4. Find the linerequire_once(ABSPATH . 'wp-settings.php');(it’s at the end).
5. Insert a new line before the previous line and pastedefine('WP_CACHE', true);Forum: Fixing WordPress
In reply to: w3 Total Cache activation errorsI hope you’ve not pasted
before require_once(ABSPATH . 'wp-settings.php');because it’s not part of the code.You only have to paste
define('WP_CACHE', true);and you have to pay attention to the;sign and the quotes have to be straight, not curly.I had the same problem, and I solved it like this :
Forum: Plugins
In reply to: [W3 Total Cache] Change the Leverage browser cachingSorry, I have no experience with sub-domains. It is possibly the cause of the problem. In fact, you can make a test, by moving one or more images from your sub-domain to your main domain. See whether they disappear from the “Leverage browser caching” list. But I can’t help you further, because of my lack of knowledge. I hope someone else helps you.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Cache folders are missing…?This is perfectly normal. The cache files are stored in “/wp-content/w3tc/” and they get updated all the time (or at least, every time someone access a portion of your site). When you initiate an FTP backup, your FTP program makes a list of the files to backup, but by the time it finishes downloading, old cache files may already have been deleted, and new cache files may already have been created.
You can safely disregard such error messages, and if your backup procedure allows excluding certain folders, then exclude “/wp-content/w3tc/”. (It is more or less equivalent to the “Temporary Internet Files” folder for Internet Explorer.)
Forum: Plugins
In reply to: [W3 Total Cache] Change the Leverage browser cachingHmm… It should work. I have exactly the same “Browser Cache” settings, and I get no GTmetrix errors for my site. This maybe means that your webhost does not support the mod_expires module (which is required by W3TC’s “Browser Cache” feature). I know almost nothing about modules, but here is a description :
“mod_expires module is responsible for setting of the Expires HTTP header and max-age directive of Cache-Control HTTP header in server responses.”
You should ask your webhost whether mod_expires is supported. If it’s not supported, you’ll have to forget about the “Browser Cache” feature. Sorry.
Forum: Plugins
In reply to: [W3 Total Cache] Change the Leverage browser cachingGo to the “Browser Cache” tab. Use the following settings for both the “CSS & JS” section and the “Media & Other Files” section :
[check] Set expires header
Expires header lifetime: 31536000 seconds
[check] Set cache control header
Cache Control policy: cache with max-ageDon’t forget to save settings, and to click on “Re-Test Page” on the GTmetrix site.