public
Description: A Simple domain monitoring application
Homepage: http://www.domainhunter.org.tr
Clone URL: git://github.com/bmericc/domainhunter.git
Click here to lend your support to: domainhunter and make a donation at www.pledgie.com !
bmericc (author)
Wed Jul 09 11:28:48 -0700 2008
domainhunter / config.inc.php
100755 45 lines (31 sloc) 1.346 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?
/*
+-----------------------------------------------------------------------+
| Domain Hunter - A Simple Domain Monitoring Application |
| Version 0.1.0 |
| |
| Copyright (C) 2006-2007, DomainLabs.EU - Turkey |
| Licensed under the GNU GPLv3 |
| |
+-----------------------------------------------------------------------+
| Author: Bahri Meric CANLI <bahri@bahri.info> |
+-----------------------------------------------------------------------+
 
*/
 
$script_version = "0.1.0";
 
$per_page_domain = 20;
 
$hunter_email = "hostmaster@canlisoft.com";
 
/*
1- domainlabs.eu
2- domaintools.com
3- aboutuorg
*/
 
$detail_server = 2;
 
////////////////////////////////////////////////////////////////////
 
$dbhost = "localhost";
$dbuname = "hunter_user";
$dbpass = "fVaQWW";
$dbname = "domain_hunter";
 
 
//////////////////// mysql connect //////////////////////////////////
 
mysql_connect("$dbhost", "$dbuname", "$dbpass") || die (mysql_error());
mysql_select_db("$dbname") || die (mysql_error());
 
 
?>