Categories
Uncategorized

Step-by-Step Installing Citadel Mail Server on CentOS

yum install gcc gcc-c++ autoconf automake yum install zlib-devel yum install gettext wget -q -O – http://easyinstall.citadel.org/install | sh

Categories
Uncategorized

Convert all your tabled From MyISAM to INNODB MySQL

This post shows exactly how to do, we will make use of a webserver and a php script to do the task but I guess you could do it through command line as well. <?php # Connect mysql_connect(‘localhost’, ‘root’, ‘pass’) or die(‘Could not connect: ‘ . mysql_error()); # Choose a database mysql_select_db(‘my_db’) or die(‘Could not […]

Categories
Entrepreneurship

How to Register a Company with CIPC

Better thing to do is not start a company or create a bank account. Just use your personal bank account and avoid doing annual returns, paying banks R100 a mont. So you’ve decided to start your own company. What Next? You Decide on your Legal Type and Choose a Trading Name. Now you need to […]

Categories
GNU/Linux

Copy Files with specific extension from multiple directories into a single directory Linux

How to Copy Files with specific extension from multiple directories into a single directory Linux find . -type f -print0 | xargs -0 cp -t /home/my/dir/ The only problem is file name conflicts…hmmm how to solve?

Categories
GNU/Linux

What is the default php includes path on linux?

This post specifies the default php includes path on a linux distribution. The one I used was gentoo. This is the path that will be globally included in all your php projects. It is: include_path = “.:/usr/share/php5:/usr/share/php” If you want to change this path, just change the above line in php.ini and restart apache or […]