Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,294 members, 7,807,999 topics. Date: Thursday, 25 April 2024 at 01:59 AM

LaiveNg's Posts

Nairaland Forum / LaiveNg's Profile / LaiveNg's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (of 9 pages)

Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 6:04pm On Jan 26
#7 Website shows completely blank screen
Another common error in most websites (especially PHP-powered websites) is a blank screen showing when some or any webpage is visited. This can be frustrating because no text is shown or at least no error is shown to help identify where the error may be coming from. What is the most annoying part to some people is the fact that this same website was functioning very well previously but suddenly starts showing blank screen.

For PHP-powered websites, the cause of this blank screen is usually due to some bugs in the code. Sometimes because PHP error reporting is turned off when a website goes live, the errors don't display and instead a blank screen is shown as indication that something is wrong internally. For example, if a web page is visited and the page is expected to fetch data from the database, a blank screen may appear if an error is encountered in the process of fetching the data. Again this is mostly if error reporting in PHP is turned off. This is just one possible cause.

#Solution: If the website is powered by the PHP scripting language, the easiest solution begins with turning on error reporting so that the website is allowed to display errors on the frontend. To avoid accidentally displaying sensitive information from the error while trying to resolve it, you may want to change the URL of the specific web page to something else that only you know. For example, if the blank screen is showing at www.yoursite.com/sales, they you may want to change the URL to yoursite.com/saalees and also change the link to this page in the HTML so that only you now knows the correct route and link. Others will get a 404 page when they visit the same link.

Now after turning on error reporting, the specific page will show an error once you visit the link. Check the error and try to resolve the issue that is causing the blank screen. For WordPress powered websites (still PHP) sometimes it's an issue with plugin conflicts. You may want to do a trial and error by activating and deactivating plugins in turns until the error disappears. Then check the last plugin you deactivated for any bugs that may be causing the blank screen.

But just in case you lack that confidence to resolve the above issue independently, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 1:30am On Jan 22
Feel free to contact me in case you're experiencing an error on your website which has not been mentioned here. I will help to trace and fix it so that your website can return back to normal. wink

Call or Whatsapp me : +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 1:27am On Jan 22
#6 Issues with Language versions (not necessarily poorly written code)
Bugs that did not show up during the development stage of your website may suddenly show up when your project is finally pushed to production. This happens a lot and this is why new technologies such as Docker are now available to ensure consistency both during development and when the project is finally pushed to production. However, most websites are hosted on shared hosting plans and this errors may show up just suddenly. Sometimes the errors are some version-related.

So for example, during development, your developers may have used PHP 7.x to code the website from start to finish, but the version of PHP on the production server may be lower (say PHP 5.x). So basically, your developer pushed a higher version code to a lower version of the language where some features may not be available. This can result in code conflicts thereby resulting in errors.

#Solution: Simply upgrade your language version on your server. The language your website was written with might be PHP, Python, Ruby, Java, NodeJs Runtime, C#, Perl, etc. So you'll need to upgrade the specific language from your hosting cPanel. But then, just in case you lack that confidence, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 1:10am On Jan 22
#5 Broken links or 404 errors
This is a very common issue if your website went through a very major update. Some links may end up breaking and no longer pointing to their actual resource. For example, your developers may decide to split the generic login link into two: one for users and one for admins. So let's say the generic login resource was website.com/login, since there was an update that led to something like website.com/admin/login and website.com/user/login, then the initial login resource may no longer be available. This will lead to 404 page when visited.

#Solution: This error seems simple to fix since all that is required is to change the link resources to the updated versions. However, it can be a bit tedious especially if it is a large website. But basically you'll need to trace all the broken links and then replace them with their correct links. In case you lack that confidence, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 1:00am On Jan 22
#4 API Related Errors
Some websites consume one or more APIs to display data and once there is an issue with the API endpoint where a request is pointing to, an error could set in. It could be a change of the URL in the API endpoint or maybe a completely non-existent endpoint. This happens a lot especially when consuming third-party API endpoints.

