bigneno
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] Plugin settings don't load on locahostI fixed a double jquery-ui and css problem in my functions.php, so no other scripts loaded with BPS.
Then I deactivated all plugins and functions.php to test it but the problem still existed.I’ve just switched to TwentyTwelve and then back to my theme. Problem solved.
Is there anything that happens in BPS on theme activation?Forum: Plugins
In reply to: [BulletProof Security] Plugin settings don't load on locahostThank you for your suggestion, I’ve switched to xampp and the page started to load.
Do you know why it takes so long to load on localhost (with every theme)?Forum: Plugins
In reply to: [BulletProof Security] Plugin settings don't load on locahostP.S. The Login Security Options Page is OK on localhost.
Your plugin is great, very easy to use, but this “feature” really overloads the server.
There must be a way to cache or optimize or join the queries or at least stop them on non-ssl pages. Maybe saving some data in arrays in one transient can help.
Please, try to do something with it if you can, thank you.You can use my solution:
with this code:
$my_post['ID'] = 999; $updated = wp_update_post( $my_post ); //return updated post id or falsewhich updates post modification time and triggers cache clearing
I found a solution:
1. Edit plugins/quick-cache/includes/classesclearing-routines.inc.php
2. Find and comment out this conditional check (lines 34,35,122):
//if (is_blog_admin () && in_array ($pagenow, ($pages = array ("edit.php", "post.php", "post-new.php")))) // { // }Cache clearing now works whenever you call save_post (for example by using wp_update_post()), so you don’t have to use admin post editor.
Forum: Hacks
In reply to: Replacing x between two numbers in the post title or the contentThank you for your reply.
This happens when I use a typical letter x between numbers, not the × symbol. A normal x is somehow converted to × if x is inserted between two numbers without spaces. I checked it in my database and there are 100% simple x-s.
Of course I meant “get_the_title”.
So, when I use $title = get_the_title(999) and then use $title in sql prepared query there’s& #215;.
Is there any other function to get the title which doesn’t convert simple 9×9 into 9×9 ?