Search Results for 'cache'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

Please try to regenerate your thumbnails: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/
After doing this empty cache and check again.

Thanks!

simchris
tagDiv Member

Dunno. Works on our web server where we “host” our sites. Might be some other mis-configuration with your system setup which you can review by looking at your error logs since you manage your own server. Error logs great place to start.

Perhaps try clean install of the plugin?

Do full delete of the folder in /plugins/js-composer/
then do clean install of the plugin.

Try with all other plugins OFF, caching off, mod_pagespeed off, cache cleared.
If you have 4GB RAM for php, and a modern CPU, should work just fine.

The 501/505 error seems to refer to an http header problem.

I’m assuming your site works with WordPress and the default twenty-fifteen theme?

Ref 501/505 errors
http://www.getnetgoing.com/HTTP-505.html

gouravgola
tagDiv Member

w3 total cache

DavisBeatz
tagDiv Member

What cache plugin do you use?

gouravgola
Participant
#0

my website is showing all wrong view count, even after ajax view count is enabled in my website:
http://www.unbelievable-facts.com/2015/02/these-6-living-creatures-are-almost-immortal.html

i cleared all cache before turning it on, as mentioned in it’s description.

please guide me!

simchris
tagDiv Member

Checkout my new post, which condenses a lot of my suggestions from the oooooold sticky topic started a year ago in the Newspaper forum. 🙂

Might be some stuff there to help.

And, of course, be sure to CLEAR the mod_pagespeed cache once you change settings just to house clean. You don’t need to do that all the time, just good idea if you’re monkeying with bunches of other stuff.

I actually turn if OFF via htaccess

ModPagespeed off

when messing with ALL the other stuff, so it’s not trying to cache the other shenanigans.

Also remember that you need to hit the page a few times for PageSpeed to really optimize stuff.

simchris
tagDiv Member

Additional .htaccess optimizations for Apache servers.


# END WordPress

AddType text/javascript .js
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-ttf .ttf
AddType application/x-font-opentype .otf
AddType application/x-font-woff .woff

# BEGIN Expire headers
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
ExpiresByType image/x-icon "access plus 2500000 seconds"
ExpiresByType image/jpeg "access plus 2500000 seconds"
ExpiresByType image/png "access plus 2500000 seconds"
ExpiresByType image/gif "access plus 2500000 seconds"
ExpiresByType application/x-shockwave-flash "access plus 2500000 seconds"
ExpiresByType text/css "access plus 700000 seconds"
ExpiresByType text/javascript "access plus 700000 seconds"
ExpiresByType application/javascript "access plus 700000 seconds"
ExpiresByType application/x-javascript "access plus 700000 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
ExpiresByType font/truetype "access plus 2500000 seconds"
ExpiresByType font/opentype "access plus 2500000 seconds"
ExpiresByType application/x-font-woff "access plus 2500000 seconds"
ExpiresByType image/svg+xml "access plus 2500000 seconds"
ExpiresByType application/vnd.ms-fontobject "access plus 2500000 seconds"
</IfModule>
# END Expire headers

# BEGIN Cache-Control Headers
<IfModule mod_headers.c>
<filesMatch "\.(ico|jpe?g|png|gif|swf)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(css)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(js)$">
Header set Cache-Control "private"
</filesMatch>
<filesMatch "\.(x?html?|php)$">
Header set Cache-Control "private, must-revalidate"
</filesMatch>
</IfModule>
# END Cache-Control Headers

<IfModule mod_headers.c>
    Header unset ETag
</IfModule>
<IfModule mod_alias.c>
RedirectMatch 403 /xmlrpc.php
</IfModule>

All of this “obviously” goes AFTER the WordPress elements generated when WP is setup.

  • This reply was modified 11 years by simchris.
simchris
tagDiv Member

Yeah.
I would turn off everything except mod_pagespeed since it does the minify of HTML on the fly, removes comments, etc.

Use the tagdiv speed booster plugin which moves and enqueues scripts at bottom of page.

Use the functions.php file to add the remove query string code.

Use W3 cache if you don’t have mod_pagspeed connected to APC/opcache/memcache on the server (which can be configured in the master mod_pagespeed config file). But use the settings recommended by TagDiv.

example of some of my custom stuff in functions.php to remove query strings, visual composer credit, etc.

*NOTE:
this also includes code you might not need
a) remove visual composer CSS from post pages
b) remove pingback URL
c) change default WP thumb compression from 90 to 50 (some like 60)
d) remove yoast admin bar (annoying)
e) add go away message for people trying to login guessing passwords; great to use with limit login attempts
f) delete enclosure in RSS feed
g) disallow some things in comments for security

