Few things you should always follow to start a stable Business

Few things you should always follow to start a stable Business


Starting your own business and being self-employed is a very ambitious dream. You’re trying to lead yourself being your boss and that really needs a lot of skills and guts.

Here are few things that you should always do after starting your own business:

Be an avid learner:

In this era of information, there’s nothing better than knowing more and more. To me learning involves three stages: read, write and practice. In the other words: capturing information, storing it and executing it in your life. This approach is extremely useful to define next directions for yourself and your business. Also, never miss the track; read many things but store only churned information. You may see numbers of opinions and recommendations by many authors, writers, experts but as a learner you need to churn the best vital information for your life and try to apply that knowledge in your daily life.

Remember, when you start your own business, there’s nobody to instruct you, guide you or teach you. You need to define your own path and direction and that’s where avid learning skills can be your best navigator tool!

Stop comparing:

Most of the startups I’ve interacted in seminars, exhibitions or meetings; they have some bigger company as ideal and they always compare with successful case studies and dream to become some XYZ enterprise. I always oppose this with a fact that each and every individual has a different shoe and so the starts has! Being yourself, you can’t become somebody else or can’t replicate someone else’s life. How can you expect the same thing with your company when it’s managed by different people with different minds. So what is the solution?

All you need to do is stop comparing with the orders and start chasing your own goals in your own way. Try to learn failure case-studies along with success stories as failure is the best learning lesson with example. It can make you remember few things which you may never repeat. But as they say, “Learn from the others’ mistake to save your time!” and that’s where Failure case-studies can be super useful to improve yourself.

Planning is Good Overthinking is not! :

Once you start up, first thing you may face is “Insecurity”. That’s when you realize that you’re out of 9 to 5 culture. If you’re a case-study learner, you must be aware that it doesn’t matter, how many investors or funding you may have, with the effect of poor management; things can go inverse.

Now, to avoid that situation all you need is a “Plan”. Planning is the key to run a successful business. This can only happen if your plan is based on facts and figures. Always try to see your industry and market statistics and analytics. Gather a good amount of insights in an useful manner. Do not be skeptical on every person or situation. I have observed many people over analyzing the situation or over thinking each and every thing in their professional life. This may cause many problems in your small team of startup. Such as, Non-optimal utilization of funds, Lack of learning curve and adaptive approach, Non-acceptance of other team members’ opinion, Lack of risk taking skills and many more.

Thus, only focus on a fact based plan and do not start over analyzing anything in your business. Insecurity should be a part and parcel of your life in order to take calculative risks.

Process is a back bone :

Remember, a flourish mind comes after a strong back bone. If your back bone is not strong enough to structure your body well, there’s no meaning of having a smart mind. The same is applicable to your company. Your processes for various types of operations are the back bone of your company. It provides you a strong structure of management and an ecosystem where all resources are in place and bound with productivity. If your processes are not well-defined, it doesn’t matter how smart you are or what is your unique selling point (USP); it’s certain failure.

When I say process, I do not mean only rules and regulations. For me process means set of rules that defines steps of execution and individual accountability for the resources involved on every steps. Thus, along with an open minded culture without barriers of cubicles and dress-codes, it’s must to have a strong operational process for each of your departments.

Patience is the key to success:

You may come across many perceptions. Some will tell you “Hard work leads you to the success”, later they changed it to “Smart work is a road to success”. Well, if you observe a little, all entrepreneurs who are well-known for their knowledge, creation, companies or products; are all hard working, smart, intelligent and well versed. Still, it tool almost 10-15 years to get on this place where they are at present. Why? The only answer is: “Because they never gave up!” They are all individuals with highest patience and peace in them. They have a never ending hope and confidence in they actions and they have a deep capacity to face inverse situations, failures, rejections and much more.

We all are fan of Larry Page, Surgey Brin, Mark Zuckerburg, Steve Jobs, Bill Gates, Warren Buffet and many more well-known entrepreneurs or business leaders. We all see their glorified success but we never try to dig down and check their real hard time. We never try to learn their failure cases in their early days and how strong patience they kept during that time to get to the solution! That’s what needs to be learnt and keep trying until you get your envisioned success.

Churn your social circle and team members carefully:

In this capital driven world, it’s nothing unethical to be little selfish and select your surrounding people carefully. Be with those who can benefit you. This benefit is not required to be in terms of only funds or monitory advantages but it can also be  in terms of knowledge share, experience share, advises on best practices and much more. Keep your social circle filled with strongly self driven, affirmative and resourceful people. Same thing is applicable while selecting your core team for your startup. If you’re already having a silent/sleeping partner pretending as core team member, there can’t be a more wrongful choice of core startup team.

Whether it’s social media or real society, our contacts create a bubble of topics around us that we live and discuss everyday. Having the right people around you, can give you a highly productive and up lifting professional life with lots of learning during your journey of entrepreneurship and having wrong people can give you numerous hurdles to achieve what you want. This is why many people believe that creating something out of life is very easy if you’re smart and for the others life itself is a big puzzle… 🙂

Stay optimistic and positive:

When we say “Stay Positive”; many of us imagine a larger than life “Motivational Speaking” event brain washing for “Feel Good Factor” and asking to stay positive and feel wealthy, happy, healthy… and so many never ending imagination inside that little brain.

Well, I’m not going in that direction. My definition of having positive or affirmative approach is to stay optimistic and be inclusive to inverse situation. You may face never ending hurdles or unwanted situations during your daily operations. All you need to do is to find the solution and set the right process. That’s how you can nurture your brain with solutions and strengthen your company’s back bone with right processes.

This is the optimistic and problem solving approach gives you patience and create things better and bigger.

At last, I hope you’ve enjoyed reading my views. I will be keen to know your experiences along with your inputs on this. So, feel free to comment below.

Have a Happy Business!! 🙂

How to add EPUB & MOBI eBooks on WooCommerce as downloadable products?

How to add EPUB & MOBI eBooks on WooCommerce as downloadable products?


I’ve helped set up a number of WordPress-based commerce sites for authors. One of the first things that always gets in the way is the inability to upload MOBI or EPUB file into WooCommerce to actually set the books.

To get around this is a pretty simple process.

  1. In wp-content/plugins, create a directory like local-upload-ebooks.
  2. Create local-upload-ebooks/local-upload-eboooks.php and edit it.
  3. Put the text below into it and save it.
  4. Go into your Plugin Manager and enable the plugin.
<?php
/*
 Plugin Name: Upload Ebooks
 Version: 0.0.0
 Author: D. Moonfire
 Description: Enables uploading ebooks into WordPress and WooCommerce.
*/

// Add in a hook to add the taxonomies and categories.
add_action('init', 'upload_ebook_init', 0);

function upload_ebook_init()
{
  // This allows up to add the MIME types that can be uploaded.
  add_filter('upload_mimes', 'upload_ebook_upload_mimes');

  // These are completely arbitrary and probably too big.
  ini_set('upload_max_size','100M');
  ini_set('post_max_size','99M');

  // Ebooks sometimes take a little longer to upload.
  ini_set('max_execution_time','300');
}

function upload_ebook_upload_mimes($mimes)
{
  $mimes = array_merge($mimes, array(
    'epub' => 'application/epub+zip',
    'mobi' => 'application/x-mobipocket-ebook'
  ));

  return $mimes;
}
?>

I hope this will work for you. I would love to hear your experience and feedback if any. Have a Happy Business!! 🙂