Domain Name Yahoo

Easy Help Troubleshoot Your Linux Box



  

PHP code Vs Firewall

Php code : file_get_contents , fsockopen couldnt compiled

This error log was generated from httpd log.

[error] [client 192.168.1.1] PHP Warning:  file_get_contents() [<a href=’function.file-get-contents’>function.file-get-contents</a>]: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /var/www/html/search/test.php on line 2

[error] [client 192.168.1.1] PHP Warning:  file_get_contents(http://www.google.com) [<a href=’function.file-get-contents’>function.file-get-contents</a>]: failed to open stream: Connection refused in /var/www/html/search/park.php on line 2

The Solution is to turn off your firewall

# service firewall stop

September 25th, 2008 Posted by admin | Domain, General, Uncategorized, firewall | no comments

DomainKeys

taken from http://en.wikipedia.org/wiki/DomainKeys

DomainKeys is an e-mail authentication system designed to verify the DNS domain of an e-mail sender and the message integrity. The DomainKeys specification has adopted aspects of Identified Internet Mail to create an enhanced protocol called DomainKeys Identified Mail (DKIM). This merged specification is the basis for an IETF Working Group which guided the specification toward becoming an IETF standard.

The DKIM standard was issued in May 2007. The DomainKeys draft was also issued under “historical” status at the same time.

July 30th, 2008 Posted by admin | Domain, Email | no comments

Create DNS Server Using Mandriva Linux

Step-By-Step to Install DNS Server using Mandriva Linux.
# urpmi bind
# vi /etc/named.conf
add the following sections

zone “mydomain.org” IN {
type master ;
file “db.mydomain.org”;
};
zone “1.168.192.in-addr.arpa” IN {
type master ;
file “db.192.168.1″;
};

March 4th, 2008 Posted by admin | Domain | no comments