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
Tag: blog
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' );
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 […]
Google Webmaster Tools Twitter
Last Time i tried to integrate a Twitter Timeline into my blog but i found out that this ranked down my blog on Google Webmaster Tools cause Twitter sub connected Servers blocking Google Webmaster Bot from reading the timeline by own robots.txt so i stopped using Twitter Integration to fix. No Webmaster want show non indexed Informations and went back to the time of stones.. Twitter fails..
WordPress: Change User Password manual on mysql prompt
If you don’t want to use Passwords generated by wordpress itself, you can do it manual on a MYSQL Console howto: Login to your Webserver with the Database via encrypted SSH!! Login to the MYSQL Server Conssole with $ mysql -u username -p Enter Password, and change database with mysql>use database-name-of-blog Now Set Password for the User mysql>UPDATE wp_users SET user_pass = MD5('NEWPASSWORD-16-DIGITS') WHERE user_login = "THEUSERNAME"; System shows Echo: mysql> ok.. Changed 1 Row.. Quit mysql> exit Logout of SSH
WordPress: Move Blog to new URL Domain HTTP HTTPS on the MYSQL Console
Info: Today most Search Engines prefer Blogs who are offering “HTTPS” at the URL for secure direct connects to the Websites but this results a lot of headaches to the Website Developers. To be effective you should know: You have to offer HTTPS beside HTTP You should use a validated Domain Certificate, most Domain Resellers offer them for FREE You should know that NOT every FREE Certificate is TRUSTED by every Browser (green closed lock symbol at the adressbar) You have to Develop Websites WITH variable Format output ( PC, Tablet, Smartphone, Smart-TV, Infoboxes,) Design Websites and test 3:2, 4:3, […]
getsimple cms: blog plugin bug with mod_rewrite
Problem: If you use the “blog” plugin and move the blog roll to a other site or subfolder you have to recreate the “.htaccess” file. You find the “.htaccess” generator tool link inside blog plugin settings! recreate the “.htaccess” and put it into the root dir of your webspace .htaccess dump of a correct file if getsimple is installed to ./ AddDefaultCharset UTF-8 Options -Indexes # blocks direct access to the XML files – they hold all the data! Order allow,deny Deny from all Satisfy All Order allow,deny Allow from all Satisfy All RewriteEngine on # Usually RewriteBase is just […]
getsimple CMS the free slim lightweight CMS
getsimple is a very easy to handle Content Management System for free, it can be used for Homepages, Businesscards, Blogs.. Advantages: light no database framework opensource free fast easy to setup easy to move to a new domain offers backups tool offers recovery for posts extendable with plugins free themes clean design low system requirements for embedded Systems needs PHP5 and rewrite_module enabled on Apache offers debug Log to find errors Download Source: http://get-simple.info/ Community on google+ Screenshot:
Simple Protect WordPress Blog Server against Hacking
Simple Protect WordPress and own Apache2 Webserver go into WordPress Installation Folder edit wp-config.php and add line [CODE]define(‘FORCE_SSL_ADMIN’, true);[/CODE] save and close if you control your own Server and DSL Router disable Port 443 Access from Internet now http://mydomain.com/wp-admin is not reachable from Internet login to WordPress-Blog as Admin create new Adminuseer Named “mynewadmin” and relogin as mynewadmin delete default admin account, first set him to reader then delete the admin account if you use phpmyadmin on debian go to apache2 folder /etc/ and change alias from “alias phpmyadmin” to alias “safe123admin”,restart apache2, now phpmyadmin as http://mydomain.com/safe123admin/ Use only Plugins […]