Every time I visit the site, I have to re-log in. It just started since I changed my password.
Maybe I need to clean my cookies.
Thread-worthy topic.
Uh huh.
To rectify this you should not re-log in ever again.
Uhmm...
Don't have firefox delete cookies on exit.
From the title thought you were dying or something or you had to leave suddenly.
[QUOTE=Bran;20846216]From the title thought you were dying or something or you had to leave suddenly.[/QUOTE]
Also seemed a little like a banme from the title.
OP, have you tried cleaning cookies?
[QUOTE=PrismatexV8;20846224]Also seemed a little like a banme from the title.
OP, have you tried cleaning cookies?[/QUOTE]
I think a more suitable question is: OP, are you a faggot?
How are you able to break Garry's contract?
Though really, delete your cookies. Log in again after that.
Make some new cookies.
Delete cookies.sqlite
Armpit did this a week or two ago and got banned.
Make a grease script for FF or Chrome along the lines of this
// ==UserScript==
// @name FP Auto-Login
// @namespace name
// @description Facepunch login
// @include [url]http://*.facepunch.com/*[/url]
// ==/UserScript==
var id = "yourusername"; //Input ID here
var pass ="pass";//Input password here
function $(a) {
return document.getElementById(a);
}
var vb_login_username = $("email-email");
if (vb_login_username) {
vb_login_username.value = id;
}
var vb_login_password = $("password-password");
if (vb_login_password) {
vb_login_password.value = pass;
}
I didn't write out the login, i'm lazy right now... and I havent tested it because i dont want to clear my cookies, but I think this would work...
Sorry, you need to Log In to post a reply to this thread.