I have edited a few parts of the script which I found errors with and edited the readme file for clearer instructions. Click here to download my slightly modified version.

I have edited a few parts of the script which I found errors with and edited the readme file for clearer instructions. Click here to download my slightly modified version.
Try downloading my version, I fixed that error.
Toms already nulled it.
Look at the license system:
Loving it.PHP Code:$ip = $_SERVER['SERVER_ADDR'];
$hostname='lic.openpipe.co.uk';
$mysql_login='license';
$mysql_password = '**removed for nicks sake**';
$database='license';
if (!($db = mysql_connect($hostname, $mysql_login , $mysql_password))){
die("Can't connect to mysql.");
}else{
if (!(mysql_select_db("$database",$db))) {
die("Can't connect to db.");
}
}
$result1=mysql_query("SELECT * FROM `licensing` WHERE `ip` = '$ip'");
$num1=mysql_num_rows($result1);
if($num1 < 1){
include('http://openpipe.co.uk/license/no.php');
exit;
}
Want to hide these adverts? Register an account for free!