If you read SEO Errors on Page Web Analytics “Speed Insights” you should: Switch your WordPress Blog to a “Static” Homepage, see section “Read” Create a “Custom” Link for the Blog View at Appearance, then go “Menus” Check after Changes again with SEO Tools !! Following Day’s My custom Blog URL: https://www.linuxonlinehelp.eu/?post_type=post Echo: The Problem is that Web Crawler or Robots cant read the dynamic generated Pages of the WordPress Blog View
Category: Wordpress
Webserver Port 80 open or close
If you hold a website and use SSL/HTTPS with Certificates theres is often the question should i block Port 80? The most Admins think after the Major Changes of the Browsers to pull first HTTPS Port 443 they can close the HTTP Port 80. But you should NOT do it! Why? most Bots scan at first Port 80 for Content or for Listening Web Servers. More Details: https://letsencrypt.org/de/docs/allow-port-80/
Startup Blogging? Useful to know
..if you like to startup blogging or hosting a Website at Europe: you should read this first!! https://stylepeacock.com/dsgvo-fuer-blogger/ https://stylepeacock.com/abmahnung-bloggertipp/ https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Datenschutz/ https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Datenschutz/Die-EU-Datenschutz-Grundverordnung/Fallbeispiel/ https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Internetrecht/ if i find more on i publish more useful links
DSGVO GDPR Rules
If you resume your Blogging like me, you should know a lot of new Guide Lines on the Internet Laws at European Union. The daily Problem is that you have to read the Laws as Webmaster frequently and then update your Websites. useful Links: https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Datenschutz/ https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Datenschutz/Die-EU-Datenschutz-Grundverordnung/Fallbeispiel/ https://www.ihk-muenchen.de/de/Service/Recht-und-Steuern/Internetrecht/
Howto: Create qrcode image command line
If you need digital bookmarks to share as Pic on social media do: Install qrencode : sudo apt-get install qrencode then as user: qrencode -o qrcode.png 'www.linuxonlinehelp.eu My Blog' Result:
WordPress Cleanup Speedup Source Code
Remove all Emoji Code at the Header which is always pulled! (Homecall) go to your themes folder and add last area at functions.php: remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles'); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'admin_print_styles', 'print_emoji_styles' );
WordPress Anonymous Comments DSGVO
To set this for Privacy DSGVO protection do: enable Comments at WordPress Settings discussion! go to your Theme folder search functions.php insert: function wpb_alter_comment_form_fields($fields) { unset($fields['author']); unset($fields['email']); unset($fields['url']); return $fields; } add_filter('comment_form_default_fields', 'wpb_alter_comment_form_fields'); edit style.css insert as last lines: .comment-notes { display:none; }
Social Bots the Business Killer
If you have a small Company and you want to raise up your Startup Business you often asked to buy Support by Developers (eMail) or Big Data Companies (goo, fb .. etc.) to use their Marketing Tools like Social Bots, automated Scripts and more.. But take care this can be your Business Killer cause: Trust is lost if Bots are recognized by the Users too much Ads or Trash Posts forces Humans to leave if trust is gone the Users logoff from current Social Media Channel, for example “fb” loses much Users last time and was enforced to integrate new […]
WordPress Gutenberg Editor fails on modsecurity2
If you use modsecurity2 Plugin Filter on a Apache2 / Apache24 Setup then on my Blogs Gutenberg fails to SAVE Pages and Drafts. Workaround: Install the old but useful “Classic Editor Plugin” and replace Gutenberg for all Users! Background: It seems the lastest stable mod_security2 Rules not modified for Gutenberg post urls!
Convert WordPress Blog into Static Websites
For some reasons you want to convert your WordPress with Linux Tools into a Static Website: low level Hosting no SQL + PHP for higher Security Then open a Terminal and enter into a Text Editor: nano wp2statis.sh: #!/bin/bash wget \ –recursive \ –no-clobber \ –page-requisites \ –html-extension \ –convert-links \ –restrict-file-names=windows $url-of-site exit 0 Advantage? wget runs on most WP-Themes low Load on the convert Process Script can be used to run by Cron automaticly every Night !
Website Speed Test with Linux
If you own a Blog and want to check the Speed with your local Linux Computer use a commandline tool called curl. Open a Terminal and enter: curl -o /dev/null -s -w 'Connect: %{time_connect}\nStart Transfer: %{time_starttransfer}\nTotal: %{time_total}\n' https://www.yourdomain.de System Echos: Connect: 0,084774 Start Transfer: 0,173280 Total: 0,228651 Advantage? You will see the Website Load Time of Users at your Location (Country Area) You can check “high performance Clouds” vs. “bare metal Servers” or “virtual Hosting” You see that mostly expensive Hosting is wasted money cause “shared” IO V-Host is SLOWER! You get the real “felt” IO for Users who […]
WordPress Speed Test Optimization
If you use WordPress and you want to get better results on search engines and social media checkout: Load Speed at Google free Speed Analyser for Developer https://developers.google.com/speed/pagespeed/insights/ Reduce and Control the Plugins Reduce and Control Images at Content and Image Sizes 50-100 kb Limits Use latest PHP Version if possible 7.3 Use cached MySQL if available Result: If green your Job is done well.. cause old rule, LESS is often MORE
WordPress Themes SEO Rating
If you use WordPress for a Blog and you think about a Theme Change for a new Look you should now some points: Check new Themes for available Updates Check new Theme for User Feedback Check new Theme how often its downloaded, if often used Search Engines can handle the code Check the new Theme some Weeks and control active the Ranking on Search Engines (like Webmaster Tools), cause bad readable Code is ranked down or broken internal links and bookmarks can forward robots into nirvana Check the new Theme on various Browsers, Opera, Chrome, Firefox, IE, Mobile Browsers and […]
WordPress Bug Backdoor delete Files
Current a Major Bug is published up to WordPress lastest Release 4.9.6! The real Nonsense is that the WordPress Core Team did know it since Nov. 2017 !! And changes NOTHING! More Details here reported and a public review here
Backup daily WordPress Drupal Script
If you use Drupal or WordPress and you have a virtual Server with SSH Login you should set up a daily Backup Script to have a Snapshot of your Blogs if Hackers insert SQL Code Injections or hack PHP Sites. Cause you cant NEVER know every EXPLOIT of every used Plugin (here less plugins is more!) Of course you can daily or hourly RESTORE AUTOMATIC by CRON your Blogs by OVERWRITE bad inserted STUFF! Howto? Article comming soon !! .. sorry have current not enough time.. or read my Wiki for MYSQL and WordPress Help! Daily or hourly restored […]
WordPress App Bug Role
If you use the wordpress app to publish posts you must set the User Role from Author to Editor, if not you got errors to upload post updates!