a1wsn
Forum Replies Created
-
Thanks, and will the plugin still automatically notice when the next release is available, or has the update check been removed completely?
Agreed, I would love a 1.6.0.1 version just to fix this issue. I am really tired of constantly seeing the update notifications every hour of the day…
Forum: Plugins
In reply to: [6Scan Security] [Plugin: 6Scan Security] is this your address 95.211.58.114?You should add this IP and any others to your page at:
https://6scan.desk.com/customer/portal/articles/588531-cloudflare-and-6scan
I also have this problem, and am not using Multisite, just regular WordPress.
Whenever I login to WP admin I see the ‘Plugin Updates’ notification icon with the number ‘1’, and sometimes when I click to check for updates it does show :
Pretty Link Pro
You have version 1.6.0 installed. Update to 1.6.0.But other times it doesn’t show anything on the updates page, even though the plugin notification icon was showing there was an update…
I also had this same problem – disabled WP SEO while testing, later re-enabled, then noticed the sitemaps had gone 404. By re-saving the settings it re-activated the sitemaps.
Yoast, please look at fix for next version ??
Forum: Developing with WordPress
In reply to: Load spikes – any ideas?Can you clarify what you mean by:
core control http loggingMy logs were swamped, thanks tgeorge for the solution ??
Yes it’s the same plugin. But my link is not broken, it works when I click it! ??
I don’t think this plugin does it yet, but I’ve been using a ‘Category Search’ plugin which provides the category search results above the results provided by Relevanssi. It’s good, although I think it only searches the category title, not category description.
https://www.prelovac.com/vladimir/wordpress-plugins/category-search
Relevanssi plus the above plugin work well together!
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Need help with this (BIG) problemI have browser caching enabled and I have never needed to clear my browser cache to see the page changes so long as I’m logged in.
How about the first option that I described? When you click on the ’empty cache’ button, surely that works? If not, how about the ’empty all caches’ button on the ‘General Settings’ page?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Need help with this (BIG) problemYou don’t need to wait until the cache clears itself, you can clear it manually and so immediately see the results of the changes you’ve made. To do this, go to your Admin, go to the Performance settings, then to ‘Page Cache Settings’ and click the ’empty cache’ button. You will then see the results of your template changes.
If you are the only user for your site (i.e. your visitors do not usually log in) then it’s even easier to just go to the ‘Page Cache Settings’ and select the option ‘Don’t cache pages for logged in users’ (and then use the ‘Save Changes’ button) and then so long as you are logged in you will always see the most current version of the site including any template changes you’ve made, but other regular visitors will still see the old version until the cache refreshes itself at some time in the future.
Hope this helps ??
OK, here is a quick fix in case anyone is interested (I know at least one other person has reported the same problem).
First find this code, probably in your header.php :
<title><? wp_title(''); ?></title>
REPLACE that code with the following :
<? ob_start(); ?><title><? wp_title(''); ?></title><? $wp_headttl = ob_get_contents(); ob_end_clean(); $wp_headttl = str_replace('page of', 'page 1 of 1', $wp_headttl); echo $wp_headttl; ?>
This gets the title output by Yoast’s plugin, puts it into a string, then replaces the empty page numbering section, and then finally prints the resulting fixed title.
Note that you may need to adjust the code slightly depending on how you setup your title templates, for example if the word ‘page’ is capitalized in your titles then you’ll need to change ‘page of’ to ‘Page of’. So basically you should just look at your current broken title and copy the bit you want removed into the first single-quoted section of the str_replace in the code above.
I hope this helps someone! If you are code-challenged and can’t figure it out then you can post a link to your site here and I’ll reply with the exact code to fix your page numbering problem ??
I see Joost has released many good bugfixes since release, but not this one. Please Joost, this bug makes bad titles!
Related bug report from 3 weeks ago, no fix yet.
I believe apc_shm_size is not relevant to this problem, it’s most likely due to a reported bug in APC. I always had this problem on my server and after upgrading APC to the newest version (3.1.6) it appears to be solved.