#Solution: If you're consuming third-party APIs, you'll need to check out the documentation to know if there were recent changes or updates that may be causing the errors. On the other hand, if you hired someone to build your API backend, it's important to reach out to the developer. However, if all these suggestions sound too technical for you to handle, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 12:49am On Jan 22
#3 Database related errors
The database is where your website data is stored and retrieved. Database errors are specifically for database powered websites such as forums, e-commerce websites, blogs, social media websites, etc. Once there is an error in a database connection, your website will not be able to store new data or retrieve existing ones. Any such attempts (to store or retrieve data) will spill out errors. The reasons for this error cannot be too clear, but the common reasons could be that the database no longer exists, the user that has access permission to the database has been deleted, a corrupt database, password or username mismatch, etc.

#Solution: You'll need to check the cPanel to be sure that the database exists, the assigned user has read and write permissions, and that there is no password and username mismatch, etc. Issues with database are sensitive and you'll need to be careful so as not to lose important data. If you lack the confidence to address your database related errors, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 12:37am On Jan 22
#2 Getting a 500 Internal Error Page
This type of error is not usually specific about the main problem causing the error on the website. But it is usually an error buried in one or more lines of code and once error reporting is turned on, the cause of the error will usually display.

#Solution: The 500 internal server error is an error you can't easily predict and so you'll need to play around with things in order to trace and fix it. Most times, you'll need to turn on error reporting in order to permit the server to display the error so that it can then be fixed. If this sounds like something you cannot do by yourself, then I can be of assistance: +2349055589180
Webmasters / Re: Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 12:28am On Jan 22
#1 Poorly written code
Yes, this is coming first because behind every website, there is some code and when this code is poorly written by the developer, there might be issues in the long run. For example, I've come across a few websites which the developers used very old tools and technologies to write the logic of the websites. This can cause errors especially if the tools used are third party tools or libraries which are no longer maintained. After some time, these libraries will start throwing up errors especially if the functions used in them are no longer supported by the core technology stack on which the site was built.

#Solution: Some of the errors are usually intuitive to an experienced developer. You'll need to trace the origin of the error and update any third party libraries or files that may be causing the error. If you lack that confidence, then I can be of assistance: +2349055589180.
Webmasters / Here Are Some Common Reasons Why Your Live Website Might Keep Showing Errors by LaiveNg: 12:15am On Jan 22
Hello, I am Etom, a web developer.

Today I will be sharing with you some common reasons why your website might be showing errors and what you can do to fix them as soon as possible. But first things first. What errors are we talking about?

The truth is, not all errors on a website have the same cause and so sometimes you'll need the services of an experienced web developer to trace and fix the issue. And it is usually best to get a developer who has knowledge of the technology stack your site was built on. Nevertheless, I'll try my best to outline some common errors and then explain them.

So, I'll be focusing more on website powered by PHP (no matter the framework you use) and also share my experience of how I trace and fix them. The reason for this post is help you get enough information that will help protect your website from attacks because most times these errors reveal sensitive information.

Let's start!
Webmasters / Re: Paid Course: How To Design And Host Your Own Wordpress-powered Websites by LaiveNg: 8:23pm On Sep 07, 2022
Keep the registrations coming.. smiley
Webmasters / Re: 150k Per Month. Experienced Laravel Developer Wanted by LaiveNg: 8:21pm On Sep 07, 2022
You're looking for a fullstack Web developer. Not just a Laravel developer...
Webmasters / Re: Please Help Is Needed Urgently by LaiveNg: 8:19pm On Sep 07, 2022
Thebig4:
I just got approved to monetize my website through ezoic, how do i integrate the add on my site. Please advise
Call me 2347014509524
Webmasters / Re: I Need You Kind Suggestions For Stabliz by LaiveNg: 1:56am On Sep 07, 2022
Stabliz:
Hi guys,
I learned that I can get help from nairalanders to archive my goal of starting the Stabliz.com.ng project. My goal is simply to make it a recognized public and private discussion platform in Africa.
If this is your goal, why then did you chose to settle with .com.ng
Webmasters / Paid Course: How To Design And Host Your Own Wordpress-powered Websites by LaiveNg: 12:27am On Sep 07, 2022
Welcome! Viewing this shows you're interested!

