web hosting

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,…

11 years ago

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…

11 years ago

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);…

11 years ago