Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,194,691 members, 7,955,604 topics. Date: Sunday, 22 September 2024 at 10:28 AM

Pmictltd's Posts

Nairaland Forum / Pmictltd's Profile / Pmictltd's Posts

(1) (2) (3) (4) (5) (of 5 pages)

Webmasters / Re: Wordpress Tutorial On Nairaland by pmictltd(m): 7:55pm On Nov 30, 2014
How to Fix the Error Establishing a Database Connection in WordPress

If you have been surfing the web for a while, you have at least error establishing a database connection. Error Establishing a Database Connection is one of those curses that could be caused by many reasons. As a WordPress beginner, this could be awfully frustrating specially when it happened on its own without you changing anything. We ran into this issue yesterday on our own site. It took a little over 20 minutes to detect and fix the problem. While doing the research to find possible causes, we realized that there was no good article that covered everything. In this article, we will show you how to fix the error establishing a database connection in WordPress by compiling a list of solutions all in one place.

Note: Before you make any database changes, make sure you have sufficient backups.

Why do you get this error?

Well in short, you are getting this error because WordPress is unable to establish a database connection. Now the reason why WordPress is unable to establish a database connection can vary. It could be that your database login credentials are wrong or have been changed. It could be that your database server is unresponsive. It could be that your database has been corrupted. In our experience, majority of the times this error happens because of some sort of server error however there could be other factors as well. Lets take a look at how to go about troubleshooting this problem.

Does the problem occur for /wp-admin/ as well?

First thing you should do is to make sure that you are getting the same error on both the front-end of the site, and the back-end of the site (wp-admin). If the error message is the same on both pages “Error establishing a database connection”, then proceed onto the next step. If you are getting a different error on the wp-admin for instance something like “One or more database tables are unavailable. The database may need to be repaired”, then you need to repair your database.

You can do this by adding the following line in your wp-config.php file:

1 define('WP_ALLOW_REPAIR', true);
Once you have done that, you can see the settings by visiting this page: http://www.yoursite.com/wp-admin/maint/repair.php

WordPress Database Repair

Remember, the user does not need to be logged in to access this functionality when this define is set. This is because its main intent is to repair a corrupted database, Users can often not login when the database is corrupt. So once you are done repairing and optimizing your database, make sure to remove this from your wp-config.php.

If this repair did not fix the problem, or you are having trouble running the repair then continue reading this article as you might find another solution to work.

Checking the WP-Config file

WP-Config.php is probably the single most important file in your entire WordPress installation. This is where you specify the details for WordPress to connect your database. If you changed your root password, or the database user password, then you will need to change this file as well. First thing you should always check is if everything in your wp-config.php file is the same.

define('DB_NAME', 'database-name');
define('DB_USER', 'database-username');
define('DB_PASSWORD', 'database-password');
define('DB_HOST', 'localhost');

Remember your DB_Host value might not always be localhost. Depending on the host, it will be different. For popular hosts like HostGator, BlueHost, Site5, it is localhost. You can find other host values here.

Some folks suggested that they fixed their problem by replacing localhost with the IP. It is common to see this sort of issue when running WordPress on a local server environment. For example on MAMP, the DB_Host value when changed to the IP may seem to work.

define('DB_HOST', '127.0.0.1:8889');

IP’s will vary for online web hosting services.

If everything in this file is correct (make sure you check for typos), then it is fair to say that there is something wrong on the server end.

Check your Web Host (MySQL Server)

Often you will notice this Error establishing database connection when your site gets swarmed with a lot of traffic. Basically, your host server just cannot handle the load (specially when you are on shared hosting). Your site will get really slow and for some users even output the error. So the best thing you should do is get on the phone or livechat with your hosting provider and ask them if your MySQL server is responsive.

For those users who want to test if MySQL server is running yourself, you can do a few things. Test other sites on the same server to see if they are having the issue. If they are also getting the same error, then most definitely there is something wrong with your MySQL server. If you do not have any other site on this same hosting account simply go to your cPanel and try to access phpMyAdmin and connect the database. If you can connect, then we need to verify if your database user has sufficient permission. Create a new file called testconnection.php and paste the following code in it:

<?php
$link = mysql_connect('localhost', 'root', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>

Make sure to replace the username and password. If the connected successfully, then it means that your user has sufficient permission, and there is something else that is wrong. Go back to your wp-config file to make sure that everything there is correct (re-scan for typos).

If you cannot connect to the database by going to phpMyAdmin, then you know it is something with your server. It does not necessarily means that your MySQL server is down. It could mean that your user does not have sufficient permission.

In our case, our MySQL server was running. All other sites on the servers were working fine except for WPBeginner. When we tried going to our phpMyAdmin, we ended up getting the error:

#1045 – Access denied for user ‘foo’@’%’ (using password: YES)

We got on the phone with HostGator and their support quickly found the problem. Somehow our user’s permissions were reset. Not sure how that happened, but apparently that was the reason. They went back in and restore the permissions and we were able to get the site back live.

So if you get the access denied error in either connecting to your phpMyAdmin or through testconnection.php results, then you should contact your host right away to get them to fix it.

Solutions that Worked for Others

It is important to note, that these may not work for you. Use at your own risk and make sure that you have sufficient backups if anything goes wrong.

Deepak Mittal said that his client was getting the error that database needs to be repaired. Even after repairing the database, the error did not go away. He tried various things and at the end, the issue was the site url. Apparently that was changed which caused the error to persist. He ran the SQL query by going to phpMyAdmin:

UPDATE wp_options SET option_value='YOUR_SITE_URL' WHERE option_name='siteurl'
Make sure to replace YOUR_SITE_URL with the actual url example: http://www.wpbeginner.com. The wp_options will be different if you have changed the default WordPress database prefix.

This seemed to fix the issue for him and few others that commented on his post as well.

Sachinum suggested that he was able to connect the database with testconnection.php, so he changed the wp-config.php user to the root user. WordPress started to work perfectly fine. Then he reverted the settings back to the database-user, and it continued to work. He could not figure out what was wrong, but concluded that it was a typo.

Cutewonders suggested that they removed the content of active_plugins in wp_options table and edited the contents of recently_edited. Basically that seemed to fix the problem. Please their full response here .

We read on numerous sources that users simply uploaded a fresh copy of WordPress and it fixed the error.

This is a really frustrating error. What have you tried that seemed to work for you? We would be happy to expand on this resource, so others do not have to waste as much time finding a solution.

Article curl from http://blog.philmorehost.com/how-to-fix-the-error-establishing-a-database-connection-in-wordpress/

1 Like

Webmasters / Re: Wordpress Tutorials Anyone?! by pmictltd(m): 7:47pm On Nov 30, 2014
Follow this link on to learn about wordpress tutorial on Nairaland
https://www.nairaland.com/2022609/wordpress-tutorial-nairaland#28479655
Webmasters / Re: Wordpress Tutorial On Nairaland by pmictltd(m): 7:43pm On Nov 30, 2014
5 Things that Make Your WordPress Site Run Slow and How to Fix Them

A slow loading website can hurt your small business by turning
away visitors who expect fast load times and smooth online experiences, and harming your reputation.

If your site runs slow and you’re running WordPress, there are plenty of things that could be slowing you down. Below are five common reasons for sluggish performance on WordPress platforms, and how you can fix them.

If Your WordPress Site Runs Slow. . .

You’re Running Too Many Plugins

The problem

With thousands of shiny plugins out there promising to do amazing things for your website, it’s easy to get caught up and catch plugin fever. Soon, you’ve got plugins controlling every function and feature on your site—you might even have plugins for your plugins.

This is a problem for a couple of reasons. First, the more plugins you have, the more work your website has to do while it’s loading. And second, not all plugins are created equally—poor or outdated plugins can slow down site performance drastically.

The Fix

Evaluate your current plugins to figure out which ones you actually need. Get rid of multiple plugins that perform the same functions, plugins that you’re no longer using, and those that were created more than 5 years ago and have never been updated.

Surprisingly, you can check the performance of your plugins with…another plugin. The P3 (Plugin Performance Profiler) shows you how each plugin impacts your WordPress site load time, so you can adjust accordingly.

Your Homepage Has it All – And Then Some

The Problem

In most cases, the homepage is the first one your visitors see. So you might have designed it to show off everything you can, in order to impress new visitors. Widgets are cool, right?

But the more widgets and content you have on the front page, the longer your site takes to load.

The Fix

Keep in mind that a clean design is just as impressive. Don’t stick sharing widgets everywhere on your homepage (save them for the end of your blog posts, where they’ll have the most impact). Pare down and remove any unnecessary widgets or plugins.

You can also speed up load times using the WordPress options to show excerpts instead of full posts, and limit the number of posts per page—5 to 7 is a good number.

Your Stunning Images Take Up Too Much Space

The Problem

The higher the size and quality of an image, the longer it takes to load. If you have amazing graphics and an image or two (or more) with every blog post, your loading time will be slower.

The Fix

There are a few ways to address the image issue. One is with Lazy Load—a process that loads only the images appearing “above the fold,” or on the part of the site a visitor is actually viewing. You can do this automatically with the jQuery Image Lazy Load plugin.

Another is with an image optimizer program like Yahoo!’s Smush.it. You can use the tool right from the site to compact images (without losing quality)—or you can install the WP Smush.It plugin to have it done automatically when you add images to your site.

You’re Using a “Free” Third-Party WordPress Theme

The Problem

Free is the best price for anything, and you may have searched for a free WordPress theme to avoid using the same themes that everyone else has. However, like free movie sites and music downloads, there’s an excellent chance that “free” theme comes with a price tag in the form of spyware or viruses, which do more than slow down your site.

The Fix

Unless you have a really good reason to completely trust the developer of a free theme, only use themes from the official WordPress theme repository. If you want something different, consider investing less than $100 in a premium theme.

Your Host Isn’t the Most

The Problem

If you’re running the WordPress.org platform, you need a Web host for your site. There are free Web hosting providers, and incredibly cheap hosts. Of course, you’re interested in saving money—so you might have gone with the lowest possible price tag.

But a poor Web host can hurt more than your load times.

The Fix

If your Web hosting solution is free or dirt-cheap, consider upgrading to a well known host, which usually runs between N700 per month or N1200 per year. Here’s what to think about when choosing a web hosting company. Follow this link to learn how to choose web hosting company: http://blog.philmorehost.com/how-to-choose-a-hosting-company/

Are you satisfied with how fast your WordPress site loads? Article curl from http://blog.philmorehost.com/5-things-that-make-your-wordpress-site-run-slow-and-how-to-fix-them/
Webmasters / Re: Wordpress Tutorial On Nairaland by pmictltd(m): 7:37pm On Nov 30, 2014
GUIDE OF HOW TO INSTALL WORDPRESS PLUGIN

Plugin is the most important part of WordPress. Plugins can extend WordPress to do almost anything you can imagine. WordPress register more than 20k official plugins you can download it from WordPress official Site . Just search there what you want or imagine for your site. there is different tags available choose what you want and download Its all Free ! Now let see how to install WordPress plugins.

INSTALL PLUGIN ON WORDPRESS :-

for Installing plugin, First of all you have to log in to your WordPress site.

On admin dashboard left side panel options choose plugin –> Add new option

install wordpress plugin

Now WordPress provide two option for install plugin

Search Plugin By name
Manually upload Plugin
METHOD 1: INSTALL WORDPRESS PLUGIN BY SEARCH METHOD

After click on add new first your screen display search plugin so if you know any plugin name then write and hit on search. if you don’t know plugin name so there is popular tags provide below search plugin text box click on your need tag it will provide automatically list of that tag plugins

Install WordPress Plugins image

For Example i wrote w3 total cache in search plugin text box and hit search it provide the list of plugins, click install Now option and active plugin for use.

install plugin manually

METHOD 2: MANUALLY UPLOAD PLUGIN IN WORDPRESS :-

If you buy premium plugin then you get zip file of plugin now In this situation you have to install that plugin manually, WordPress provide install plugin manually by uploading feature.

Select upload option just right side of search plugin option

upload plugin

Upload your zip plugin file and click install and Activate plugin.

[Note: WordPress automatically unzip file and install plugin.]

Here are some free Plugins list which helps you to improve WordPress functionality! advanced automatic updates, Jetpack by , akismet, Limit Login Attempts, Sunny (Connecting CloudFlare and WordPress), WP Fastest Cache etc. Article curl from http://blog.philmorehost.com/guide-of-how-to-install-wordpress-plugin/
Webmasters / Re: Wordpress Tutorial On Nairaland by pmictltd(m): 7:29pm On Nov 30, 2014
Backup or Delete WordPress with Softaculous

Softaculous is also useful for maintaining web applications you have installed with it. If you would like to backup your WordPress site, or even delete it entirely, you can easily from your Softaculous control panel


Login to your cPanel and open Softaculous as above. Select the box icon from the top right to see all the web applications you have installed:

Here you can see the web application installation time and version number, as well as a link to it. Click the folder icon to backup your site, or the X to delete it.Please note: Do not click the X button unless you are certain you want to fully delete your WordPress site

If you choose to backup the site, Softaculous will ask if you want to backup the entire directory and database. Generally it is good to select both, as you would be able to fully restore your entire site with both of these. Click Backup Installation to confirm you wish to do this

Click Ok at the prompt, and make sure to leave the webpage opening while it is backing up your site.


After a few moments, Softaculous will let you know that the backup is complete. Click the Backups link to access your backup file

Click the blue arrow to download the zip file containing a full backup of your site. Once you have saved it, you can click the red X to delete the file from the server Article curl from http://blog.philmorehost.com/how-to-install-wordpress-using-softaculous/
Webmasters / Wordpress Tutorial On Nairaland by pmictltd(m): 7:27pm On Nov 30, 2014
How to install WordPress using Softaculous

You can easily install WordPress on your web-site using Softaculous script installer the following way:

Login to your cPanel

Scroll down to the Software/Services section, and click the Softaculous icon.

Click the WordPress link on the left-hand sidebar in Softaculous

This page will give you some information about WordPress, including ratings and reviews from other users. Click the Install link above the header to start the installation

Choose the domain you wish to use for WordPress in Choose domain field. Then select what directory to install WordPress on using In Directory field.Note: By default, it will install to yourdomain.com/wp , but if you wish yourdomain.com to go directly to WordPress, then leave this field blank .

Click the Install link above the header to start the installation

Now enter a name and description for your site, as well as an administrative username, password, and email. If you would like a more secure password, click the key logo and a random generated password will be entered in the field. If you would like a record of your site’s settings, enter your email in the bottom field under the Install button. Click Install

After a few moments, you will see a page announcing that WordPress is now installed on your site.

Click the link to go to the WordPress admin page, or simply browse to yourdomain.com/wp-login.php or yourdomain.com/wp-admin . Login with the username and password you chose before. Article curl from http://blog.philmorehost.com/how-to-install-wordpress-using-softaculous/

1 Like 1 Share

Web Market / Re: Affordable Web Hosting Service In Nigeria by pmictltd(m): 10:19pm On Nov 22, 2014
http://philmorehost.com
PhilmoreHost Providing you with a Cheap cPanel and windows web hosting, offering professional and expert cPanel, WHM, Linux, MySQL, PHP hosting service at affordable prices.

Secure & Reliable
Super Fast
Good Customer Support

Politics / Re: 2015: CNN Rejects Political Adverts From Nigeria by pmictltd(m): 2:19pm On Nov 11, 2014
FIBER OPTICS CABLES ,PATCH CORDS,PATCH PANELS, MEDIA CONVERTERS, PIGTAILS
@ 15A OREMEJI STREET ,OFF MEDICAL ROAD IKEJA LAGOS
CALL: 08034286012

Autos / Re: A Nigerian Used Honda Accord For Sale..................550K by pmictltd(m): 7:39pm On Oct 31, 2014
2006 Ford Explorer, 4 X 4 Eddy
Bauer version
Very neat cream colour interior
Double colour exterior
3 role seat
Navigation
6 CD loader
2 remote keys
Low Mileage
Car in Perfect condition

Location: Lagos
Toks
contact: 08186151878
email: uniquemotors24@gmail.com

Autos / Re: A Nigerian Used Honda Accord For Sale..................550K by pmictltd(m): 7:32pm On Oct 31, 2014
2005 Honda Accord
A.K.A: E.O.D with Navigation
Leather Interior
2 remote keys
Low Mileage
Rust free and in Perfect condition
N1,400,000

Location: Abuja
Toks
contact: 08064197252
email: osachris@yahoo.com

Web Market / Re: Cheapest Bulk Sms Service Provider In Nigeria by pmictltd(m): 5:19pm On Oct 18, 2014
Philmore SMS is the simplest, fastest, cheapest and most reliable way to send customized bulk text messages to literally thousands of GSM cell phones in Nigeria and globally.
www.philmoresms.com

Webmasters / Complete Website Solution For Wordpress Website by pmictltd(m): 12:01am On Oct 11, 2014
6 Free Tools to Optimize Your Site
http://philmorehost.com/6-free-tools-to-optimize-your-site/

12 Ways to Optimize Speed of Large WordPress Websites
http://philmorehost.com/12-ways-optimize-speed-large-wordpress-websites/

5 Things that Make Your WordPress Site Run Slow and How to Fix Them
http://philmorehost.com/5-things-that-make-your-wordpress-site-run-slow-and-how-to-fix-them

The easiest and quickest way to install WordPress
http://philmorehost.com/the-easiest-and-quickest-way-to-install-wordpress/

Simple Troubleshooting Steps for the WordPress White Screen of Death
http://philmorehost.com/simple-troubleshooting-steps-for-the-wordpress-white-screen-of-death/

How to install WordPress using Softaculous
http://philmorehost.com/how-to-install-wordpress-using-softaculous/

How to Fix the Error Establishing a Database Connection in WordPress
http://philmorehost.com/how-to-fix-the-error-establishing-a-database-connection-in-wordpress/

CMS2CMS: Automated Joomla to WordPress Migration
http://philmorehost.com/cms2cms-automated-joomla-to-wordpress-migration/

How to Migrate From to Self-hosted WordPress
http://philmorehost.com/how-to-migrate-from-wordpress-com-to-self-hosted-wordpress/

How To Move WordPress Site From One Host To Another Inless than 5 Minutes
http://philmorehost.com/move-wordpress-site-one-host-another-inless-5-minutes/

Installing WordPress On Subdomain Using cPanel
http://philmorehost.com/installing-wordpress-on-subdomain-using-cpanel/

HOW TO BACKUP WORDPRESS WEBSITE TO DROPBOX
http://philmorehost.com/how-to-backup-wordpress-website-to-dropbox/

GUIDE OF HOW TO INSTALL WORDPRESS PLUGIN
http://philmorehost.com/guide-of-how-to-install-wordpress-plugin/

WordPress Video Tutorials
http://philmorehost.com/wordpress-tutorials/
Webmasters / Re: Best Web Hosting Company In Nigeria by pmictltd(m): 11:18pm On Oct 10, 2014
HOST YOUR WEBSITE
10% Off Professional Package only.
Use Coupon: PROCTOBER2014

Free Website Builder
Free Domain Registration
Free Instant Setup!
Money Back Guarantee
24/7 Quality Support
www.philmorehost.com

1 Like

Adverts / Re: Own A Website For Your Business Just N15,000 by pmictltd(m): 11:13pm On Jul 11, 2014
Domain Registration and Web hosting Coupons @ www.philmorehost.com

WEB HOSTING
Coupon Code: #philmorehost
Expires on 31st of July, 2014.
shared hosting and reseller hosting packages only.


DOMAIN REGISTRATION
Coupon Code: Vip15
Expires on 31st of July, 2014.
.com, .biz, .org, .pw, .com.ng, .sch.ng, and .mobi.ng only

Web Market / Re: I Need Cheap Hosting In Nigeria by pmictltd(m): 6:40pm On Jul 02, 2014
We are thrilled to announce that SiteLock – a cloud based website protection service, is now live on our platform. With plans starting from as low as N2,400/yr, SiteLock is the ideal solution that you can use to protect your websites from common online threats and establish a secure & credible online presence. It is an all-inclusive, cost effective solution that identifies and fixes threats automatically.

Take a look at this quick 1 minute video to understand how SiteLock works!
To learn more about it's features, plans and pricing visit our services page and scroll down below the page: http://philmorehost.com/services.html



Reason why you have to Secure your Websites with SiteLock

Imagine that you are looking to buy a product online and click on a search result on Google. As soon as you click the URL, you encounter this page:




Would you hit “Proceed Anyway”, and if you did, would you risk entering critical information such as Credit Card details, passwords etc on a website that throws this error? Even if you weren't looking to make an online purchase, but were just researching about that company, would you trust them with your business, or consider them reputed?

If you think this is a one-off case, the following statistics will prove otherwise:

Over 5,000 small and large online businesses are attacked on a daily basis
Currently over 70% websites on the internet are not secure
Hackers exploit websites to launch an attack 5 times more often than they use email.
Google blacklists over 6,000 websites everyday!



Why you should use SiteLock


SiteLock is ideal for customers who do not have the technical know-how or resources to protect their websites from common online threats. It is an all-inclusive, cost effective solution that identifies threats and also fixes them automatically

A powerful solution designed specifically for SMBs
Works in any hosting environment
Makes you a complete web solutions provider.
Prevents your site from getting defaced by working in the background to protect websites from online threats
Adds value to your overall offering with an economical, yet extremely effective product
Jokes Etc / Re: Make Money With Bulksms Business (millionaire Strategy) by pmictltd(m): 4:23pm On Jul 01, 2014
PhilmoreSMS Solutions announced special offers for Ramadan.
Providing White Label Reseller Platform which enables to send sms through Desktop application, Websms, Blackberry, Android as well as for Symbian phones,Excel plugin and Http api. and you can
Send Greetings, Fast Timetable, wishes etc. using our user friendly platform.

Buy SMS to total 10,000 units in this month and get One Year Free Pro1 Web hosting Package for your Business/Organization at PhilmoreHost.com

Promo ends 31st of July, 2014.

FEATURES OF THE PRO1 HOSTING
FREE FOR LIFE DOMAIN REGISTRATION
FREE WHOISGUARD
FREE DNS
FREE 24/7 Premium Live Support
And much more...

www.philmoresms.com
www.fb.com/philmoresms
08086697100
Computers / Re: Cyber Cafes With thin Client Technology In Operation. by pmictltd(m): 11:51am On Jul 01, 2014
What is Computer Based Test (CBT)?
Computer based test is the administration of an examination using a computer. This format is flexible in that the test can be taking at different times and at different locations.

Computer Based Test (CBT). Examination Centers, Jamb Test center or examination locations across the country where candidates can write online test exams.

This type of Centers usually make use of Thin Client Terminals of up to 500 in one location or more.
Below is the recommended server configuration for 250 terminals.

RECOMMENDED CONFIGURATION HOST CPU FOR 200 TERMINALS AND CAN STILL SERVE 250

HP ProLiant DL380P Gen8 E5‎‐2609 = N850,000
Key Features
Processor‎:‎ Intel Xeon E5‎‐2609 ‎(‎4 core‎,‎ 2.40 GHz‎,‎ 10MB‎,‎ 80W‎)‎
Number of processors‎:‎ 1
Processor core available‎:‎ 4
Memory‎,‎ standard:‎ 256GB
Memory slots‎:‎ 24 DIMM slots
Maximum memory‎:‎ 768GB
Memory type‎:‎ PC3L‎‐10600R‎‐9 ‎(‎Low voltage DIMM‎)‎
Expansion slots‎:‎ 6
Network controller‎:‎ ‎(‎1‎)‎ 1Gb 331FLR Ethernet Adapter 4 Ports
‎(‎1‎)‎ 460 W Common Slot Gold hot plug
Storage controller‎:‎ ‎(‎1‎)‎ Smart Array P420i 512MB FBWC
Optical drive type‎:‎ 12.7mm Slim SATA DVD‎‐RW Jack Black
Form factor ‎(‎fully configured‎)‎‎:‎ Rack‎,‎ 2U ‎‐ Cable Management Arm standard
Warranty ‎‐ 3 years
The HP ProLiant DL380p Gen8 Server sets the data center standard for next generation 2U 2‎‐socket rack server.‎‎

With improvements in service ability,‎‎ unmatched performance,‎‎ enhanced configuration flexibility,‎‎ and customer‐inspired design,‎‎ the DL380p Gen8 Server offers the perfect solution for the dynamic compute requirements of growing small businesses as well as demanding data centers‎‎.

1 Like

Webmasters / Re: Welcome To Nairaland Bloggers Family. by pmictltd(m): 4:31pm On Jan 05, 2014
deriod: I'll like to create a blog for my fashion label but I don't no how to go about it,so I need any of u guys to show me,pls kindly get to me on seunmn@gmail.com.

you can start by visiting www.blogger.com
sign in your gmail a/c and follow steps to register if you don't have a register blogger.com a/c.
name your blog whatever you like to call it.
you can go online and read more about
how to start a blogger.
see http://www.wikihow.com/Start-a-Blog
and http://startbloggingonline.com/

YOU CAN DO IT YOURSELF.
These are my blogs.
http://giveawayoftheweekend..com
http://philmoreitech..com
Webmasters / Re: Welcome To Nairaland Bloggers Family. by pmictltd(m): 12:41pm On Jan 04, 2014
vosquare:
hw i go upload am on blog

check this article link below if it will help you, if it doesn't please leave a comment
and i will direct you.
http://philmoreitech..com/2014/01/how-to-install-custom-or-premium.html
Webmasters / Re: Welcome To Nairaland Bloggers Family. by pmictltd(m): 10:57am On Jan 03, 2014
vosquare:
ur blog looks like 9janinja.com bt seems okay.....hw u do dat moving latest news stuff?

Its the template that has the feature.
I downloaded it from http://www.templatenew.com/blogger
There you can find several premium templates
Webmasters / Re: Welcome To Nairaland Bloggers Family. by pmictltd(m): 10:37am On Jan 02, 2014
I created http://giveawayoftheweekend..com
Do you think its doing?
Do you think the template is okay?
Webmasters / Re: Reliable Nigeria Web Host by pmictltd(m): 2:20pm On Dec 28, 2013
Give www.philmorehost.com a try
And your problem will be solved
Uptime Guaranteed

Latest Offer
Buy any of our Web Hosting Service and get 20% Discount
www.philmorehost.com
Use this Promo Code: 3U8P8BDNY1
Promo End Soon!

PhilmoreHost.com - PhilmoreHosts Reliable Web Hosting keeps your website up and running.
PhilmoreHost is a leading provider of web hosting, reseller hosting, and cloud servers. Over 2000 websites trust PhilmoreHost for their web hosting needs.

Webmasters / Re: Welcome To Nairaland Bloggers Family. by pmictltd(m): 4:43pm On Dec 21, 2013
www.PhilmoreHost.com is one of the finest Web Hosting companies in web hosting industry in Nigeria and Ghana right now.
Since early 2011, we have focused to provide solutions for your Web Hosting needs.
Our vision was always to provide a high quality, reliable and low cost possibilities of services.

Webmasters / Re: Start Your Reseller Hosting Now For As Low As 2,000 Naira Per Month by pmictltd(m): 4:42pm On Dec 21, 2013
www.PhilmoreHost.com is one of the finest Web Hosting companies in web hosting industry in Nigeria and Ghana right now.
Since early 2011, we have focused to provide solutions for your Web Hosting needs.
Our vision was always to provide a high quality, reliable and low cost possibilities of services.

Webmasters / Re: What's The Best Web Hosting Provider In Nigeria by pmictltd(m): 3:31pm On Dec 20, 2013
Top 10 Web Hosting Companies in Nigeria, 2013
If you’re searching for web hosting, you already know the importance of creating an internet presence in today’s world. To help you find the best web hosting company for your website, we’ve reviewed numerous web hosting providers, so you don’t have to! Our expert editorial staff ranked and evaluated their features, services and products to bring you our list of the top 10 web hosting companies. We invite you to read more about how we rated the top providers below according to price, customer service, reliability and overall experience.

1) www.philmorehost.com, Least Product is Basic Shared Hosting = N1,200. 10GB Web Disk, Unlimited Bandwidth