See, one thing I dislike is doing simple things the hard way! Sincerely, I hate it! Building modern websites with WordPress should be painless. You shouldn't even break a sweat when building a website or a blog with WordPress. Everything has been simplified thanks to the power of modern web technologies! smiley

Now, there are plenty of resources online to learn from. Some of them even free! But most of such online resources will assume that you have a knowledge of certain things. For example, some resources assume that you know Javascript, PHP, Databases, etc.

But in this paid course, I don't make any assumptions! grin

I will show you step-by-step (through my personally made videos) how you can start building websites or blogs using WordPress.

Benefits of this course for you?
1. You fully understand how to create your own website or blog
2. You will be able to create websites/blogs for other people and get paid for it.
3. I will be there to mentor you even after the course has ended.
4. If you need a website or have someone who needs one, we will build it together at no extra charge
5. Plus lots more benefits

Price: Less than N10k

The course is currently ongoing, so to enroll, contact: +2347014509524 (Voice calls only) or +2349055589180 (Whatsapp)
Programming / Re: Hire Me For Your Web Development Needs by LaiveNg: 10:27pm On Sep 06, 2022
Kembeapp:
I need you to help me add Paystack to my website. It's run on code igniter 4
Sorry about the delayed response... Kindly reach me on +2347014509524
Education / Your Life Will Change After Reading This Brief Post by LaiveNg: 8:13pm On Jul 10, 2020
Life is not always fair, but that doesn't mean you should expect the worst from it. You've got one and only ONE life, so treat it well, value it, and cherish it!

Have fun and always make out time for yourself. Give yourself a treat. Take yourself out on date! Forget about what others say about you! When your life ends, your critics won't replace it with theirs.

Life is a gift from your Maker; the one who gives and takes everything at the right time. So, while your gift of life lasts, treat it well, value it and enjoy it to the fullest.

When friends fail you, then always remember that you're the best friend you can ever have. When others reject you, it's never a reason to look down on yourself. The truth is, people often reject expensive things! You must be highly expensive. Believe it!

The challenges, failures and disappointments that you may be facing today are preparing you for greater tasks ahead. Your Maker is working on you so as to elevate you to higher dimensions. You're in training! Endure the pains because that's what hereos do.

You'll never know your true worth unless you meet the right people in the right place and at the right time. Resist the urge to believe that your life is worthless. Go out there, try new things. Don't be afraid to fail. Failure means another chance to win!

Those who want something new out of life are those who try new things. If you need something new to happen to you, then you've got to challenge yourself and do what you've never done before. Silent the self-doubts and march confidently to explore new adventures in your life!

Understand the rules of everything, but dont be ruled by such rules. Break the rules, change the status quo and emerge with outstanding results. Some of the best ideas today are from people who understood the rules, but failed to be controlled by, or remain fixed to such rules. They broke the rules!

Get up! Say to the old man in you that your new version has arrived. Try what you've never tried before. Learn what you've never learnt before. And trust me, your life is going to surprise you and those around you.

Enjoy life!

Source : https://thedeepvoice.com/5672193/this-post-will-change-your-perception-about-life/0

1 Like

Education / See Some Of The Possible Reasons Why You Make Poor Grades by LaiveNg: 8:00pm On Jul 10, 2020
One of the ultimate desires of any serious student in a tertiary institution is to make "good" grades. To some students, a "good" grade could mean an "A Grade", while to some, it could mean any other grade other than the annoying "F Grade". Whatever the definition of a good grade is, students get depressed when they fail in any examinations.

