Unreliability...

Practice posts and questions about the boards. The registration code for this board is 'Th3G@m|ngD3n' (Note the use of numbers and symbols!)

Moderator: Moderators

User avatar
shadzar
Prince
Posts: 4922
Joined: Fri Jun 26, 2009 6:08 pm

Post by shadzar »

testing meta refresh with this post, will edit with any findings

When trying to mark the topics of forum #3 read this is the head generated.

Code: Select all

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="refresh" content="3;url=viewforum.php?f=3">
here is the head for a page causing errors that do not even trigger firefox from showing the allow button when it prevents the redirect in the first place. The page is any one in which you go to viewtopic.php and the type is newest post...so basically clicking on the newest post button generates this kind of head.

Code: Select all

<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="refresh" content="0; url=http&#58;//tgdmb.com/viewtopic.php?p=139103#139103">
aside form being not formatted to separate lines i will do that and compare the refresh meta tags below...

mark forum read:

Code: Select all

<meta http-equiv="refresh" content="3;url=viewforum.php?f=3">
view newest post:

Code: Select all

<meta http-equiv="refresh" content="0; url=http&#58;//tgdmb.com/viewtopic.php?p=139103#139103">
both are trying to redirect to another URI but the broken one has a zero second delay, which gives no time for the page itself to load before the browser tries to redirect, while the working one gives at least 3 seconds.

not sure the space between the delay and URI is needed either, but that is one little glitch in the code that could cause other problems if the database is trying to access on those pages that should be redirected and don't have anytime to output anything before someone moves away form that page during the refresh redirect.

a simple scan of all refresh meta tags to find the ones that are under 3 seconds delay, and make them match should help see if that fixes anything. maybe something just minor, and i don't have a running phpBB currently to check the "newest" section in viewtopic.php..nvm yes i do and know it makes several calls to locations in the db that could be hanging things up with the delay set to zero because without looking at the code it has to figure out based on your session key when the last time you visited was since phpBB for this version does not have inline post tracking.

matter of fact here is what generates the redirect....or should be close to it for this version...

Code: Select all

redirect&#40;"viewtopic.$phpEx?" . POST_POST_URL . "=$post_id#$post_id"&#41;;
maybe nothing big, again but one of the glitches going on recently. i will run a scan and see where any other meta refresh commands are and present a list of files that may also have the corrupt zero second delay in them in a few minutes.

List of files containing the meta refresh string:

admin_cal_ug_auth.php
admin_db_utilities.php
admin_forumauth.php
functions.php
functions_post.php
groupcp.php
index.php
modcp.php
posting.php
privmsg.php
usercp_activate.php
usercp_email.php
usercp_register.php
usercp_sendpasswd.php
viewforum.php
viewtopic.php
viewtopic_backup.php

