Search Results for 'system status'

Results from the Forum
Bogdan B.
tagDiv Staff

Hello,

Please disable all plugins except visual composer, clear cache and reset cdn files if you use it.
if you have the ‘wordfence’ plugin, please set the firewall to learning mode for the theme panel to work properly. Also you can check your system status and increase the parameters according to this guide:
https://forum.tagdiv.com/system-status-parameters-guide/

Thank you!

Catalin
tagDiv Staff

Hello Adi.Wibowo,

Please ensure that you are using the latest version of the theme (Newspaper 7.4) with the latest version of Visual Composer 4.12.1 which come bundled with the theme. Clear all your caches, purge CDN files if you are using the CDN system and test it again. Also, please check your system status and try to increase the parameters to the higher value of them, according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/

Hope this helps and let us know how it goes!

Thanks.

Bogdan B.
tagDiv Staff

Hello,

If the system status was not the cause of it please also try it without any plugins. Disable all of theme except visual composer, clear cache and reset cdn files if you use it.
If the problem is still there, please regenerate all thumbs using the “force regenerate” plugin
Another possible fix is adding "SetEnv MAGICK_THREAD_LIMIT 1" to the htaccess file.

Let us know how it goes.
Thank you!

Catalin
tagDiv Staff

Hello letsteach,

Thanks for your video explanation. So, first of all, please try to check your system status and try to increase all the parameters to the higher value, according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/ If your problem is still there after this advice, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can further inspect the issue. Also, please provide the link of this topic so we can easily identify you.

Thanks for your understanding!

skmg
Participant
#0

Hi, Also getting this error when clicking on Plugins Tab in Newspaper 7 System Status Panel.

Fatal error: Access to undeclared static property: td_global::$theme_plugins_info_list in /home/content/a2pnexwpnas02_data03/31/3451231/html/wp-content/themes/Newspaper/includes/wp_booster/wp-admin/panel/td_view_theme_plugins.php on line 59

skmg
Participant
#0

This is the error code I get when I click on the system status tab in Newspaper 7 Panel.
What’s happening?

Fatal error: Call to undefined function td_is_td_mobile_plugin_active() in /home/content/a2pnexwpnas02_data03/31/3451231/html/wp-content/themes/Newspaper/includes/wp_booster/wp-admin/panel/td_view_system_status.php on line 144

Nano
tagDiv Member

@Chris: No issue! Happy to know that you don’t use Mobile theme. Now I will keep using Mobile responsive version of desktop theme in peace till they add some more features to it 🙂

Hello Ing Geek ,

Happy to see you here 🙂

Now I am really upset about my server. Just one month before, I shifted from Hostgator shared hosting to this new Managed WordPress hosting site powered by Google Cloud. I just read that it uses NGINX caching.
(Does it mean I can’t use Apache server based optimization techniques written by Chris> Though the system status under theme panel says it’s CentOS/Apache Server )

In this way, it must be a very powerful and strong platform. But then why is it having ” very large waiting and blocking time on timeline resource”? Is it because I asked them to deactivate all caching from my website?

I have asked a set all the questions raised by Chris above to my hosting provider and now waiting for their reply ( Saturday , Sunday support off) . My server is based in London and they do offer assistance for the modification of PHP variables.

I have also gone through your Spanish optimization code and have noted it down. I am not sure which code I should use but will surely give it a try. ( Sometimes I really think I should be a computer engineer , not electrical )

Let me if you know if you have any other optimization ( or any other ) feedback for my site.

Thank you for your insights.

  • This reply was modified 9 years by Nano.
Nano
tagDiv Member

Hey Chris,

Gracious !!!