——————

/*CHRISTOPHER's CUSTOM MODS - 1.10.15 rev15A (c) 2010-2015 */

remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );

add_filter( 'pre_comment_content', 'wp_specialchars' );

function no_errors_please(){
return 'You appear to be up to no good. Please stop now!';
}
add_filter( 'login_errors', 'no_errors_please' );

/* Disable YOAST SEO Admin Bar. */
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wpseo-menu');
}
// and we hook our function via
add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );

function delete_enclosure(){
return '';
}
add_filter( 'get_enclosed', 'delete_enclosure' );
add_filter( 'rss_enclosure', 'delete_enclosure' );
add_filter( 'atom_enclosure', 'delete_enclosure' );

function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );

add_filter( 'jpeg_quality', create_function( '', 'return 50;' ) );

function remove_pingback_url( $output, $show ) {
if ( $show == 'pingback_url' ) $output = '';
return $output;
}
add_filter( 'bloginfo_url', 'remove_pingback_url', 10, 2 );

add_action('init', 'myoverride', 100);
function myoverride() {
remove_action('wp_head', array(visual_composer(), 'addMetaData'));
}

function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);

Note: my “lineup” cannot be posted in an article someplace, or stuff like that; use if you wish. I have left out some other things most folks don’t need, but we do. 🙂

Hope that helps 🙂

simchris
tagDiv Member

Caching problem. Look at your hosting panel or your settings, such as if hosted with GoDaddy, you need to periodically click the “clear cache” button at top of your WordPress login. If you’re using a caching plugin, might not be configured properly.

Theme doesn’t change the basic publishing of WordPress.

Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure that you also use the latest theme version then deactivate all plugins leaving just the Visual Composer plugins active then empty cache and also purge files if you use any CDN host services then check again.
Also make sure that you test this without any js/css/hmtl minification options, disable those option then empty cache/purge files and try again.
I have also checked this using the latest theme version (4.6.1) and found no issue so it should work in your case also.
Also use this guide to setup megamenu: https://forum.tagdiv.com/how-to-use-the-megamenu/

Let me know how it goes!

Thanks!

  • This reply was modified 11 years by Lucian.
DDangerousDDave
tagDiv Member

Hi Lucian,

Thanks for the quick reply.

I disabled all but the VC plugin, emptied cache and tried multiple Vimeo videos, but am still having trouble with the image created by the featured video. The thumbnail it creates does not fit the dimensions of the big slide correctly.

Screenshot: http://trialsriders.com/wp-content/uploads/2015/02/screen.jpg

Also disabled construction page so you should be able to visit http://www.trialsriders.com.

Thank you,

Dave

Lucian
tagDiv Staff

Hi,

I have also tested this and tried to recreate it based on your details however I haven’t managed to find anything wrong with this.
I suggest you also try this without any plugins active and also empty cache and/or purge files if you use CDN host then try again leaving just VC plugin active. Also try to test this using various videos from vimeo.
Please let me know if you still can’t managed to get this done and also provide a screenshot of this issue or more details as your site can’t be accessed.

Thanks

Lucian
tagDiv Staff

Hi,

I’ve also tested this using your facebook an twitter id so it should also work in your case also: http://screencast.com/t/thfOxwUOKAG
Please make sure that you also test this without any plugins active and make sure you empty cache and/or purge files if you use CDN then check again.
If this still done’t work please give wp-access so we can also check this and send you login details via email at contact@tagdiv.com and also send a link to this tread or specify your issue details.

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

If your plugin is updated please make sure you do this right following this guide: https://forum.tagdiv.com/how-to-set-social-counter/ and also try this without any plugins active and empty cache.

Thanks!

Lucian
tagDiv Staff

Hi,

Please make sure that you also test this without any plugins active and also empty cache/purge files if you any CDN host services. I have also made some tests using the wp text widget but haven’t had any issues using it along with the theme.
Please also make sure that the code you add there is right.

Thanks

DDangerousDDave
tagDiv Member

Hi,

I purchased the theme a few days ago and have begun playing around with it. I was able to create a post with Youtube video and the feature image came out fine, but when I tried to do the same using a Vimeo video, it created an undersized thumbnail.

I installed and ran the thumbnail regen plugin and cleared the cache to no avail. Thoughts?

Site: http://trialsriders.com/

Thanks!

