yum install gcc gcc-c++ autoconf automake yum install zlib-devel yum install gettext wget -q -O – http://easyinstall.citadel.org/install | sh
Author: me
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 […]
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 […]
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?
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 […]