2) whogohost.com, Least Product is Aspire Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

3) smartweb.com.ng, Least Product is Standard Shared Hosting = N2,500. 5GB Web Disk, 20GB Bandwidth

4) ihostafrica.com, Least Product is Beginner Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

5) utiware.net, Least Product is Starter Shared Hosting = N3,500. 1GB Web Disk, 2GB Bandwidth

6) web4africa.com.ng, Least Product is Bronze Shared Hosting = N4,000. 5GB Web Disk, 50GB Bandwidth

7) abimco.com, Least Product is Personal Shared Hosting = N3,504. 200MB Web Disk, 5GB Bandwidth

8. 9jahoster.com, Least Product is Extra Mini Shared Hosting = N2,000. 250MB Web Disk, 500MB Bandwidth

9) sbohost.com, Least Product is Small Shared Hosting = N5,000. 1GB Web Disk, 10GB Bandwidth

10) qservers.net, Least Product is Starter Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth
Web Market / Re: Web Hosting Companies in Nigeria by pmictltd(m): 11:44am On Dec 13, 2013
If you are looking for a cheap, reliable and unlimited web hosting service.
www.philmorehost.com is the best.

There server is reliable and always up 99.9%
They have good support team that does not hesitate to solve whatever type of web hosting problem.
They backup your host account
They also give coupon to buy there cheap hosting packages even at a lesser price.
Webmasters / Re: Dont Patronise Nigeria Web Hosting Company by pmictltd(m): 11:26am On Dec 13, 2013
Many of us still leave in the past.
Nigerian web hosting companies are good. Only few sub-standard among them are bad.