functions.php specifically has the "<meta http-equiv="refresh" content="0; url=" which is causing that problem...though not sure exactly what is going on unless TGD was moved from one type of server to another say from a linux server to windows because functions.php is using that line for what is commented as being
// Redirect via an HTML form for PITA webservers
if (@preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')))
love how they identify windows servers as Pain In The Ass webservers. :rofl:
Last edited by shadzar on Fri Mar 05, 2010 7:50 pm, edited 3 times in total.
Play the game, not the rules.
Swordslinger wrote:Or fuck it... I'm just going to get weapon specialization in my cock and whip people to death with it. Given all the enemies are total pussies, it seems like the appropriate thing to do.
Lewis Black wrote:If the people of New Zealand want to be part of our world, I believe they should hop off their islands, and push 'em closer.
good read (Note to self Maxus sucks a barrel of cocks.)
User avatar
Crissa
King
Posts: 6720
Joined: Fri Mar 07, 2008 7:54 pm
Location: Santa Cruz

Post by Crissa »

Still getting timeout errors, also 'thread does not exist' however the post action didn't actually fail, only the response.

I have noticed that with the general slow-down that it isn't clearing the 'read' flags on every thread I read, only the most recent. It doesn't even always manage when I post to a thread.

-Crissa
User avatar
neilhuiz
1st Level
Posts: 29
Joined: Fri Mar 07, 2008 7:55 pm

Post by neilhuiz »

Interestingly, the server did get moved from one OS to another, but both servers were Windows. The previous server was WS08, the current is WS03. That means we went from IIS7 to IIS6, which may have caused some undesireable consequences.
- Neil

Code: Select all

int getRandomInt() { 
    return 4; // obtained using roll of fair die 
              // guaranteed to be random 
}
Data Vampire
Master
Posts: 212
Joined: Sun Aug 16, 2009 5:09 am

Post by Data Vampire »

I got the following error when I submitted a post.
Could not connect to smtp host : 10060 : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
However the post was successful.
Parthenon
Knight-Baron
Posts: 912
Joined: Sat Jan 24, 2009 6:07 pm

Post by Parthenon »

Just got a
General Error

Could not connect to smtp host : 10060 : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
with the 1 thread didn't exit text at the bottom.

Got it while trying to preview and when trying to submit without previewing.

Zherog wrote:
Parthenon wrote:And is it just me or is the load time, even when up and running normally, about 3-5 times longer than normal?
Nifty also had been getting progressively worse as far as performance goes, and for a few hours yesterday our new host's entire system was offline. My hunch is the degrading performance is tied to the offline-related downtime, but I don't have any actual evidence for that. I'll keep an eye on overall performance.
Just been using the standard status bar (well, actually the Extended Statusbar addon) to time my browsing the forums in a really unscientific test, and while I was moving from page to page only opening one page at a time, the load time started off as 5 1/2 seconds- not unmanageable.

However, the load time started increasing. 10 seconds, then 17, and going up to the longest load time of 56 seconds. With a 10 Mb/s connection. Somethings really not right at that point.

However, suddenly it seemed to speed up again and vary between 5-10 seconds.
Last edited by Parthenon on Sat Mar 06, 2010 3:14 am, edited 1 time in total.
Mask_De_H
Duke
Posts: 1995
Joined: Thu Jun 18, 2009 7:17 pm

Post by Mask_De_H »

The board is really starting to chug, I've been getting the same errors Parthenon has gotten, and the previous error is showing up again.
FrankTrollman wrote: Halfling women, as I'm sure you are aware, combine all the "fun" parts of pedophilia without any of the disturbing, illegal, or immoral parts.
K wrote:That being said, the usefulness of airships for society is still transporting cargo because it's an option that doesn't require a powerful wizard to show up for work on time instead of blowing the day in his harem of extraplanar sex demons/angels.
Chamomile wrote: See, it's because K's belief in leaving generation of individual monsters to GMs makes him Chaotic, whereas Frank's belief in the easier usability of monsters pre-generated by game designers makes him Lawful, and clearly these philosophies are so irreconcilable as to be best represented as fundamentally opposed metaphysical forces.
Whipstitch wrote:You're on a mad quest, dude. I'd sooner bet on Zeus getting bored and letting Sisyphus put down the fucking rock.
Username17
Serious Badass
Posts: 29894
Joined: Fri Mar 07, 2008 7:54 pm

Post by Username17 »

Yeah, the full error is:
Error Message wrote:Could not connect to smtp host : 10060 : A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
But the post stills gets made. But the boards are sloooooow.

-Username17
User avatar
Zherog
Knight-Baron
Posts: 910
Joined: Fri Mar 07, 2008 7:54 pm

Post by Zherog »

Fuckity fucking fuck!

My apologies (again). We had DNS issues. Neil did his voodoo (which I think involved kicking somebody from tech support in the balls) and got things up and running.
You can't fix stupid.

"A life is not important except in the impact it has on other lives." ~ Jackie Robinson
Parthenon
Knight-Baron
Posts: 912
Joined: Sat Jan 24, 2009 6:07 pm

Post by Parthenon »

Thanks for all the effort you're going through to keep the site online.

How feasible would it be to make a page for the next week or two to describe whats happening to the site? So if the site goes down and I see the woman with the backpack I don't worry that the domain name has been sold or something.

Weird problem I'm having: the thread pages don't stop loading. They're currently still loading the page... about 5 minutes in. Takes about 10 seconds to start loading the page, 5 to actually load it up, then more than 5 minutes doing absolutely nothing.

So far only one page has finished loading with a time of just under 5 minutes, and the thread lists are fine, but it keeps loading, and loading, and....

Not actually a problem, but it does seem pretty stupid and might be a sign of something else going wrong.

EDIT: It just started finishing loading normally. No idea why.

Just got another error when replying to a thread:
Could not connect to smtp host : 111 : Connection refused
Last edited by Parthenon on Mon Mar 08, 2010 9:46 pm, edited 1 time in total.
User avatar
Hicks
Duke
Posts: 1318
Joined: Sun Jul 27, 2008 3:36 pm
Location: On the road

Post by Hicks »

To the folks fixing the den, you have my utmost thanks. The Den basically just fell off the internet for me for the past week. Thank you for your hard work and dedication.
Image
"Besides, my strong, cult like faith in the colon of the cards allows me to pull whatever I need out of my posterior!"
-Kid Radd
shadzar wrote:those training harder get more, and training less, don't get the more.
Lokathor wrote:Anything worth sniffing can't be sniffed
Stuff I've Made
User avatar
neilhuiz
1st Level
Posts: 29
Joined: Fri Mar 07, 2008 7:55 pm

Post by neilhuiz »

Parthenon wrote:So far only one page has finished loading with a time of just under 5 minutes, and the thread lists are fine, but it keeps loading, and loading, and....

Not actually a problem, but it does seem pretty stupid and might be a sign of something else going wrong.
That is likely not the site's problem, but rather the loading of some resource. A page will claim to still be in the loading state until all images, scripts, etc. have been loaded. Do you see a broken image anywhere?
Hicks wrote:To the folks fixing the den, you have my utmost thanks. The Den basically just fell off the internet for me for the past week. Thank you for your hard work and dedication.
You are most welcome, Hicks.
Zherog wrote:My apologies (again). We had DNS issues. Neil did his voodoo (which I think involved kicking somebody from tech support in the balls) and got things up and running.
I have kicked one or more people in one or more balls, each of those one or more people being of one or more flavors of asshat extraordinaire. The results of the one or more kicks to one or more people is that we don't do business with them anymore. For those that are keeping score, we are now hosted by Blue Host, who have a very good track record for getting shit done.
- Neil

Code: Select all

int getRandomInt() { 
    return 4; // obtained using roll of fair die 
              // guaranteed to be random 
}
Parthenon
Knight-Baron
Posts: 912
Joined: Sat Jan 24, 2009 6:07 pm

Post by Parthenon »

neilhuiz wrote:That is likely not the site's problem, but rather the loading of some resource. A page will claim to still be in the loading state until all images, scripts, etc. have been loaded. Do you see a broken image anywhere?
No, I don't see anything missing. I only looked at a couple of the things it was loading on the status bar, and from what I can remember, one was status.icq, one was wizards.messageboard and the others were tgdmb.com. Hmmm... probably one was an avatar, one was obviously the icq status, but the others I have no idea. Anyway, as I edited in my post above, it seems to have worked itself out now.

The weird thing about it was that they had been loading for 4 minutes or so before I started typing up that post and continued loading for a minute or two after I posted the message, so up to around ten minutes. With a reliable 10Mb/s connection.

But thanks again for the judicious kicks in the balls.
User avatar
Maxus
Overlord
Posts: 7645
Joined: Fri Mar 07, 2008 7:54 pm

Post by Maxus »

I know I posted a couple of times earlier, but now the posts aren't showing up for me.

Also, not messing around or closing Firefox for a while logs me out of the Den now, despite it formerly letting me skip logging in for weeks at a stretch.

Edit: Also, I'm with Hicks. I was about to hit withdrawal due to people repeatedly asking questions that I really wanted to refer to the Denizens.

Thanks a ton for getting this place back up.
Last edited by Maxus on Tue Mar 09, 2010 8:09 am, edited 1 time in total.
He jumps like a damned dragoon, and charges into battle fighting rather insane monsters with little more than his bare hands and rather nasty spell effects conjured up solely through knowledge and the local plantlife. He unerringly knows where his goal lies, he breathes underwater and is untroubled by space travel, seems to have no limits to his actual endurance and favors killing his enemies by driving both boots square into their skull. His agility is unmatched, and his strength legendary, able to fling about a turtle shell big enough to contain a man with enough force to barrel down a near endless path of unfortunates.

--The horror of Mario

Zak S, Zak Smith, Dndwithpornstars, Zak Sabbath. He is a terrible person and a hack at writing and art. His cultural contributions are less than Justin Bieber's, and he's a shitmuffin. Go go gadget Googlebomb!
User avatar
neilhuiz
1st Level
Posts: 29
Joined: Fri Mar 07, 2008 7:55 pm

Post by neilhuiz »

Whenever the boards do a move from server to server, the session management can get sort of screwy. It should work itself out, but if it doesn't, I'll reset everyone's sessions in the database to get us back to a clean state.
- Neil

Code: Select all

int getRandomInt() { 
    return 4; // obtained using roll of fair die 
              // guaranteed to be random 
}
User avatar
NineInchNall
Duke
Posts: 1222
Joined: Fri Mar 07, 2008 7:54 pm

Post by NineInchNall »

New error:
Could not connect to smtp host : 111 : Connection refused
Current pet peeves:
Misuse of "per se". It means "[in] itself", not "precisely". Learn English.
Malformed singular possessives. It's almost always supposed to be 's.
Parthenon
Knight-Baron
Posts: 912
Joined: Sat Jan 24, 2009 6:07 pm

Post by Parthenon »

Yeah, just got the same
General Error

Could not connect to smtp host : 111 : Connection refused
error yet again when posting.

Second time it's happened.
User avatar
shadzar
Prince
Posts: 4922
Joined: Fri Jun 26, 2009 6:08 pm

Post by shadzar »

seems to be working fine now...
Play the game, not the rules.
Swordslinger wrote:Or fuck it... I'm just going to get weapon specialization in my cock and whip people to death with it. Given all the enemies are total pussies, it seems like the appropriate thing to do.
Lewis Black wrote:If the people of New Zealand want to be part of our world, I believe they should hop off their islands, and push 'em closer.
good read (Note to self Maxus sucks a barrel of cocks.)
Username17
Serious Badass
Posts: 29894
Joined: Fri Mar 07, 2008 7:54 pm

Post by Username17 »

I've gotten this one as well:
Could not connect to smtp host : 111 : Connection refused
It appears to have no meaningful effect in the main forum. The post still gets posted, it just doesn't send you there to look it over (but you can navigate there yourself). It seems that when it comes up after sending a PM that the PM is not sent, or at least, does not appear in my sentbox.

The short answer is that there seems to be more people wanting Kitchensink Fantasy Role Playing, and more importantly more people willing to contribute to it than Black Forest. I would not have been able to get aWoD to the "nearly finished" state it is in now without all the contributions and brain storming from others. So likely, KFRP is the next project. Further delaying both Black Forest and Fantastic.

I rather predict that KFRP will end up in the 300-400k word range. But a lot of that can and should be High Adventure and Culture Focus articles, which are quick to write and require a lot less research than a "...by Night" article does.

-Username17
User avatar
RobbyPants
King
Posts: 5201
Joined: Wed Aug 06, 2008 6:11 pm

Post by RobbyPants »

I noticed several more posts from this thread are gone. I posted something here yesterday around 10:00 AM or so.
User avatar
Maj
Prince
Posts: 4705
Joined: Fri Mar 07, 2008 7:54 pm
Location: Shelton, Washington, USA

Post by Maj »

Frank wrote:It appears to have no meaningful effect in the main forum. The post still gets posted, it just doesn't send you there to look it over (but you can navigate there yourself). It seems that when it comes up after sending a PM that the PM is not sent, or at least, does not appear in my sentbox.
It's because - if I recall correctly - it's in your outbox until the recipient reads it.
My son makes me laugh. Maybe he'll make you laugh, too.
TarkisFlux
Duke
Posts: 1147
Joined: Sun Jun 22, 2008 9:44 pm
Location: Magic Mountain, CA
Contact:

Post by TarkisFlux »

Just an update, I'm still getting:
www.tgdmb.com wrote:General Error

Could not connect to smtp host : 111 : Connection refused.
when I post. Still posts the message without issue, but that error kills the redirect that normally comes up after a post.

Edit: It's not all of the time, this post went through without incident.
Last edited by TarkisFlux on Tue Mar 30, 2010 10:40 pm, edited 1 time in total.
The wiki you should be linking to when you need a wiki link - http://www.dnd-wiki.org

Fectin: "Ant, what is best in life?"
Ant: "Ethically, a task well-completed for the good of the colony. Experientially, endorphins."
User avatar
Maj
Prince
Posts: 4705
Joined: Fri Mar 07, 2008 7:54 pm
Location: Shelton, Washington, USA

Post by Maj »

The smtp post goes through on threads that have subscribers. It's the little warning that says there's a problem with the subscription eMail system.
My son makes me laugh. Maybe he'll make you laugh, too.
Post Reply