Posts

What are Website Hosting Services and Which is Right for You?

Image
What are Website Hosting Services and Which is Right for You? Website hosting services are basically the plot of internet land that your website storefront sits on. If you have a website, it needs to be on the web, and these hosting services are the landlords that put up your site and keep it running so your customers can access and see it when they type in your URL. There are different types of web hosting services that cater to the varying types of businesses. Some web hosting companies will build your entire website, while others will just give you the plot of land and the shovel and leave you to it. Depending on your business model and size, you’ll choose a hosting company based on the factors explained below. .COM for just $5.98 - Instagram size + button How to Choose the Best Web Hosting Company? Without the best web hosting, your ability to run a successful website is going to be seriously hindered. There is a dizzying array of web hosting providers competing for your business.

Rank Your Website 1 on Google

Image
 How you can rank your website on google DESCRIPTION : Add a  quick description of your site here This will be visible on Google results. <head> <meta name="description" content="this is an example of a meta description, This will often show up in search results"> </head> VIEWPORT : Using the viewport meta tag you can control layout on mobile browsers. <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> CANONICAL TAG : Practically speaking, the canonical tag tells search engines which version of a URL you want to appear in search results. <link rel="canonical" href="https://"> ALT TO IMAGE: Yes, this is important. aLT reveals important content to Google RELEVANT TITLE: Add relevant Title it not only appears on top of the browser it also appears on google search results. <head> <title> Primary  Keyword - secondary keyword | Brand Name </t

Install LAMP stack on Ubuntu

Image
STEP:1 INSTALL APACHE Apache is a free open source software that runs over 50% of the world’s web servers. To install apache, open the terminal and type in these commands: sudo apt-get update  sudo apt-get install apache2 STEP:2 INSTALL MYSQL MySQL is a powerful database management system used for organizing and retrieving data. To install MySQL, open the terminal and type in these commands: sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell. Once you have installed MySQL, we should activate it with this command: sudo mysql_install_db Finish up by running the MySQL set up script: sudo /usr/bin/mysql_secure_installation The prompt will ask you for your current root password. Type it in. Enter current password for root (enter for none): OK, successfully used

iPhone SE 5G launched with A15 Bionic chip

Image
iPhone SE 5G launched with A15 Bionic chip: Here’s all you need to know Apple today announced the Apple iPhone SE 5G at the Apple Peak Performance Spring 2022 event. The new iPhone SE 5G edition succeeds the older iPhone SE 2020 and comes with some much-needed upgrades. Here’s all you need to know about the iPhone SE 5G, including price, specifications, new features and availability detail iPhone SE 5G: What’s new? The iPhone SE 5G comes with largely the same design elements from the older iPhone SE 2020. This includes a 4.7-inch Retina HD display with reinforced glass on the front and back, the same protective glass that is also found on the iPhone 13 series. The iPhone SE 5G is also powered by the Apple A15 Bionic chip, which is 5G enabled. The A15 Bionic chip is the same chipset that was used in the Apple iPhone 13 series. This brings a few new powerful additions to the SE series. This includes a 6-core CPU, a 4-core GPU and a 16-core Neural Engine that enables features like Live Te

The most effective method to Recover Permanently Deleted Files and Folders in Google Drive

Image
When you delete files or folder from your google drive, it moved to the trash folder. Deleted file stays in trash for 30 days and then it is permanently deleted. Right-click on the deleted file in the trash bin and select restore to undelete the file. If you fail to restore a deleted file within the 30-day window,  if you have emptied the trash manually, files will be permanently deleted from your Google Drive. You can contact Google Support and they may restore the deleted files for you. Go to support.google.com/drive?p=file_recovery and sign-in with the Google account you used to delete the file. Provide your name, and check the consent box to confirm that you are trying to recover files you deleted from Google Drive. You’ll receive an email from drive-noreply@google.com confirming that your request has been received and that it may take up to 48 hours for the files to be restored. (It usually takes less than 12 hours.) Google recommends that you avoid emptying your trash while the f

Start a Blog in 2022

Image
Why Start a Blog in 2022 There are a few, groundbreaking justifications for why anybody should assemble a blog.   Assuming you're devoted to your profession, assembling a blog is an incredible method for reinforcing your believability. This can give you seriously compensating work or even business open doors. Generate passive income -  Bringing in money with your blog takes time, commitment, persistence, and the right adaptation procedures. Since it creates automated revenue, a blog can possibly be your vehicle to independence from the rat race. Work anywhere and anytime -  There are huge loads of effective bloggers who have all-out command throughout their time while as yet making millions every month. You may not be a mogul yet, however you should in any case be responsible for where and when to work.

Codignator event log library. (PHP Framework)

Image
Codeigniter library code (Logs), which creates the log in the database. <?php defined('BASEPATH') OR exit('No direct script access allowed'); class Event_logger { /**      * ci      *      * @param instance object      */ protected $CI;     /**      * log table name      *      * @param string      */     private $_log_table_name = 'event_logs'; // We'll use a constructor, as you can't directly call a function // from a property definition. public function __construct() { // Assign the CodeIgniter super-object $this->CI =& get_instance();     $this->CI->load->database(); $this->_log_table_name = 'event_logs'; } /* Logger Function */ public function log_event($event,$data,$table,$unique_identifier="",$unique_identifier_value=''){ if(!$this->CI->db->table_exists($table) ) { echo "Event Logger : Table - $table  does