Thank you for the detailed explanatory reply. As far this system status ( https://snag.gy/P2ApmR.jpg) to be believed , my host run on Apache server and hence the HTACCESS codes written by you under this thread should be valid.

As per recommendation, I started my HTACCESS file with :


<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters collapse_whitespace
ModPagespeedEnableFilters remove_comments
ModPagespeedEnableFilters rewrite_images
ModPagespeedEnableFilters insert_dns_prefetch
</IfModule>

and then I added following code after default rewrite codes of 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>
 
<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml
 
  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\.0[678] no-gzip
  BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>
 
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?tomatoheart.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ – [NC,F,L]

The last code is to prevent hotlinking. Now as far I can read understand from your comment , the above written codes must have taken care of the required gzip/deflate settings through HTACCESS and should add up to 20 points to my score , but it didn’t happen 🙁

I still have these settings under htaccess and have also modified functions.php but the icrement in Pagespeed is only 2-4 points. On other side, I do feel my backend and homepage little faster while using after adding all these things. But there is no such impact on GTMAtrx score.

As you have mentioned :


Enable compression for the following resources to reduce their transfer size by 424.8KiB (79% reduction).

When I have already configured HTACCESS to compress it, why is it still showing there? AM I doing something wrong?

About Image optimisation thing, I use “Insanity plugin” to reduce file size while uploading the image and”optimus plugin” to compress it. the JPEG compression is set to 70 because I am worried to set it to 50 ( as recommended by you) because of the need of image quality. Since I am doing various changes, I will force regernerate and optimise images once I finalise all design aspect of my site.

Though I also tried checking GTMatrix points for my post page ( https://gtmetrix.com/reports/tomatoheart.com/vW3rCLXw ) , but it’s even worst than the homepage ( PAGESPEED SCORE: 53, YSLOW: 51)

about your second reply ( server side optimisation) , Being fron a non-programmer background, I will copy this comment and send it to my hosting provider to ask if they need to do anything.

Do you think there is something you can comment on my current situation.

Thank you.

  • This reply was modified 9 years by Nano.
Sylvia
Participant
#0

Hello,

I had activate latest TagDiv Speed Booster, but it said Plugin Disabled, incompatible plugin detected: akismet/akismet.php

Why was incompatible with akismet??

Here is Screenshoot of my Newspaper system status :
Speed Booster Disabled

Nano
tagDiv Member

Hi Bogdan,
I have already setup the get-header related soultion provided by your and Andrei. I haven’t expereinced nor been reported by any of my authors for any such new errors but even before, it used to appear only few times. Let’s see if gets solved.

and yes, based on https://forum.tagdiv.com/system-status-parameters-guide/ , my hosting system is 2 times more capable than the recommended requirment set written there. My memory limit set to 128MB by hosting provider based on my request and it’s google cloud based capable managed WP hosting service.

Do you think in any possible way the “get header” issue can cause “fatar error” too ? just asking.

I will keep you updated if I will get reported again about this.

Bogdan B.
tagDiv Staff

Hi,

I cannot say for sure if the errors are related. It looks like a hosting error to me.
Did you increase your system status parameters according to our guide? https://forum.tagdiv.com/system-status-parameters-guide/ it could e a memory issue or it could be related to the get header but we have no reports of this yet. Just making assumptions. sorry.
Try the method me and Andrei posted above to make a redirect to the homnepage on the get_header code and see if you still get the errors.

Thanks

Bogdan B.
tagDiv Staff

Hello,

Please increase your system status parameters according to this guide: https://forum.tagdiv.com/system-status-parameters-guide/

Thank you!

Nano
tagDiv Member

Sorry one mistake in my second last comment:

If the system panel status is to be believed- My Speedbooster plugin is not active : https://i.snag.gy/SO0ZFB.jpg

Nano
tagDiv Member

If the system panel status is to be believed- My Speedbooster plugin is active : https://i.snag.gy/SO0ZFB.jpg
May be it still move some CSS file to the footer but you are in better position to say if this can happen.

Ye, we do use WP Super cache as well as CloudFlare for speed optimization but currently, I have deactivated both to see the live version of my site instantly because I am doing lots of customizations these days.

Do caching works for fonts? I mean I optimize my site using Super cache and CloudFlare. Will it preload these fonts so that visitors won’t be able to notice this re-writing from happening ?

About the method to change the font directly in style.css here: http://screencast.com/t/fgEWZiXyZB9 , do the arrowed place to change the font family will change the default font not just for the title ( H1) but also for H2, H3,H4,H5,H6 all right?

I have uploaded “BentonSans Cond Bold” font using theme font uploading option, putting it’s name under the mentioned place in style.css at http://screencast.com/t/fgEWZiXyZB9 will work? Do I need to search for the name of the font family of “BentonSans Cond Bold” or simply putting this name there will work?

Thank you for all your help.

Nano
tagDiv Member

But my speedbooster is deactivated this time ( as per system status) and I haven’t activated any Super Cache or cloudlfare at this time 🙁

Catalin
tagDiv Staff

Hello ashishmahajan1,

Please ensure that you are using the latest version of the theme (Newspaper 7.3) and Visual Composer (4.12) and also, please check your system status to be increased to the higher value of them according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/

Hope this helps and let us know how it goes!

Thanks for your understanding!

Catalin
tagDiv Staff

Hello jauburn,

Please ensure that you are using the latest version of the theme (Newspaper 7.3) and Visual Composer (4.12) and also, please check your system status to be increased to the higher value of them according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/

Hope this helps and let us know how it goes!

Thanks for your understanding!

Andrei L.
tagDiv Member

HI

You can’t remove the requests to admin-asjax.php file as this is a very important resource from WordPress core. The theme makes many requests to this file when ajax pagination is used.
Please make sure that your sever meets theme’s requirements: https://forum.tagdiv.com/newsmag-requirements-for-newsmag/ and also check if the parameters from system status have the values indicated here: https://forum.tagdiv.com/system-status-parameters-guide/

Thanks!

Amit
tagDiv Member

Solution for 1
Once you done with the modifications on theme or website, clear cookies.

Solution for 2
To fix Author name issue just paste below code in the mobile theme’s custom code box:

.td-post-author-name div { display:inline; }

Solution for 3
You can use W3 Total cache; the problem arises only when you activate minify function in the plugin. (Issue: Images don’t load)
If you want to activate minify feature in W3 total cache plugin, use Auto minify and disable lazy load option from the theme panel. Instead use lazy load plugin.

Solution for 4
Don’t use jetpack sharing feature; theme has inbuilt sharing buttons which give an eye-catching look which improves sharing rate.

Solution for 5
To activate speed booster plugin, install and activate plugin, go to theme’s system status and check if its active
Refer screenshot – http://prntscr.com/cdzuvv
If it’s showing like this http://prntscr.com/cdzwzo
then copy the underlined stuff add it in td-speed-booster.php file.
To add code follow steps
Go to plugins section http://prntscr.com/cdzy2a
add like this http://prntscr.com/cdzypw and save
now recheck if the plugin is active if its showing disabled and some other link then repeats above steps.

ntvweb
Participant
#0

the system status says: WP Memory Limit 40 MB/request – but I double checked and it was at 64 – i increased it again to 256MB … but the system status still says 40.

Advice?

Andrei L.
tagDiv Member

Hi

Please make sure that the parameters from system status have the values indicated in our documentation: https://forum.tagdiv.com/system-status-parameters-guide/ Also you can try Force Regenerate Thumbnails plugin as an alternative to regenerate your thumbs.
Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and we will inspect this issue as soon as possible, also include a link to this topic.

Thanks!

Catalin
tagDiv Staff

Hello sportpeoplecz,

Please ensure that you are using the latest version of the theme (Newspaper7.3) with the latest version of required plugins (Visual Composer 4.12 and Social Counter 4.1). Also, please check your system status to be increased to the higher value and otherwise please try to increase them according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/

Hope this helps and let us know how it goes!

Thanks for your messagE!

Catalin
tagDiv Staff

Hello eizaz,

Please ensure that you are using the latest version of the theme (Newspaper 7.3) and Visual Composer (4.12) and also, please check your system status to be increased to the higher value of them according to our documentation here -> https://forum.tagdiv.com/system-status-parameters-guide/

Hope this helps and let us know how it goes!

Thanks for your understanding!

Bogdan B.
tagDiv Staff

Hello,

The answer uis yes for your first 2 questions. Speedbooster only has that list of compatible plugins and in the system status it will show the first incompatible plugin it detects as it only takes 1 to deactivate the plugin. it will detect the first one ad not detect the others as it deactivates itself.

We have not tested ‘white listing’ any plugins from the code. if you add plugins to the list you might as well remove the detect function and be done with it. You must simply remove the highlighted part and the function will not be there anymore. However speedbooster was only tested with the compatible plugins. We cannot guarantee it will work with any other plugins. It will be a trial and error situation if you plan on using it with all your plugins. For some it may work an move the css and js but for other it could not. Some pl;ugins actually require the css and js to stay at the top and not moved to footer. There are quite a bunch of situations you can face. that is why we added the compatibility in the first place.
this is the cause of your issues with the YTSubscribe and Facebook Login JS/CSS. Speedbooster probably cannot manage to find their id;s or to move them to footer. If speedbooster cannot do this you can try another such tool as our plugin is not the only one that can move js and css to footer.
You can try some of these alternatives as well:

https://www.google.ro/search?num=100&safe=active&espv=2&q=how+to+move+render+blocking+css+and+js+to+footer+wordpress&spell=1&sa=X&ved=0ahUKEwjwy5mW3e3OAhUJOhQKHbJfCcUQvwUIGSgA&biw=1920&bih=1075

I hope this helps.

Nano
tagDiv Member

Thank you for the response and clear instructions .

Few things-

As of now I have 25+ plugins installed under the wordpress while as I can see in the screenshot http://screencast.com/t/RZLIOPUNdqh , there are almost 10 plugins whitelisted under TDbooster.

Does it mean that having any other plugins other than these 10 plugins will automatically disable the TDbooster even if it is activated under the plugin dashboard. Right?

But then on my “system status “dashboard ( see here : https://i.imgur.com/rpcyRvM.jpg ) why it’s showing only one incompatible plugins even though there are 15+ plugins which are activated but not whitelisted under the tdbooster plugin? Or is it because under the “system status” it can only show one name, no matter even if other plugins are also causing compatibility ?

Now about the workaround solution:

1. Can I whitelist the incompatible plugins ( in this case the one plugin name “adminise” shown under system status ) If yes then what code should I write there under the TDbooster .php file.

2. The second method you said is to remove ( or commenting out) the code which causes the restrictions on incompatible plugins and hence I should remove the codes shown here http://screencast.com/t/RZLIOPUNdqh .

Right?

And you somehow missed to respond on the point no-5 in my previous comment where I tried to detect the JS/CSS files but couldn’t achieve the desired result. I am copying the same question here again:

5. I tried to move the JS, CSS files under footer based on the instructions given here: https://forum.tagdiv.com/how-to-make-the-site-faster/ . I extracted and copied the list of registered JS and CSS files in a text file ( Look here: http://pastebin.com/D5CAive8 )

but then I compared it with my blocking JS/CSS listed under Pagespeed ( look here: http://pastebin.com/EH2uS3Pz )

But the problem is, almost none of the JS/CSS files listed under Pagespeed is matching with the one I extracted from my sites using functions.php code. For example- As per Pagespeed, I can see that YTSubscribe and Facebook Login JS/CSS files are causing issues, but I can’t find it under the extracted list.

Please take your time and help me to achieve greater speed and performance of my site. I am worried because just few days back under my old themes, I used to have 97 Pagespeed score and 90 Yslow scores but currently it’s too bad 🙁 ( Have a look at my speed scores on 20th august 2016 snapshots: https://i.imgur.com/JbnKtAO.png )

Thank you.

Viewing 25 results - 3,826 through 3,850 (of 4,331 total)