If you are looking for a cheap, reliable and unlimited web hosting service.
www.philmorehost.com is the best.

There server is reliable and always up 99.9%
They have good support team that does not hesitate to solve whatever type of web hosting problem.
They backup your host account
They also give coupon to buy there cheap hosting packages even at a lesser price.
Webmasters / Re: Best Webhosting Site In Nigeria by pmictltd(m): 11:23am On Dec 13, 2013
If you are looking for a cheap, reliable and unlimited web hosting service.
www.philmorehost.com is the best.

There server is reliable and always up 99.9%
They have good support team that does not hesitate to solve whatever type of web hosting problem.
They backup your host account
They also give coupon to buy there cheap hosting packages even at a lesser price.
Web Market / Re: Most Affordable Web Hosting In Nigeria Provided By Macfonse Global Solutions by pmictltd(m): 11:05am On Dec 13, 2013
Top 10 Web Hosting Companies in Nigeria, 2013
If you’re searching for web hosting, you already know the importance of creating an internet presence in today’s world. To help you find the best web hosting company for your website, we’ve reviewed numerous web hosting providers, so you don’t have to! Our expert editorial staff ranked and evaluated their features, services and products to bring you our list of the top 10 web hosting companies. We invite you to read more about how we rated the top providers below according to price, customer service, reliability and overall experience.

