Search Results for 'cache'

    No search results were found in Documentation!

Results from the Forum
Vlad S
tagDiv Staff

Hello !

This is how we see your website at the moment: https://www.screencast.com/t/1pamsKj5zbD2 Please make sure that your cache is clear. Also try creating an editor test profile and reproduce this, when this happens please send us some screenshots of the error.

Thank you !

Ljupche
tagDiv Member

Hello,

That seems to be working now. It’s pulling the correct numbers. It was probably cache, but not 100% sure.

Thanks,
Ljupche

kibiribi
tagDiv Member

Hello Vlad, I’ve changed WP Super Cache accroding to the Article – after that I’ve faced with main page issue – watch video https://drive.google.com/file/d/14J4uE8HvnndE1N3oafqgLBCK4BuhtDUr/view?usp=sharing
did you see this main page ok ? https://emagazin.info

gepdaily
tagDiv Member

I have done this. I maybe Yoast…but this is supposed to be compatible. I am getting “Not Connected” errors to the point that my staff cannot work.

Also in the error logs:
td-composer/td-composer.php on line 114
[Thu Oct 22 14:21:55.926075 2020] [php7:warn] [pid 1320] [client 114.119.128.236:2444] PHP Warning: Use of undefined constant TDC_PATH_LEGACY – assumed ‘TDC_PATH_LEGACY’ (this will throw an Error in a future version of PHP) in /mnt/web/gepdaily/wp-content/plugins/td-composer/td-composer.php on line 114

Just started showing up.

Theme config
Registration key i e34cabba – **** – **** – **** – 690a391f3818 Reset key
Theme name i Newspaper
Theme version i 10.3.7
Theme database version i 10.3.7
HTTP channel test wordpress
Theme Mobile Newspaper mobile version
php.ini configuration
Server software i Apache
PHP Version i 7.4.7
post_max_size i 80M – You cannot upload images, themes and plugins that have a size bigger than this value. To see how you can change this please check our guide here.
max_execution_time 60
max_input_vars 4000
SUHOSIN installed false
PHP extensions
mbstring available
GD library available
WordPress and plugins
WP Home URL i https://gephardtdaily.com
WP Site URL i https://gephardtdaily.com
WP version i 5.5.1
WP multisite enabled i No
WP Language i en_US
WP Memory Limit 1 GB/request
WP_DEBUG False
Caching plugin WP super cache – for best performance please check the plugin configuration guide here.

Happy to let you into my site….need a google email address.

Vlad S
tagDiv Staff

Hello !

Please make sure to clear your cache. We have tested your website and as you can see here this works on our side: https://www.screencast.com/t/NY6bOcfIaI

Thank you !

Vlad S
tagDiv Staff

Hello !

Please make sure to clear your cache. We have tested your website and as you can see here this works on our side: https://www.screencast.com/t/NY6bOcfIaI

Thank you !

Vlad S
tagDiv Staff

Hello !


@sagoralibd
we will reply to you via e-mail.


@Benjouy_NA
Please try to reinstall the tagDiv composer and make sure to clear the cache.

Let us know the result !

Thank you !

Vlad S
tagDiv Staff

Hello !

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Thank you !

Vlad S
tagDiv Staff

Hello !

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Thank you !

Calin
tagDiv Staff

Hi,
The footer can be edited only from frontend, edit a page/post template with tagDiv Composer and go down to footer, or if you want to assign one, use the manager -> https://i.imgur.com/Q5PeHkp.png (the footer templates does not have the button to be edited in backend).
Also now I can see the footer and the page seems to be display correctly -> https://i.imgur.com/qwN88ZB.png but indeed sometimes appears the mobile version, this can be from the cache plugins you are using.
Hope this will help you to understand how footer templates are work!
Thank you!

orionlabs
Participant
#0

Hi,

centumcellae.it uses wp 5.5.1 latest version of newspaper and all plugins are updated. It is an online magazine and has almost 70,000 posts (select count (*) from wp_post returns 69,700 or something like that)

It happens that when you publish, or to be more precise, a few seconds later in particular sometimes for several minutes the site is very slow both in the front end and in the back end and we see that there are from 4 to more than twenty sometimes queries as below
SELECT SQL_CALC_FOUND_ROWS wp_posts. *, wp_sticky.sticky_status

I don’t know if it depends on wp fastest cache (which deletes the cache after i publish a new post) or if it depends on newspaper (maybe it’s too heavy?).

