Bitcoin Forum

Bitcoin => Bitcoin Technical Support => Topic started by: silverman on August 06, 2010, 12:25:07 AM



Title: Trouble on this forum
Post by: silverman on August 06, 2010, 12:25:07 AM
Here's an odd problem: During the last couple of hours, whenever I log on and go to the Marketplace I get demoted to Guest. When I log on again, it puts me back at Home. Lather, rinse, etc.

The other forums don't seem to be affected.


Title: Re: Trouble on this forum
Post by: FreeMoney on August 07, 2010, 11:07:35 AM
That's odd. Are you set to be logged in forever?

About once a day, usually at night the site just doesn't work for me. I'd say or about 2 minutes. Anyone else?


Title: Re: Trouble on this forum
Post by: sirius on August 09, 2010, 10:03:56 PM
Does it work correctly now? I had made some forum code changes to disable PM email notification, but just reverted most of them as unnecessary.


Title: Re: Trouble on this forum
Post by: silverman on August 13, 2010, 06:13:05 AM
I haven't deliberately chosen to be logged on forever, but maybe if it's the default.

It did happen once again, but I'm not sure if it was before or after you wrote your reply, sirius-m. No complaints at this time. I'll get back to you with anything useful.



Title: Re: Trouble on this forum
Post by: fresno on August 13, 2010, 06:56:08 PM
I'm having this problem with the Trading Discussion forum right now. I'm logged in, obviously, but I'm not recognized and cannot post in that forum.



Title: Re: Trouble on this forum
Post by: Insti on August 13, 2010, 09:02:21 PM
I had made some forum code changes to disable PM email notification

Why did you do this? This was a useful feature to me.


Title: Re: Trouble on this forum
Post by: FreeMoney on August 13, 2010, 09:59:03 PM
I had made some forum code changes to disable PM email notification

Why did you do this? This was a useful feature to me.


It would have been good for me, but they seemed to come 12 hours late.


Title: Re: Trouble on this forum
Post by: fresno on August 15, 2010, 04:58:10 AM
Look! It's happening again.

I can post here, see? I'm obviously logged on.

But when I go to the Economics forum, I can't. I'm listed as a guest. I can log out, shut down my browser, then reload and start a new session. Same thing; guest.

-----

And I did just that. I logged out, shut down my browser, then restarted it and logged on again. It says "Hello fresno" at the top of the page. I can edit this message.

But when I go to the Economics forum, I'm just a "guest".

Frustrating!




Title: Re: Trouble on this forum
Post by: FreeMoney on August 15, 2010, 06:45:39 AM
Some people just don't know where they aren't welcome, Jeez...

j/k what happens when you log in once you are at the econ page? Have you tried it with a different account?


Title: Re: Trouble on this forum
Post by: mizerydearia on August 15, 2010, 08:31:53 AM
Look! It's happening again.
I can post here, see? I'm obviously logged on.
But when I go to the Economics forum, I can't. I'm listed as a guest. I can log out, shut down my browser, then reload and start a new session. Same thing; guest.
-----
And I did just that. I logged out, shut down my browser, then restarted it and logged on again. It says "Hello fresno" at the top of the page. I can edit this message.
But when I go to the Economics forum, I'm just a "guest".
Frustrating!

What browser are you using?


Title: Re: Trouble on this forum
Post by: fresno on August 15, 2010, 03:31:17 PM
Firefox 3,5,11. And I am also using TOR w/Vidalia. Could be a cacheing issue?

Sorry I got frustrated. I can come back the next day and it all works again. Thanks for having this board for us!


Title: Re: Trouble on this forum
Post by: FreeMoney on August 17, 2010, 09:17:07 AM
Sorry, slightly of topic, didn't want a whole new thread.

Does ignoring work on this forum? It doesn't for me.

I just realized it was ignore PMs. Is there a general ignore function?


Title: Re: Trouble on this forum
Post by: chaord on August 24, 2010, 04:02:11 AM
Has the ability to "subscribe" to certain threads been turned off? I seem to no longer have a link I can click to be "notified" of replies and such.  Any ideas?


Title: Re: Trouble on this forum
Post by: mizerydearia on August 24, 2010, 07:20:58 AM
Sorry, slightly of topic, didn't want a whole new thread.

Does ignoring work on this forum? It doesn't for me.

I just realized it was ignore PMs. Is there a general ignore function?

I don't think so, but this can easily be implemented using jquery/greasemonkey


Here's a quick and dirty script that you may need to modify to make it work for all possible urls.  If you're not sure how to, I can update it later.
Code:
// ==UserScript==
// @name           SMF: Ignore User
// @namespace      n/a
// @description    SMF: Ignore User
// @include        http://bitcointalk.org/*
// @include        https://www.bitcoin.org/smf/*
// @require     http://code.jquery.com/jquery-1.3.2.min.js
// ==/UserScript==

// Path to script for parsing incoming SMS messages

var ignore_ids = [262,381]; // Replace with user ids you want to ignore

function gm_load() {
if (window.location.href.match(/https?:\/\/(?:www\.)?bitcoin.org\/smf\/(?:index\.php)?\?topic=[0-9.]*/)) {
$("td.poster_info b a").each(function(index) {
////http://bitcointalk.org/index.php?action=profile;u=683
for (var i=0; i<ignore_ids.length; i++) {
var re = new RegExp("https?://(?:www\.)?bitcoin.org/smf/index.php\\?action=profile;u="+ignore_ids[i]);
if ($(this).attr("href").match(re)) {
$(this).parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().parent().hide();
}
}
});
}
}
$(document).ready(function() { gm_load(); });