Dave

ShinAkuma5
tagDiv Member

Alin,

I have all the suggested steps in installing the Envato WP kit, emptied caches, checked again, and yet none of the changes have worked yet, except in the preview, as illustrated in the attached screenshots. Also, as I’ve highlighted, when i click on the arrows, it will load only in the preview, yet when I log out and go to the actual site, it does not show up. please advise and assist. Thanks!

The site url is http://theinscribermag.com

Alin [tagDiv]
tagDiv Staff

Hi,


@ShinAkuma5

Please test this without any plugins active and leave just Visual Composer plugin active and also empty cache then check again. Use the latest theme update(1.5) and the plugins that come with theme files.
Please follow this guide if you not using the latest theme update and use ftp method: https://forum.tagdiv.com/how-to-update-theme/
Provide your site URL.


@Ljubisa
B.
If you have the same issue please follow the instructions from above.
On block you have 3 types of pagination: http://screencast.com/t/RiVLSO2I

Also our documentation is helpful: https://forum.tagdiv.com/newsmag-documentation/

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please add |Oswald:300,400,700| like this: http://screencast.com/t/eGLiX1bj4L
After that please clear cache and try if this works.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this without any plugins active and also make sure you empty cache as well and see if it works.
The issue with saving settings usually appears because the server security module blocks the access to admin-ajax.php file. Please make sure that you don’t have errors in console while saving the settings on the Theme Panel, usually it displays a 403 or 404 error. Use Chrome, click right and choose Inspect like this: http://screencast.com/t/ajQ8B1AV

Thanks!

Emil G
tagDiv Staff

Hi,

They refresh/update their cache from time to time but, i also noticed that new posts don’t display the proper data immediately after you publish them unless you update the data manually via their debugger. I guess they made it this way to lower the traffic on their side.

Thank you, Emil G.

Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure that you use the latest theme update(4.5) and you update Visual Composer plugin that comes with the theme files.
Please deactivate all plugins, leave only Visual Composer plugin active, also empty cache and purge files if you use CDN host service and see if the issue is still there.

I also tested this with the latest theme update and found no issues: http://screencast.com/t/zsdM50Thjv

Thanks!

SilvioTO
tagDiv Member

I don’t know how to clear cache of wordpress or theme, please say me.

Yesterday I explained to hosting my problem and in the server log there’s a php memory errors (this is from this morning):

[Tue Feb 03 10:32:27 2015] [warn] [client xx.xxx.xxx.xxx] mod_fcgid: stderr: PHP Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 7680 bytes) in /xxx/xxxxxxx/xxxxxx/ildragoparlante.com/public_html/wp-includes/class-feed.php on line 39, referer: http://ildragoparlante.com/wp-admin/

I send it now you warm about admin-ajax.php.

I don’t have any problems or errors on saving options in the theme panel when jetpack and seo plugins are disabled.

load-sc...ver=4.1 (riga 4)
POST http://ildragoparlante.com/wp-admin/admin-ajax.php

200 OK
1.11s
load-sc...ver=4.1 (riga 4)
POST http://ildragoparlante.com/wp-admin/admin-ajax.php

200 OK
586ms
load-sc...ver=4.1 (riga 4)
IntestazioniPostRispostaJSONCookie

{"wp-auth-check":true,"server_time":1422958238}

POST http://ildragoparlante.com/wp-admin/admin-ajax.php

200 OK
819ms
load-sc...ver=4.1 (riga 4)

200 OK
729ms
load-sc...ver=4.1 (riga 4)
POST http://ildragoparlante.com/wp-admin/admin-ajax.php

200 OK
558ms
load-sc...ver=4.1 (riga 4)

  • This reply was modified 11 years by SilvioTO.
Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your site and social counter seems to work: http://screencast.com/t/ivqJgDDn
http://screencast.com/t/MrHLSMpkUc1n
http://screencast.com/t/4t9UDtgoGe35

Also I see that it is added a post created yesterday: http://screencast.com/t/Gy4IVtDawzb4
For the other issues please deactivate all plugins, leave only Visual Composer active, also make sure you empty cache and purge files if you use CDN host service.

Thanks!

Bryson T
Participant
#0

Have ads in content top and bottom that I’m turning off for mobile and tablet portrait, but they’re still showing up. Checked the cache and cleared browser cache but I’m still having the issue. Can’t think of anything else that could affect this, so seems like a bug to me. That sound right?

Thanks.

Viewing 25 results - 28,551 through 28,575 (of 29,810 total)