the fact is that we added the code below to the functions.php which gives rise to a critical error of wp. How can I solve? Help! Thank you very much

if ( ! function_exists( ‘wpartisan_set_no_found_rows’ ) ) :

/**
* Sets the ‘no_found_rows’ param to true.
*
* In the WP_Query class this stops the use of SQL_CALC_FOUND_ROWS in the
* MySql query it generates. It’s slow so we’re going to replace it with
* a COUNT(*) instead.
*
* @param WP_Query $wp_query The WP_Query instance. Passed by reference.
* @return void
*/
function wpartisan_set_no_found_rows( \WP_Query $wp_query ) {
$wp_query->set( ‘no_found_rows’, true );
}
endif;
add_filter( ‘pre_get_posts’, ‘wpartisan_set_no_found_rows’, 10, 1 );

if ( ! function_exists( ‘wpartisan_set_found_posts’ ) ) :

/**
* Workout the pagination values.
*
* Uses the query parts to run a custom count(*) query against the database
* then constructs and sets the pagination results for this wp_query.
*
* @param array $clauses Array of clauses that make up the SQL query.
* @param WP_Query $wp_query The WP_Query instance. Passed by reference.
* @return array
*/
function wpartisan_set_found_posts( $clauses, \WP_Query $wp_query ) {

// Don’t proceed if it’s a singular page.
if ( $wp_query->is_singular() ) {
return $clauses;
}

global $wpdb;

// Check if they’re set.
$where = isset( $clauses[ ‘where’ ] ) ? $clauses[ ‘where’ ] : ”;
$join = isset( $clauses[ ‘join’ ] ) ? $clauses[ ‘join’ ] : ”;
$distinct = isset( $clauses[ ‘distinct’ ] ) ? $clauses[ ‘distinct’ ] : ”;

// Construct and run the query. Set the result as the ‘found_posts’
// param on the main query we want to run.
$wp_query->found_posts = $wpdb->get_var( “SELECT $distinct COUNT(*) FROM {$wpdb->posts} $join WHERE 1=1 $where” );

// Work out how many posts per page there should be.
$posts_per_page = ( ! empty( $wp_query->query_vars[‘posts_per_page’] ) ? absint( $wp_query->query_vars[‘posts_per_page’] ) : absint( get_option( ‘posts_per_page’ ) ) );

// Set the max_num_pages.
$wp_query->max_num_pages = ceil( $wp_query->found_posts / $posts_per_page );

// Return the $clauses so the main query can run.
return $clauses;
}
endif;
add_filter( ‘posts_clauses’, ‘wpartisan_set_found_posts’, 10, 2 );

WP 5.5.1

PLUGINS
AddToAny Share Buttons
AdRotate
Advanced Ads
BestWebSoft’s Like & Share
Custom Sidebars
Disable Gutenberg
Duplica pagina
Embed Plus for YouTube – Gallery, Channel, Playlist, Live Stream
Google XML Sitemaps
Jetpack by WordPress.com
ONE SIGNAL
Re-Add Text Justify Button
Really Simple SSL
Responsive Like Box
Restrict Categories
Simple YouTube Responsive
tagDiv Cloud Library
tagDiv Composer
tagDiv Newsletter
tagDiv Social Counter
tagDiv Standard Pack
the_excerpt Reloaded
Widget for Social Page Feeds
Wordfence Security
WP Migrate DB
wp fastest cache
WP-Sticky
YouTube Embed WpDevArt

PHP 7.4
wp 5.5.1

Server info
S.O. Linux webxc302s03.ad.aruba.it 3.10.0-862.2.3.el7.x86_64 # 1 SMP Wed May 9 18:05:47 UTC 2018 x86_64
Apache webserver
Php 7.4.8
MySQL 5.5.62-38.14-log

Calin
tagDiv Staff

Hi SvijetS, I’m sorry for all the problems that we cause with this situation, normal the thing do not go like this, we can connect to our clients and fix the problem in few days, but this is from a good time, sorry for this.
So after the theme update it was add a category in post link? please re-save the permalinks (also check to see if those are still set like before) clear all cache and try again.
Another problem can be if there were some modifications in theme files or with some plugins before the update.
Thank you for your understanding!

Calin
tagDiv Staff

