Top 7 PHP Security Blunders

An article from sitepoint: PHP is a terrific language for the rapid development of dynamic Websites. It also has many features that are friendly to beginning programmers, such as the fact that it doesn’t require variable declarations. However, many of … Read More

Exclude Directory from Tar

In order to exclude, skip, ignore a directory from a TAR archive do the following: tar –exclude=”dir/excluded_dir_no_slash” -czvf tarball.tgz dir/ To exclude, skip, ignore multiple directories with TAR: tar –exclude=”dir/excluded_dir_no_slash” –exclude=”dir/excluded_dir_no_slash_2″ -czvf tarball.tgz dir/ This answer in the question from … Read More