1) www.philmorehost.com, Least Product is Basic Shared Hosting = N1,200. 10GB Web Disk, Unlimited Bandwidth

2) whogohost.com, Least Product is Aspire Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

3) smartweb.com.ng, Least Product is Standard Shared Hosting = N2,500. 5GB Web Disk, 20GB Bandwidth

4) ihostafrica.com, Least Product is Beginner Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

5) utiware.net, Least Product is Starter Shared Hosting = N3,500. 1GB Web Disk, 2GB Bandwidth

6) web4africa.com.ng, Least Product is Bronze Shared Hosting = N4,000. 5GB Web Disk, 50GB Bandwidth

7) abimco.com, Least Product is Personal Shared Hosting = N3,504. 200MB Web Disk, 5GB Bandwidth

cool 9jahoster.com, Least Product is Extra Mini Shared Hosting = N2,000. 250MB Web Disk, 500MB Bandwidth

9) sbohost.com, Least Product is Small Shared Hosting = N5,000. 1GB Web Disk, 10GB Bandwidth

10) qservers.net, Least Product is Starter Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

Webmasters / Re: Best Webhosting Site In Nigeria by pmictltd(m): 8:27pm On Dec 12, 2013
Top 10 Web Hosting Companies in Nigeria, 2013
If you’re searching for web hosting, you already know the importance of creating an internet presence in today’s world. To help you find the best web hosting company for your website, we’ve reviewed numerous web hosting providers, so you don’t have to! Our expert editorial staff ranked and evaluated their features, services and products to bring you our list of the top 10 web hosting companies. We invite you to read more about how we rated the top providers below according to price, customer service, reliability and overall experience.

