Malaysia Today Mirrors
Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\Charles>nslookup Default Server: cns2.tm.net.my Address: 202.188.1.5 > malaysia-today.net Server: cns2.tm.net.my Address: 202.188.1.5 *** cns2.tm.net.my can't find malaysia-today.net: Non-existent domain > mt.harapanmalaysia.com Server: cns2.tm.net.my Address: 202.188.1.5 Non-authoritative answer: Name: mt.harapanmalaysia.com Addresses: 72.47.236.85, 202.71.97.141, 202.75.59.125 > exit C:\Documents and Settings\Charles>
So there you go. There are currently 3 IPs available. I hope RPK has more to reveal (backup) if all three failed again (banned).
Copying and Deleting
Windows
xcopy <source> <destination> /E /I /C /Y /F
rmdir <dir> /S /QLinux
cp -Rv <source> <destination> rm -fr <dir>
Now I can perform
<?php if(stristr( PHP_OS, 'WIN' )) { $arg = 'xcopy '. $source .' '. $destination .' /E /I /C /Y /F 1>'. $outfile .' 2>'. $errfile; exec ( $arg, $out, $ret ); } if(stristr( PHP_OS, 'Linux' )) { $arg = 'cp -Rv '. $source .' '. $destination .' 1> '. $outfile .' 2> '. $errfile; exec ( $arg, $out, $ret ); } ?>