but you have to login every 3 months, otherwise they'll delete your stuff.
I got tired of a few sites that I don't frequent giving me the boot after 30 days of no activity or log in or the same for my free 'junk/spam' email accounts getting deleted for not logging in regularly just when I need to use it...
So to fix that (although not real secure) I created 'spoofed' log in pages that automatically submit my user/pass and/or other variables garnished from the real log in page, and saved these pages to my hard drive and then setup a weekly Windows task to visit those spoofed pages... So now once a week (Sunday at midnight) my PC automatically logs me into all the sites that require me to visit every so many days and presto never kicked off for not visiting
... Saves me a lot of headache...
<HTML>
<HEAD>
<TITLE>Expiring Website</TITLE>
<script>
function loginForm() {
document.myform.action = "https://www.yourexpiringwebsite.com/login.php";
document.myform.submit();
}
</script>
</HEAD>
<BODY onLoad="loginForm()">
<FORM NAME="myform" METHOD="POST">
<INPUT TYPE="hidden" NAME="username" VALUE="your username">
<INPUT TYPE="hidden" NAME="password" VALUE="your password">
<INPUT TYPE="hidden" NAME="whatever" VALUE="another variable">
</FORM>
</BODY>
</HTML>