1) www.philmorehost.com, Least Product is Basic Shared Hosting = N1,200. 10GB Web Disk, Unlimited Bandwidth

2) whogohost.com, Least Product is Aspire Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

3) smartweb.com.ng, Least Product is Standard Shared Hosting = N2,500. 5GB Web Disk, 20GB Bandwidth

4) ihostafrica.com, Least Product is Beginner Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

5) utiware.net, Least Product is Starter Shared Hosting = N3,500. 1GB Web Disk, 2GB Bandwidth

6) web4africa.com.ng, Least Product is Bronze Shared Hosting = N4,000. 5GB Web Disk, 50GB Bandwidth

7) abimco.com, Least Product is Personal Shared Hosting = N3,504. 200MB Web Disk, 5GB Bandwidth

8. 9jahoster.com, Least Product is Extra Mini Shared Hosting = N2,000. 250MB Web Disk, 500MB Bandwidth

9) sbohost.com, Least Product is Small Shared Hosting = N5,000. 1GB Web Disk, 10GB Bandwidth

10) qservers.net, Least Product is Starter Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

Web Market / Re: List Of Web Hosting In Nigeria by pmictltd(m): 8:25pm On Dec 12, 2013
Top 10 Web Hosting Companies in Nigeria, 2013
If you’re searching for web hosting, you already know the importance of creating an internet presence in today’s world. To help you find the best web hosting company for your website, we’ve reviewed numerous web hosting providers, so you don’t have to! Our expert editorial staff ranked and evaluated their features, services and products to bring you our list of the top 10 web hosting companies. We invite you to read more about how we rated the top providers below according to price, customer service, reliability and overall experience.

