Category: NERD

  • Choosing WordPress.com or go for Digital Ocean

    This is a big problem who are starting up their blogs and in future looking to monetize it. When you are ready to put all your effort into starting a blog. You think I have got a domain but should I host my blog on WordPress.com or go for other hosting services provider.

    If you have not considered it then you should rethink about it. The good hosting will determine how your blog will perform. No matter how well written your blog is or how interesting articles your blog is having. The hosting services for your blog play a very vital in its success.

    It is like buy a perfect car for the race. If your car is not good then your driving skills are pretty useless.

    So one of the immediate options for you is to go for WordPress.com. Yes, it is a good hosting decision which gives you right away getting a well manages web hosting suite, specially designed for WordPress. The personal plans look lucrative for the starter. It offers custom domains and some decent storage. But as your blog grows and your requirement grows so you need to change your plan. Then as you go for the higher plans you would get some premium options at a higher price. Well, the reason I am narrating this that if you are a person who doesn’t want to mess up with code or have no knowledge of coding then it is your best option to go for WordPress.com which caters your need under one roof.

    Don’t get confused with WordPress.org and WordPress.com. WordPress.org is a software website which provides WordPress software which is free to use and you would need as hosting company to install WordPress software to start your website. And WordPress.com is like pre-installed WordPress software ready to go and inbuilt hosting services under one roof.

    For those who want to try different than conventional hosting such as shared hosting etc. And also tried bit WordPress.com and want the little edge of convenience. Sometimes you underestimate your blog because you never know what requirement are.

    To handle the large request of users you need VPS hosting which you can easily manage the resources.

    Digital Ocean is one good host provider the plan just start for $5 a month and you can easily change the ram, storage as per your requirement with just a click of a button. In fact, the plans are charges on an hourly basis, so you cancel the plan anytime without paying for a whole month.

    WordPress can be installed on Digital Ocean with one click and your blog will be running on SSD drive within seconds.

    Why don’t give a try to Digital Ocean and if you are not happy just cancel it anytime you want. It is that simple, no monthly commitments.

    Click here to get your super deal.

    In the end, I just want to add that WordPress.com or Digital Ocean, you would need some tweaks to get perfect plugins and theme to make your blog a success.


     

  • Why are Canonical link URL important and improves your website search ranking

    Canonical link element in the HTML is used to remove duplicate URL’s in your website. Canonical  link or URL helps search engine to know which is master URL for your post.

    Imagine if you are having multiple URL for your website, like:

    https: https://moonshotcentral.com/

    http: https://moonshotcentral.com/

    https: https://moonshotcentral.com/main-index

    https: https://moonshotcentral.com/index

    Since search engine keep indexing your website from time to time. It is difficult for search engine to identify which is current version or which is the main page. For a search engine these are four different pages although all will open same page. The multiple URL’s can be for many reason and its very common in a CMS system like WordPress.

    One thing we should understand that search engine is not human and cannot assume things like we do. Computer works on definite command and we need to tell them what how they should function.

    So how to deal with this problem ?

    It is very easy to deal with this issue of duplication. All we need to do is to use <link rel=”canonical”> tag in HTML to tell the search engines your preferred URL for a particular page or post. So when you put this link tag in the HTML page then Search Engines know which URL is original and ignore other URL’s.

    How to use the canonical link in HTML ?

    <link rel=”canonical” href=” https://moonshotcentral.com/” />

    Where to use it ?

    You should use the canonical link tag in the head tag of the HTML

    <!DOCTYPE html>
    <html>
    <head>
    <link rel=”canonical” href=” https://moonshotcentral.com/” />
    </head>
    <body>

    </body>
    </html>

    How to do in WordPress, easy way?

    Most of the bloggers are using WordPress and are not familiar with HTML. In WordPress this can be done using Yoast SEO Plugin.

    canonical link tag URL WordPress yoast

    In the above example, you need to click on the gear button in Yoast SEO setting (this is below to your post) and there you can put the master URL for that particular page or post. That’s it.

    Compatibility with Search Engines

    Google, Yahoo and Microsoft announced support for the canonical link element. Basically is now standard tag which is recognized by all search engines.

    Now, the most important question. Does Canonical Tag improves search ranking ?

    Yes. It is obvious if search engines find duplicate content over the period of time, they will not find your website authentic. There would be cases where search engines will show irrelevant URL if Canonical Tag element is not used. Using Canonical tag you are telling you preference to search engine that which URL they should index.


     

  • See how to Fix Mixed Content Error in WordPress

    When you shift your site from Non-SSL to SSL, you may get mixed content SSL errors. So what are these Mixed Content Errors.

    Since earlier your site was running on Non-SSL, your site have pages or requests for HTTP, which is non-secure connection. Now after switching to SSL your site still may have older requests, posts and pages which can trigger warnings of non-secure website while browsing.

    In simple words, Mixed Content is url’s of videos, images, css etc which are HTTP but load on HTTPS request. These sometime confuse the users as well as browsers to identify the content is scure or not. For example if one typed https://moonshotcentral.com/ in a browser and the site is having a tag request like <img src=”https://moonshotcentral.com/image.jpg”>, this location is mixed content as image.jpg will not loaded or give warning to users of nonsecure page over an encrypted connection as https://moonshotcentral.com/.

    This can reality hurt your website performance. Imagine user accessing your site and received an error saying do you want to process, site is not secure. Most of user wont click unless you are really famous. Specially for small blogs this should not be ignored as their site ranking also may go down.

    Fix Mixed Content Error in WordPress

    First Step:

    You need to make your URL based on HTTPS and doing this by going to every post or images etc is a tedious process. Imagine having thousands of posts, this can be nightmare. Since links or URL of the WordPress post are stores in MySql database. You this do this by running a MySQL query in a single click. Awseome.

    You can run your MySQL query by accessing your phpMyAdmin panel. But if your don’t want to dirty your hands, you can simply do this installing a plugin called WP-DBManager. This plugin help you to keep your WordPress site database updated. When you install the plugin you can see that there is option called “Run SQL Query”. Click on this option, copy and paste query below in the box provided and click run. The replace the domain name with your domain name and some themes may have tables called wp_posts, so you can changes the table name from wpnu_posts to wp_posts

    UPDATE wpnu_posts SET `post_content` = REPLACE (`post_content`, ‘src=”https://moonshotcentral.com/’, ‘src=”https://moonshotcentral.com/’);

    What this query will do is that it was update table wpnu_posts (or wp_posts in some cases) and replace all your non HTTP urls with HTTPs urls in one go.

    Second Step:

    Make sure that website URL in the General setting is set to HTTPS. Below is a screenshot for reference.

    See how to Fix Mixed Content Error in WordPress HTTPS setting

    Third Step:

    Since you don’t want to leave any stone unturned, why not force all URLs including the Admin login to HTTPS.

    Locate your .htaccess file in root folder of the website folder and add the code below:

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

    For your Admin login pages you can do this by editing your wp-config.php file. This file can be found in your root folder of the website directory. Download the file on your computer local drive and open in notepad or any other editor to edit the php file. Just add the below code in the start at <?php.

    define (‘FORCE_SSL_ADMIN’, true);
    define(‘FORCE_SSL_LOGIN’, true);

    fix Mixed Content Errors

    Fourth Step:

    This step is for those people who are using Cloudflare CDN services for their website. Login to your CloudFlare account, select your site and go to Cryto section from the tab. Make sure your SSL is atleast selected as “Flexible” and Scroll down below and enable the Automatic HTTPS Rewrites.

    cloudflare mixed content setting

    Selected Strict full SLL in Cloudflare may throw error, so be slow and choose wisely depending on your hosting capabilities.


    If your website is still having issues with Mixed Content, you can try these two plugins:

    1. SSL Insecure Content Fixer

    2. Really Simple SSL

    We hope your our post was able to help you out to solve the Mixed Content Errors on your WordPress site. If your want to check that your site is working file you can click here to check it out.

    Make sure that you clear your website cache before testing.


     

  • Mozilla Firefox Quantum: Speed Unleashed

    Mozilla recently released its latest version of the Firefox Browser called Firefox Quantum. According to the Mozilla Foundation, this new browser is much faster and has a better user interface.

    Users who have tried this new browser highly recommend that you change your browser to Firefox Quantum or Firefox57.

    The new features include major improvements in speed. According to the Speedometer tests, the new Firefox Quantum performs at a speed which is twice as fast as Firefox52 which was released six months ago.

    Unlike Chrome which is famous for making your system very slow, with its new CSS engine, FIrefox Quantum enables parallel working across multiple cores. This helps by lessening the resource dependency on each individual core.

    In Chrome, there is no tab prioritisation which leads to all processes going parallel thereby choking your RAM. But Firefox Quantum prioritises tabs based on the order in which they are used. Quantum prioritises the current tabs you are working on as resources which is good for both you and the computer.

    According to tests conducted by Firefox researchers, it found that the new browser used about 30% less memory or RAM than Chrome. The result is that you can load more pages faster and operate at the same time. The speed of the browser is crucial for its popularity.

    firefix quantum
    Credit: Mozilla

    Quantum also comes with private browsing controls that will block ads and not keep track of user’s history.

    Another new feature it Firefox Screenshots which will make it easier to cut and save any part of your browser screen.

    For those who don’t understand the technicalities, let’s just put it this way: Firefox Quantum is a new browser that’s neat, loads websites faster and sports a new look.

    Here’s a sneak peek to check out the new Firefox Quantum. We hope you enjoy it.

     


     

  • See if you can use Google AdSense and AdWords together

    If you are wondering whether you can use Google AdSense and AdWords together, then this article is for you to understand them before you take this step. This becomes more important when your earning is dependent on your website through ads.

    When you are struggling to get traffic on your website, you try to do different things. Traffic to your website can come from many sources like social media, subscriptions, paid advertising programmes such as AdWords, Outbrain, Taboola etc.

    In this article we will discuss the issues that you may come across when you are running AdSense and thinking of using AdWords to drive traffic to your website.

    AdSense is a Google program where you can monetise your website quickly. When you use AdSense on your website, it puts contextual target ads which blends with your website. Google then pays web publishers for the ads displayed on their site based on user clicks on ads or on ad impressions, depending on the type of ad. It is very widely used and almost found on every publisher’s website.

    On the other hand AdWords is a Google program where you can advertise your product or website to drive traffic to a particular desired point. Since Google has an immense number of users using Google search, AdWords become a lucrative choice for the advertisers. AdWords offers a number of option like whether you want to display your link on Google search or product images on their partner websites etc. When a user of AdWords program creates an ad, it is either shown on Google searches or on websites which are using AdSense. There is a deep connection between the AdWords and AdSense.

    Now lets come to the point. Google AdWords’ policies specifically states that it prohibits “Abusing the ad network“, which to our understanding means that AdWords should be used to drive traffic solely to your website and not to use the same for diverting users to other websites or gateway destinations. If you go through the Google AdSense policies it also specifically states that “Publishers may not ask others to click their ads or use deceptive implementation methods to obtain clicks.”

    Care should be taken because you are trying to become both Advertiser and Publisher for your own website using Google network.

    If you are keen on promoting your website through AdWords and your website is running AdSense, make sure that the landing page of your AdWords ads does not have ads especially AdSense.

    A lot of starters tend to think that Google wont notice or will not able to catch them but remember Google is in this business for a very long time and their system has come across these issues on an almost daily basis. Please note Google take their terms and policies very serious and if you violate their terms, it may lead to suspension of your AdWords or AdSense account.

    In conclusion, it is o.k. to run AdWords when your site is using AdSense but don’t make ads to encourage clicks and keep your landing page ad free. You may use AdWords to promote your website or business. Remember, play fair with Google and you can make big money.

    You should read what Google has to say about this.


    Disclaimer : This Article is meant to serve only as a quick reference by the User, as it may not be complete or exhaustive, covering all aspects of the matter. moonshotcentral.com/ would not be responsible for any damage or loss to any person on account of any action taken purely based on this Article. It is not intended to replace any professional advice, opinion or suggestion which may be necessary before acting in any manner.


     

  • Its showdown, WordPress vs Drupal vs Joomla

    WordPress, Drupal or Joomla are the three top contenders when it comes to Content Management System (CMS). Without any doubt, WordPress is the undisputed king in this arena. But there are a fair number of people who are using other CMSes like Drupal or Joomla. Each one of them offers their pros and cons. Since choosing a CMS is the foundation of your website or blog, you should know what they are offering. Below is an infographic which would help you to have a snapshot of the differences among them.

    wordpress vs drupal vs joomla 2017


    Infographic Courtesy: Websitehub.com


     

  • Excel plus sign and insert row not working? See the solution

    Are you worried that the drag sign and insert row option in Microsoft Excel not working? If yes, don’t worry. We will provide you with the result oriented solution.

    Microsoft Excel is part of almost every working professional and a life saver for accounting people and nightmare for some. MS Excel can perform many operations and can be used in different manner by different people. It is said that it has become so vast that you will need to spend some good time to master it.

    But let’s not digress and go back to our topic, i..e plus sign in Excel is not working right or missing ? Here’s the solution for that.

    See how to make plus sign in MS Excel 2007 work or show:

    1. Open Excel.

    2. Go to Excel Option.

    3. Select Advances from the left side options. Click on checkbox option “Enable fill handle and cell drag-and-drop”.

    Below is the screenshot of the option you need to enable.

    plus sign excel option

    The second part of this article is if you are not able to insert row in Excel. Here is the solution

    See how to enable the insert row option in MS Excel 2007:

    1. Close Excel windows that are open.
    2. Open Microsoft Windows Explorer, go to address bar and type : “%appdata%\Microsoft\Excel”. You can also reach here using path C:\Users\[profile name]\AppData\Roaming\Microsoft\Excel
    3. Locate the file Excel15.xlb or Excel12.xlb and rename it to Excel15.old.

    insert row excel file excel15.xlb

    See how to enable the insert row option in MS Excel 2010:

    1. Open Excel
    2. Press [ALT]+ F11 or Go to Developer > Visual Basic menu option to open Visual Basic Editor.
    3. Press [CTRL]+G to open Immediate Window.
    4. Type below code in this Immediate Window

    Application.CommandBars(“Row”).Controls(“Insert”).Enabled = True

    Application.CommandBars(“Column”).Controls(“Insert”).Enabled = True

    5. Press [ENTER] key
    6. Close the Visual Basic Editor window and go back to Excel.

    See how to enable the insert row option in MS Excel 2013:

    1. Close all Excel windows that are open.
    2. Go to Run and type regedit. This is open Windows register editor.
    3. Locate \Office\15.0\Excel\Options and Delete.

    Please note that the options are for Windows 7. If you are using other OS versions like Windows 10, then whole idea is same but how to reach the desired file may change.

    The problem which are discussed above may occur again also, so you can repeat the steps to solve the problem.


     

  • Ten Basic things that every WordPress user should know

    WordPress basics is like a starter pack to get a feel of WordPress and knowing the system quickly. WordPress is becoming popular day by day and has become the most preferred blogging platform for bloggers. If we talk about figures, WordPress accounts for about 25% of websites and more that 50% of websites use WordPress for content management system (CMS). The simplicity of WordPress makes it so popular and you can actually use it without any knowledge of coding.

    WordPress was initially launched in the year 2003 purely as a blogging platform but in recent times is now being used for full fledged websites. Since the vast number of users have no knowledge of coding, sometimes they struggle to understand the system. We thought it would be good to write this article to make WordPress users’s life easy. Please note this article is only for those who have successfully installed WordPress and want to explore more.

    These are ten WordPress basics that you should know.

    1. Admin Login: When installing WordPress, some users find it difficult to navigate from where you access the admin page. Unless you use some plugin which makes you login from front page, you need to access your WordPress site from yoursite/wp-admin. The wp-admin is the directory where your login file is and you need to point to that directory.

    2. Plugins and Widgets: WordPress comes with basic feature which you need for blogging. If you want more features, then you will need to install plugins. What are plugins? it is a piece of program, which can be installed in WordPress to extend your website’s capabilities. Who creates plugins? There are companies and freelance programmers which create plugins. Some plugins are free to use and some are not free. You need to search the right one for your site. There are more than 50,000 plugins available for WordPress.

    WordPress widgets is the functionality which helps you manage the sidebars, footer etc of your site. The default widget that you will find is search, calendar, tag cloud etc. Plugins and themes also have their own widgets.

    3. Difference between page and post: Pages are the static contents on your WordPress site. There are few contents you may like to keep as static like About us, Contact Us, Services etc. These are the contents which are usually general for most websites and help users to know about your website. The post in WordPress is the real content which is the reason your user visit your website. Posts are the articles you write according to the theme of your website.

    4. Users: WordPress offers you multi user capabilities. You can have your whole team working and posting articles on your site at same time. The system offers you different options for different user capability you assign. WordPress offers five categories, Administrator, Editor, Author, Contributor and Subscriber.

    Their powers are as follows:

    • Administrator: Obviously Admin is the king with all the powers and can do all the task.
    • Editor: This user is to manage your content on the website. The editor can create new posts, edit posts and even delete posts, including that of other users.
    • Author: This person can create and manage their own post only.
    • Contributor: As the name suggests, this person is just a contributor. The user can submit the post but cannot publish it. Only the Administrator or Editor can publish this user’s post.
    • Subscriber: This is user is for those using WordPress as community or e-commerce site. This user can only manage their profile.

    However, if you are not happy with how WordPress has defined the roles, you install this plugin and to assign powers as you like.

    5. Media: Uploading pictures or video is very easy in WordPress. The process is just drag and drop. You can even add a picture while you write your post. You would notice that when you upload a picture on WordPress, it creates a number of sizes of the same picture. This feature is in WordPress so that you don’t have to waste time in re-sizing your images for your post or thumbnails.

  • WhatsApp is down right now for some regions

    Is WhatsApp down? Yes it’s true that it is down for many users across regions.

    If you are experiencing glitches in WhatsApp today and wondering whether it is your phone or internet connection, it is not. WhatsApp itself is the problem as users are unable to send or receive messages or app is crashing.

    According to downdetector.com, WhatsApp is down and below in a map you can see the regions which were affected. There are no comments from the Facebook owned company WhatsApp about this outage.

    whatsapp down map

    WhatsApp used by so many users every minute that even if the app is down for a minute, it will be immediately noticed by users. We are all confident that the WhatsApp team will fix this glitch in no time.


     

  • When and how you should put iframe on WordPress Site

    When you want to embed web content on your website, iframe plugins really comes handy. These days most of the web content has the option to embed the content on your website. You just need to copy and paste the given code into your website code to display. Like if you want to embed a YouTube video or a Twitter post or media there is an option to embed into your website.

    But sometimes there are contents which you want to display on your website but the option to embed is not there. So, what are you options then?

    Well, if you familiar with HTML, then there is tag called iframe which will rescue you. Whether you are using WordPress, Drupal or usual HTML site, the principle remains the same.

    What is iframe? it is an inline frame used to embed another document within the current HTML document. The use of iframe is not limited only to embed media into your website, it is also used to show large content in a small space.

    On a HTML website, you want use the code below to embed the content using iframe tag.

    <iframe src=”https://moonshotcentral.com/”></iframe>

    As mentioned earlier, the fundamental principle to embed the content using iframe into your website remains the same by using iframe tag. Using iframe into WordPress can also be done using iframe tab.

    But the first problem with WordPress is that are are no physical pages stored in your root installation directory. WordPress generates the webpage instantly when a user requests for a particular page or post. You can put the iframe tag while writing a post but due to WordPress security it may not work sometimes.

    The second problem is that in WordPress, most users doesn’t know how to code and don’t want to mess around the code. However, there is no need to worry as there are WordPress plugins to make your life easy.

    Which iframe plugins you should use in your WordPress site:

    There are few good options to embed content on into you WordPress site using a plugin.

    1.  iframe plugin: This plugin is quite easy to use. You need to just install the plugin and insert the short code of iframe into your post. The user should keep in mind two things while using this plugin. First is that there is no option to insert and you need to use shortcode to use the iframe. Second,  while using the iframe, correct rectangular bracket for using shortcode should be used like [ ] and not <>. Get this plugin from WordPress plugin area or download from here.

    iframe plugin

     

    2. Advanced iFrame plugin: This is the second most usable iframe plugin. If you are having issues with iframe plugin, you can try this one. This plugin has few more options like security etc to embed the content and the way to embed remains the same i.e. using shortcode. Get this plugin.

    advanced iframe plugin

     

    You can see here how iframe looks when you embed.


    iframe Definition : w3schools