Disable the ping

Add the following line to your init script for the network echo 1 >/proc/sys/net/ipv4/icmp_echo_ignore_all This disables ping responses. To reenable, use the following command: echo 0 >/proc/sys/net/ipv4/icmp_echo_ignore_all To make this permanent set the following into /etc/sysctl.conf net.ipv4.conf.icmp_echo_ignore_all = 1  

See More

How to install a CRELoaded template

1. You should have a CRELoaded software installed on your server. CRELoaded is an open source, oscommerce based shopping system with CRM and affiliate management built in. Download it from http://creloaded.com/Downloads/d_op=viewdownload/cid=1.html if you don’t have one. Note: Our template are compatible with CRE Loaded 6.2 Standard only. 2. When you have a CRE Loaded software […]

See More

PHP+Mysql DB connection script

<?php $link = mysql_connect(‘localhost’, ‘mysql_user’, ‘mysql_password’); if (!$link) { die(‘Could not connect: ‘ . mysql_error()); } echo ‘Connected successfully’; mysql_close($link); ?>

See More