Unfortunately I don’t have any experience with PostgreSQL but for all DBAs who are familiar… PostgreSQL 9.0 is here! The PostgreSQL Global Development Group announces the availability of our most …
Winamp 2.95
Winamp doesn’t have anything with servers and administration and this post will be categorized in “Other” category. You can skip it if you want… I downloaded Winamp 2.95 right after …
Manual MySQL update on RHEL/CentOS
If you’re using RH based distros, you’ll probably notice that their habbit is to keep the same software versions in one release. For example, if you need PHP on CentOS …
Upgrading PHP and MySQL on CentOS or RHEL
I already wrote about upgrading via Jason Litka repo on this PAGE but in case you have problems with this repo, you can add Remi Collet repo. First, import Remi …
PHP redirect
It is not hard to remember but here it is… This code can be used to redirect visitors to any other page. header("Location: http://www.blabla.com/page.php");header("Location: http://www.blabla.com/page.php");
PHP error reporting
Error reporting in PHP is a very usable option but sometimes you can be buried with “PHP Notice” lines which you don’t need (save space and bandwith). PHP Notice: Undefined …
Postfix quota notification email script
If you want to take care about your users quota and your storage space, check this … 1. Create new file (for example quota_notify inside /usr/local/sbin/ ) 2. Copy next …
Batch processing millions of images
I just want to share one link about processing millions of images. Here it is – LINK
Using PHP as a shell scripting language
As most of us already know, PHP is one of the most popular scripting language for developing dynamic web pages. But you probably don’t know that PHP can be used …
Check what ports are open
To see what ports are open in your Linux box, you can use nmap port scanner or you can use netstat. nmap can be used with following command: # nmap …