Fake Traffic Generator

Boost your website ranks with this Fake Traffic Generator Fake Traffic Generator a unique script that brings massive traffic to your website. Features: [*] the script works instantly, result is visible on your site statistics application. [*] can be run from browser or cron job*. [*] easy configuration. Price: FREE! Download: here.

Read More »

How to enable iconv on CPanel server?

The iconv API is the standard programming interface for converting character strings from one character encoding to another in Unix-like operating systems. All recent Linux distributions contain a free implementation of iconv() as part of the GNU C Library which is the C library for current Linux systems. To use it, the GNU glibc locales need to be installed, which…

Read More »

How to compile GD graphics library with CPanel server

GD is an open source code library for the dynamic creation of images by programmers. GD is written in C, and “wrappers” are available for Perl, PHP and other languages. GD creates PNG, JPEG and GIF images, among other formats. GD is commonly used to generate charts, graphics, thumbnails, and most anything else, on the fly. While not restricted to…

Read More »

How to split a big tar files?

How to split a big tar files? Easy 😉 split -b 100000000 thisfile.tar.gz thisfile.tar.gz This will split your file into 100 MB parts with the thisfile name and suffix of gzaa, gzab, gzac, etc… Then how to join them? Easy too 😉 cat thisfile.tar.gz?? > thisfile.tar.gz Until next time 🙂

Read More »

Exim Tricks

Server owner, did you ever hit by tons of spam then bring your server down to it knees? Well, I have a few exim tricks that you can use to quickly remove them from Exim queue. I’m assuming that you already have the knowledge of what is SMTP, MTAs, and can use UNIX shell prompt. Start with Message-ID Exim Message-IDs…

Read More »

How to keep the text in one line inside a table?

Simple, use nowrap tag. Example: [html]<table> <tr> <td nowrap>Do not break this very loooooooooooooooooooooooooooooooooooooong sentence!</td> </tr> </table>[/html] Or: [html]<table> <tr> <td nowrap="nowrap">Do not break this very loooooooooooooooooooooooooooooooooooooong sentence!</td> </tr> </table>[/html]

Read More »