1) www.philmorehost.com, Least Product is Basic Shared Hosting = N1,200. 10GB Web Disk, Unlimited Bandwidth

2) whogohost.com, Least Product is Aspire Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

3) smartweb.com.ng, Least Product is Standard Shared Hosting = N2,500. 5GB Web Disk, 20GB Bandwidth

4) ihostafrica.com, Least Product is Beginner Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

5) utiware.net, Least Product is Starter Shared Hosting = N3,500. 1GB Web Disk, 2GB Bandwidth

6) web4africa.com.ng, Least Product is Bronze Shared Hosting = N4,000. 5GB Web Disk, 50GB Bandwidth

7) abimco.com, Least Product is Personal Shared Hosting = N3,504. 200MB Web Disk, 5GB Bandwidth

8. 9jahoster.com, Least Product is Extra Mini Shared Hosting = N2,000. 250MB Web Disk, 500MB Bandwidth

9) sbohost.com, Least Product is Small Shared Hosting = N5,000. 1GB Web Disk, 10GB Bandwidth

10) qservers.net, Least Product is Starter Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

Webmasters / Re: Best Web Hosting Company In Nigeria by pmictltd(m): 5:39pm On Dec 09, 2013
Top 10 Web Hosting Companies in Nigeria, 2013
If you’re searching for web hosting, you already know the importance of creating an internet presence in today’s world. To help you find the best web hosting company for your website, we’ve reviewed numerous web hosting providers, so you don’t have to! Our expert editorial staff ranked and evaluated their features, services and products to bring you our list of the top 10 web hosting companies. We invite you to read more about how we rated the top providers below according to price, customer service, reliability and overall experience.

1) www.philmorehost.com, Least Product is Basic Shared Hosting = N1,200. 10GB Web Disk, Unlimited Bandwidth

2) whogohost.com, Least Product is Aspire Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

3) smartweb.com.ng, Least Product is Standard Shared Hosting = N2,500. 5GB Web Disk, 20GB Bandwidth

4) ihostafrica.com, Least Product is Beginner Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

5) utiware.net, Least Product is Starter Shared Hosting = N3,500. 1GB Web Disk, 2GB Bandwidth

6) web4africa.com.ng, Least Product is Bronze Shared Hosting = N4,000. 5GB Web Disk, 50GB Bandwidth

7) abimco.com, Least Product is Personal Shared Hosting = N3,504. 200MB Web Disk, 5GB Bandwidth

cool 9jahoster.com, Least Product is Extra Mini Shared Hosting = N2,000. 250MB Web Disk, 500MB Bandwidth

9) sbohost.com, Least Product is Small Shared Hosting = N5,000. 1GB Web Disk, 10GB Bandwidth

10) qservers.net, Least Product is Starter Shared Hosting = N2,500. 1GB Web Disk, 4GB Bandwidth

(1) (2) (3) (4) (5) (of 5 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 86
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.