While certain circumstances may warrant you not to pass your examinations with flying colours, repeated/consistent failures in all your examinations is a serious issue that you should work on.

In this post, I will like to share with you some of the reasons why you may not be making good grades. In between, I will give you proven tips which when applied will help you to remarkably boost your grades. Ready? Let's get started!

Now, the first and one of the most important reasons why you're possibly not making good grades revolves around your belief system. You probably think you're not among the best in your class and so you really don't believe you can make good grades like your "smart" colleagues.

This is a very wrong and erroneous belief that has caused most students to settle for less.

Rewire your mindset and start believing that you can make good grades. The moment you strongly start believing, your attitude towards your studies and preparation will change. You will notice a sudden interest in your academic work like never before.

TIP: Decide the grade you'd like to have. It could be an "A Grade", a "B Grade", or any other grade you'll be happy with. Next, believe that you can make that grade. Then act in line with what you believe.

But it doesn't end with just believing. What if you believe you can make good grades and yet your belief is not manifesting in your results?

To answer this question, let's explore other factors that may be key players in your poor academic grades. One of such factors could be that...

#1 : YOU PROBABLY SKIP CLASSES
Hands down, skipping classes is one of the surest ways to make very poor grades. Lecturers often set their questions based on whatever they had taught in the lecture hall. Not attending classes means you'll be clueless regarding what the answer during an examination.

Moreover, some lecturers usually give clues on where exam questions will possibly come from. This is usually a BIG bonus for those in attendance. Having an idea about where exam questions will possibly come from will save you the stress of studying bulky materials in preparation for exams.

Besides, being present in a lecture will help you create mental images which can later be linked while in the exam hall. Such mental images can dramatically help you while struggling to recall concepts.

TIP: Make out time to attend your lectures. Pay attention while in class and take notes of areas where the lecturer lays emphases on. Such areas are probably among the most important. And they might come up in the exam. Listen, this tip is worth $500, but you just got it free of charge! So treasure it.

You making poor grades may also be because...

#2 : YOU LACK GOOD STUDY SKILLS
To get virtually anything done, we will definitely need some skills. No matter how rich our tools box might be, without possessing the appropriate skills, we can't get the work done.

Similarly, you might have the best study resources, but without having some good skills to study them, they can best be described as worthless. It's not always about studying; it's about studying the right way.

Spending many hours to study while denying yourself sleep might not really imply that you're studying effectively. Also, studying when you "feel" like studying won't be helpful to your grades.

TIP: Make a Google search for "good study skills" and you'll get hundreds of results within seconds. Browse through few of the search results to learn new study skills. Apply the new study skills you've acquired whenever you're studying for your examination. If you apply this skill, it dramatically improve your grades.

Another possible contributing factor to your poor grades could be...

#3 : YOUR ENVIRONMENT
Environment here could be your friends/roommates, your neighbors, your room itself, your compound, etc. Environmental factors can have a very tremendous impact in your grades. For example, if you stay in an area close to a drinking joint or a restaurant where music is non-stop, you'll most likely battle with concentration when studying at home.

Also, if the distance of your school is too far from where you live (for non-hostel dwellers), chances are high you'll always be late for classes. Or you might even feel tempted to skip classes. Hypothetically, students who stay far from school are more likely to skip classes due to weather conditions, lack of taxi fare, etc.

If you live in a room alone, it can be very tempting to feel "relaxed" since no one would motivate you to attend lectures or get your assignments done. On the other hand, if you have roommates, your roommates may eventually serve as serious distraction to you.

All of the above scenarios can negatively affect your grades but here is a powerful yip for you...

