WPUser
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] HackScript in W3TC pluginsomeday i’ll try to upload nusoap.php from w3tc plugin (just one file) on new account of 000webhost and see what will happen
Forum: Plugins
In reply to: [W3 Total Cache] HackScript in W3TC pluginand yeah… i didn’t mention in my first post that 000webhost removed my site, so there was nothing to clean anyway xD
Forum: Plugins
In reply to: [W3 Total Cache] HackScript in W3TC pluginit’s w3tc file, you can download and find it yourself https://downloads.wordpress.org/plugin/w3-total-cache.0.9.4.1.zip (w3-total-cache.0.9.4.1.zip\w3-total-cache\lib\Nusoap\nusoap.php)
what is nusoap? – https://sourceforge.net/projects/nusoap/
i just think 000webhost is buggy
Forum: Plugins
In reply to: [W3 Total Cache] HackScript in W3TC pluginhaha, no. my site is ok
same problem on http://www.000webhost.com/forum/customer-assistance/38223-status-suspended.htmlForum: Plugins
In reply to: [W3 Total Cache] What is happening with W3TC sometimes?i know what is needed for
but it was disabled (any auto purge) and i didn’t create, edit any pages, but it was still removing every cached folders, creating new (when someone open specific page), and again removing it (cycle)Forum: Plugins
In reply to: [W3 Total Cache] What is happening with W3TC sometimes?clear reinstalling helped
I think clicking “Empty All Caches” in wp-admin caused that problem
I also doubt about all these buttons “purge the page”, “empty all caches” and so on. Some of them don’t work (“purge the page”) or cause problems (“Empty All Caches”)
I usally use ftp or file manager to remove cache manually when i update, create something
Forum: Plugins
In reply to: [W3 Total Cache] What is happening with W3TC sometimes?I think disabling, deleting (including all files using ftp) and reintalling W3TC can solve the problem, but it’s the second time when it’s happening
Forum: Plugins
In reply to: [W3 Total Cache] What is happening with W3TC sometimes?It always add to the files’ extensions “.old”
Forum: Hacks
In reply to: Removing blog name from pagesfound the answer:
function wpse95147_filter_wp_title( $title ) { if ( is_single() || ( is_home() && !is_front_page() ) || ( is_page() && !is_front_page() ) ) { $title = single_post_title( '', false ); } if ( is_category()) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'wp_title', 'wpse95147_filter_wp_title' );(add it to functions.php)
Forum: Plugins
In reply to: Removing blog name from pagesfound the answer:
function wpse95147_filter_wp_title( $title ) { if ( is_single() || ( is_home() && !is_front_page() ) || ( is_page() && !is_front_page() ) ) { $title = single_post_title( '', false ); } if ( is_category()) { $title = single_cat_title( '', false ); } return $title; } add_filter( 'wp_title', 'wpse95147_filter_wp_title' );(add it to functions.php)
And it seems like I can’t purge specific page by myself – when I press “Purge from cache” for one of my pages it doesn’t purge anything. In this case I have to delete “/public_html/wordpress/wp-content/cache/page_enhanced/SOME_PAGE”
But with “posts” everything is normal (As I said – I’m using “Purge Policy” for posts)
I tested code without “Google Rich Snippets (schema.org)” and code is correct:
<div class="rw-center"> <div class="rw-ui-container rw-class-blog-post rw-urid-20"> </div> </div>And it’s only trial for me (schema.org), and all is fine without schema.org.
Mb you should check code with schema
<div class="rw-center"> <div itemscope itemtype="http://schema.org/Article"> <div class="rw-ui-container rw-class-blog-post rw-urid-20" data-img="************"></div>.......... <div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> ...................................... </div></div>two or three div in the end? (end div for
<div itemscope itemtype="http://schema.org/Article">)Forum: Plugins
In reply to: [HTML5 Video Player with Playlist] Where these options? theme, scrollmode…