Archive for January, 2010

Name of adapter is hidden from the network and Dial-up Connections folder

January 10, 2010

Full Error The IP address XXX.XXX.XXX.XXX you have entered for this network adapter is already assigned to another adapter Name of adapter. Name of adapter is hidden from the network and Dial-up Connections folder because it is not physically in the computer or is a legacy adapter that is not working. If the same address [...]

Posted in Windows | Comments Off

PHP compression using gzip

January 10, 2010

The best way to compress PHP files is to use auto_prepend_file Add the filling code to a file called gzip.php <?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], ‘gzip’)) ob_start(“ob_gzhandler”); else ob_start(); ?> Then update your php.ini files as follows auto_prepend_file= /path/to/gzip.php you can also use a htaccess file if your server permits php_value auto_prepend_file gzip.php Testing the compression or [...]

Posted in PHP | Comments Off

SMTP: 421 try again

January 2, 2010

421 Server is busy, try again later.Connection closed by foreign host. This is caused by the smtp is not able to accept anymore inbound connections.

Posted in SMTP | Comments Off