TIP: Identify the environment that's best for you, then modify your current environment to fit your desired pattern. If it's impossible to modify your current environment, perhaps due to external factors beyond your control, then it's best to relocate. Find a better environment where you can be focused and which will be close to your school. I said "better environment" and not "perfect environment" because you'll never find a "perfect" environment.

Making poor grades can also be as a result of you...

#4 : HAVING TOO MANY COMMITMENTS
Apart from your studies, there might be other things that have a share of your time. It could be your little business, it could be your church activities, it could even be some campus activities. That's fine. We all have our different commitments everyday.

But when your daily schedules gradually begin to steal your study time from you, then that becomes a serious issue and it will reflect in your grades. It reminds me of a friend of mine whose grades kept going lower and lower. When I asked him what the problem was, he said he barely had time to study or attend lectures due to his daily church commitments.

No matter how tight your daily schedules might seem to be, there is a need to strike a balance if your desire is to improve your grades. Set priorities, arranging your daily schedules in order of preference or urgency. Also don't be afraid to cross out certain items on your todo list. Understand that there is always another day!

TIP: Learn the art of time management. There are 24 hours in a day and that's what everyone is limited to. But we all have different ways of using our time. Find out where you spend most of your time. If it has nothing to do with academics, then map out strategies to reduce or completely withdraw from such an activity. This will free up extra time for you to study or attend your classes.

Finally, the last possible reason for your poor grades could be because you've been...

#5 : NEGLECTING GOD
Trust me, your grades will never improve if you neglect God in everything you do. God said in Haggai 2:8 that both the silver and the gold belong to Him. In other words, every good thing belongs to Him and it is in His power to give.

Without God, we won't amount to anything. You could make the best grades and even graduate with you Vice Chancellor's letter of recommendation. But without God, all will amount to nothing.

TIP: Bring God into the whole thing. He's our father and He's always glad when we solicit His help or guidance. Don't study only your books, study God's word too and you'll have good success! (Joshua 1:8 )

Thank you for reading and I hope you found this post helpful. If yes, kindly share. And if no, please share it too, it may help a friend! Should you have questions, drop them in the comments below.

See you in the next post!

Source: https://thedeepvoice.com/25368197/do-you-keep-making-poor-grades-see-the-5-possible-reasons-why/0
Programming / I Intend To Start A Blog To Provide PHP Tutorials - Is It Worth It? by LaiveNg: 11:29am On Feb 01, 2020
Hello senior and junior programmers and developers in the house. I am not a professional programmer or web developer, but so far, I have gathered a lot experience in the field web development. And I am still learning! wink
.
Any ways, enough of all that. I actually want to create a platform where I will share my knowledge of PHP to people who intend to learn the language. I am aware there are thousands of such blogs/websites out there. But the most important thing revolves around being unique and offering easy-to-digest tutorials.
.
So, I don't just intend to make it a free learning platform, I am also intending to make it a business through different monitization methods such as ads placements and sponsored contents. smiley
.
While I could perform some analyses on the niche, I need your pieces of advice, inputs and suggestion as experienced persons.
.
What is the potential of such a niche blog centered on offering PHP tutorials? I'll like to know before I start the development of the platform from scratch. Thank you... smiley
Webmasters / Re: Get Your Own Blog Today For Only #25,000 (hosting And Domain Name Included) by LaiveNg: 2:14pm On Jan 30, 2020
Get in touch now!
Webmasters / Get Your Own Blog Today For Only #25,000 (hosting And Domain Name Included) by LaiveNg: 9:40pm On Jan 25, 2020
For a long time now, you've probably been making plans to start your own blog. This is a new year and if you should start a blog today, your blog will gain a lot of popularity before the year runs out.

Stop procrastinating and just get started today. The world is desperate to hear what you have to say: what you want them to know.

Now, this is how it works:

1. First, you'll need to decide on a niche (what you will like to focus your blog on).

2. Secondly, you'll need to get a hosting account and a domain name for your blog.

3. Thirdly, you need to start writing. Sure! Start posting your lovely articles and let the world hear you.

