Category Archives: Latest Posts

Install SSL Get Google Ranking

Coming soon you can expect to hear more and more that Google is going to prefer your website in ranking when you have an SSL. Because having an SSL is so important to Google, WeConnectWebsites.com produced this video on How To Install SSL Get Google Ranking.

What Does An SSL Do?

Having an SSL on your website will not protect the site from hackers. What an SSL does is encrypt the information that is passed between the user and your server. This encryption can also extend to email running off of your server in the case of encrypting contact forms and newsletter signup fields in your website. So, what does this mean? It means that when a user types their name and email in your website and clicks Submit the information is changed into a secret code while it is being sent to your newsletter database or email inbox.

Why Does Google Prefer Websites With SSL’s?

I have not done any solid research on this but from a common sense point of view Google is going to prefer websites with SSL’s installed because the users information will be protected while they connect them to your website. Additionally, should the user attempt to contact you via a contact form or newsletter submission the user, your future customers, information will be secured by SSL encryption.

Doesn’t Google Care About Hackers?

No one cares more about hackers more than Google does. When a person uses a search engine to find a business website listing, search engines want the person searching to visit a site with the best, most secure content. This is why you may have seen an alert in search engine listings that says “This Site May Be Infected” or “This Site Contains Malware”. Seeing these errors in a search means that Google, Yahoo!, Bing etc, have performed their own scan of the site in the listing and have found the listed site to be hacked. The new requirement to have an SSL is just the next step for search engines to ensure their users security; thus the requirement for ssl. So while Google can’t keep up with all of the infected websites on the internet, and there are a lot, they are moving in the right direction by pushing small business and non e-commerce website ssl’s.

So How Do I Get An SSL?

The easiest way to get an SSL is to call you hosting provider and request one from them. Getting an SSL from your hosting provider can make it easier for you to get the SSL installed on your server or hosting account. SSL’s require a verification process which is much faster than it used to be. Most SSL providers can issued an SSL in less than 24 hours. After you hosting provider issues the SSL you can set up your WordPress with an http to https plugin. For other types of websites you can use a Force SSL code in the .htaccess file.

What If I Have To Install My SSL Myself?

Lucky for you I have a video on that … and here it is!

The video covers installing a GoDaddy SSL on a GoDaddy cPanel manually. The technique I show will enable you to install an SSL on addon domains too. Dual purpose video; you will also learn how to apply SSL to WordPress Website like a professional.

Remember that .htaccess code I mentioned?

Here is the .htaccess code to force a website to use SSL *adapted from: GoDaddy

FILE NAME – .htaccess
CODE-

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

And there you have it. You know know the importance of having an SSL on you website. It doesn’t matter if you have a shopping cart in your website or not. You now need an SSL to be competitive in your market. Now, Install SSL Get Google Ranking!

Adjusting PHP Settings With GoDaddy cPanel

To correspond with our video on using the php.ini file, the phpinfo.php file and the Select PHP Version PHP Options in GoDaddy cPanel to adjust php settings; I have provided the code below to put in the files that you will upload to your root folder. In our case it is the public_html folder which is the root folder for GoDaddy cPanel hosting accounts.

As shown in the YouTube Video, you will create the php.ini file and the phpinfo.php file through FTP on the server. Then using your text editor you will edit the php.ini file and the phpinfo.php files. While Notepad or TextEdit are acceptable it is a better practice to use a code editor like Sublime Text, Coda or Notepad++. In our video you will see us use Sublime Text as our code editing program and Transmit for our FTP.

Creating the phpinfo.php File

First you’ll need the code that you will add to the phpinfo.php file after you create it on the server through FTP. Copy and paste the code into your phpinfo.php. After you have saved the file back to your hosting account be sure to Kill Processes on you cPanel. Type your domain into the URL bar of the browser and add /phpinfo.php to the end of your domain.

FILE NAME – phpinfo.php
TO VIEW THIS FILE – PasteYourDotWhateverHere/phpinfo.php
CODE-

<?php phpinfo(); ?>

Creating the php.ini File

Below is the code that you will need to add to the php.ini file after you create it on the server through FTP. Copy and paste the code into your php.ini. After you have saved the file back to your hosting account be sure to Kill Processes on you cPanel. Type your domain into the URL bar of the browser and add /phpinfo.php to the end of your domain. Find the settings that you have updated on the phpinfo.php table to be sure they have taken effect on the hosting account.

FILE NAME – php.ini
CODE-

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300

These are just a few of the php settings that can be added to the php.ini file. For a full list of php directives check out the php.net manual.

Fixing common php website errors including php errors from WordPress, Drupal, Joomla!, OpenCart, PrestaShop, ZenCart, Magento, WooCommerce and more, can be easily solved with the php.ini file. Additionally these php website programs will run better after php settings adjustments are made.