Hi,
I think that the problem was only from cache, now the Instagram images are displaying -> https://i.imgur.com/mji6Vz9.jpg
Thank you!

Vlad S
tagDiv Staff

Hello !

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Please note that at the moment the Support team is not 24/7 available. We answer the topics from Latest to Newest Monday – Friday from 08:00AM to 05:00PM GMT+2

Thank you !

Vlad S
tagDiv Staff

Hello !

This seems to be a caching issue since on your website at the moment is displayed the mobile theme. Please follow our guide and make sure that WP Super Cache has been installed properly: https://forum.tagdiv.com/cache-plugin-install-and-configure/

Let us know the result.

Thank you !

1fsij
Participant
#0

Hi,

Im currently having a problem on custom code theme, im trying to write custom javascript and html it doesn’t update/applied at all from the site.

im looking at the source file on browser the javascript code is always commented. I tried to disable cache, clear history, clean and resave it doesn’t work.

Kafraneokese
tagDiv Member

It works after reinstalling the composer and clearing cache.

Thanks so much.

Vlad S
tagDiv Staff

Hi,

Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv Composer, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

If the problem persist, please set this code in functions.php -> wp-content/plugins/td-composer/legacy/Newspaper/functions.php

add_action('admin_head',function() {
echo '<style>.td-gutenberg-editor .editor-styles-wrapper .wp-block {max-width:726px;}</style>';
});

Or you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.

Thank you!

Vlad S
tagDiv Staff

Hello !

Please try to remove the tagDiv Composer and re-install it. Also please make sure to check for a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Thank you !

Vlad S
tagDiv Staff

Hello !

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Thank you !

Vlad S
tagDiv Staff

Hello !

Please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.

Also please remove if you have any custom code through your theme and refresh.

Thank you !

Federico
tagDiv Member

I deactivated all plugins and cache and i still have same problem.

jornalggn
Participant
#0

Hello.

There is a function of the Newspaper 9 theme (I must keep this version for now) causing severe performance problems in my website.

I would like to know what this function does and what could happen if I simply disable it.

Thank you in advance.

– – – – – – – – – – – –

File:
Newspaper/js/tagdiv_theme.js

Function:

/**
* makes a ajax block request
* @param current_block_obj
* @param td_user_action - load more or infinite loader (used by the animation)
* @returns {string}
*/
tdAjaxDoBlockRequest: function(current_block_obj, td_user_action) {
//search the cache
var currentBlockObjSignature = JSON.stringify(current_block_obj);
if ( tdLocalCache.exist(currentBlockObjSignature) ) {
//do the animation with cache hit = true
tdBlocks.tdBlockAjaxLoadingStart(current_block_obj, true, td_user_action);
tdBlocks.tdAjaxBlockProcessResponse(tdLocalCache.get(currentBlockObjSignature), td_user_action);
return 'cache_hit'; //cache HIT
}

//cache miss - we make a full request! - cache hit - false
tdBlocks.tdBlockAjaxLoadingStart(current_block_obj, false, td_user_action);
//return;
var requestData = {
action: 'td_ajax_block',
td_atts: current_block_obj.atts,
td_block_id:current_block_obj.id,
td_column_number:current_block_obj.td_column_number,
td_current_page:current_block_obj.td_current_page,
block_type:current_block_obj.block_type,
td_filter_value:current_block_obj.td_filter_value,
td_user_action:current_block_obj.td_user_action
};

console.log('tdAjaxDoBlockRequest:');
console.log(requestData);

jQuery.ajax({
type: 'POST',
url: td_ajax_url,
cache:true,
data: requestData,
success: function(data, textStatus, XMLHttpRequest) {

tdLocalCache.set(currentBlockObjSignature, data);
tdBlocks.tdAjaxBlockProcessResponse(data, td_user_action);
},
error: function(MLHttpRequest, textStatus, errorThrown) {
console.log(errorThrown);
}
});
},

PaoloZ
tagDiv Member

Thank you Vlad,
of course I took care of clearing the cache. I’m experiencing problem with MacBook Air and a 13″ Windows laptop. Menus on header and footer show different fonts.
URL: http://www.thezeppelin.org

Thank you

Vlad S
tagDiv Staff

Hello !

Please make sure that your cache is cleared. Also let us know what devices you use and what should we check. Please provide a link to your website in order to inspect.

Thank you !

Viewing 25 results - 9,326 through 9,350 (of 29,810 total)