4. Then finally, you need to do some search engine optimization to get your blog content indexed by search engines.

That's all. Simple right? Good!

Your blog will start making you money just with time. Get started now and become a well known blogger by JUNE 2020.

I will build your blog for you for just N25,000.

Reach me on 09055589180. See you!
Programming / Re: Java Tutorial: Beginner's Guild by LaiveNg: 3:49pm On Jan 15, 2020
Jas80...
We're desperately waiting to tap more from your wealth of knowledge bro.

1 Like

Webmasters / Re: Pleases Bloggers, What's The Best Tool/site You Use For Keyword Research? by LaiveNg: 6:40pm On Jan 08, 2020
Richnero:
if you are targeting just Nigerians with your website, then ubersuggest is not for you.
Ok... In other words, I guess you mean for any website targeting a global audience, then Ubersuggest should be one of the perfect choices. Thank you for the observation.
Webmasters / Re: Pleases Bloggers, What's The Best Tool/site You Use For Keyword Research? by LaiveNg: 6:36pm On Jan 08, 2020
royalads:
Ahrefs is the best actually but quite expensive for a newbie. But you can make do with Semrush and Ubersuggest and Keyword everywhere.
Wow! Haven't heard about Ubersuggest... Thanks for providing alternatives to the expensive one dear. Will try them out.
Webmasters / Re: Pleases Bloggers, What's The Best Tool/site You Use For Keyword Research? by LaiveNg: 6:32pm On Jan 08, 2020
EliteStriker:


Semrush
Thank you so much... I will give it a try!
Thanks again
Webmasters / Pleases Bloggers, What's The Best Tool/site You Use For Keyword Research? by LaiveNg: 4:26pm On Jan 07, 2020
Hello bloggers in the house, I guess the crafted title for this thread was detailed enough. Please I would like to know the tools or sites you use when performing keyword research.

Thank you.
Programming / Re: Java Tutorial: Beginner's Guild by LaiveNg: 4:21pm On Jan 07, 2020
This thread is a life saver...
Following 100%
Webmasters / Re: Review My Classified Ads Portal by LaiveNg: 6:00pm On Dec 15, 2019
Everything looks cool from my observation... just that the responsive menu doesn't really look responsive on my Chrome mobile browser. Otherwise, every other stuff looks nice...

1 Like

Programming / No Computer Yet? Then Learn HTML And CSS Practically Using Your Smart Phone by LaiveNg: 9:20pm On Nov 23, 2019
I made a post here recently giving tips on how to effectively learn Web development. The thread is here ==>> (https://www.nairaland.com/5540926/stop-jumping-around-how-learn). Interestingly, I got few messages from people I suspect may have read the post. According to them, the tips I gave in that thread were really interesting. However, some told me they would have loved to learn HTML and CSS, but they currently had no computers.

The truth is, to learn Web development effectively and efficiently, one needs a computer system (laptop or desktop), but the question is: What if you can't afford a system for now? Does it mean you should not learn HTML and CSS? Nope! It can't be!

See, in everything you do, don't always try to start big... start small, then think big. You see that? It won't make any much sense to go get a computer system worth thousands of Naira just because you want to learn HTML and CSS alone or for a start. No, it's not the best idea, my friend.

What if I told you that you can use your Android device (phone or tablet) to learn HTML and CSS practically? Plus, you won't need to download any app for that matter. Isn't that cool?

All you'll need would be your phone and a good text editor. Well, a text editor might be the only app I'll ever tell you to download unless you'll also want learn PHP from me.

Start registering now. It's going to be an interactive and easy to understand guide for the absolute beginner. We will start the training by 10th of December, 2019. So REGISTER NOW!!!

Reach me on 0905 5589 180 (call and whatsapp).

(1) (2) (3) (4) (5) (6) (7) (8) (9) (of 9 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. 102
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.