Dee-Nee Forums

General => News => Topic started by: Gantry on 10/07/13, 11:20:28 AM

Title: Site may be flaky
Post by: Gantry on 10/07/13, 11:20:28 AM
Current issues with "all SSL" for Dee-Nee

Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 07:09:30 PM
Appears we have an avatar issue ... the forum software is prepending the forum avatar directory URL in front of external URLs. That is, it's using http://forums.dee-nee.com/avatars/http://nightwulf.rbicentral.com/nightwolf-sel.gif for my avatar URL. Not seeing where to fix this in settings and not sure how switching to https would cause this ...
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:11:36 PM
Been fucking with it as the avatar was the only thing loading via http and not https.  Was hand-editing the php files but I think I changed them all back after I found the proper spot to chnage https avatar loads in the admin settings.  See if it's still happening. 
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:15:36 PM
Now it's back to "partially encrypted" jesus christ  - how can it be so hard to make this software load everything via https?
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:18:25 PM
OK now fully https but see if it's happening again.  The culprit may be line 3236 of Subs.php wulf, copy/pasted that from an SMF community post. so maybe it's not doing something properly.  If I don't change that line the main avatar doesn't load https
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 07:23:07 PM
Admin -> forum -> attachments and avatars -> avatar settings to specify the default URL; it's showing https now.

If you gave me ssh access after moving the server home, I'm not aware of it, so unable to look at Subs.php. Using the default Subs, and https specified in admin settings as above, no avatars are loaded? What's the HTML look like in the img tag?

Didn't think of this before, but you might run into mixed content warnings. That is, if the whole page is https but it's loading my avatar from (http) nightwulf.rbicentral.com, that might generate a "do you want to load only the secure content" popup. The real answer here might be to enable the feature that downloads external avatars to the server and then serves locally.
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:30:04 PM
Yeah I changed it to https but I still need to make the Subs.php change here for it to work:

http://www.simplemachines.org/community/index.php?topic=485755.msg3401177#msg3401177 (http://www.simplemachines.org/community/index.php?topic=485755.msg3401177#msg3401177)

I'll set you up with an account and text the login info shortly. 


Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:32:02 PM
I didn't look at mixed content enough but I think the error that bug the users are only if you mix http & https within your own domain.  Otherwise no forum/blog/whatever website that lets you load otehr peoples images, youtube, etc would be usable via https without really bugging the user. 
Title: Re: Site may be flaky
Post by: Reds on 10/07/13, 07:43:43 PM
NERD ALERT
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 07:46:06 PM
Avatars set to https in admin and loading the site fully https, changed Subs.php back to original code, but the edited one is still there and commented out.  Avatars still fucked up if linked to outside, wonder if I edited something and forgot about it. 
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 08:01:31 PM
Copied the whole block of code dealing with avatars to a text editor to properly format it so I can fkn read it. People bitch about perl being hard to read, then they scribble out PHP without any proper use of braces and rely on seemingly random use of tabs to show program flow. HATE.
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 09:10:53 PM
I don't think the lines you're modifying in Subs.php are the issue; think that's for the avatar of the user rather than the poster. Looking through Display.php, might be a project for tomorrow ...
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 09:17:46 PM
I think you are right about that, my avatar giving me issues with http and not https was my own. 
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 09:21:33 PM
The "Jump to" area to pick your board also acting flaky
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 09:22:05 PM
It's gotta be in Load.php:
'image' => $profile['avatar'] == '' ? ($profile['id_attach'] > 0 ? '<img class="avatar" src="' . (empty($profile['attachment_type']) ? $scripturl . '?action=dlattach;attach=' . $profile['id_attach'] . ';type=avatar' : $modSettings['custom_avatar_url'] . '/' . $profile['filename']) . '" alt="" />' : '') : (stristr($profile['avatar'], 'https://') ? '<img class="avatar" src="' . $profile['avatar'] . '"' . $avatar_width . $avatar_height . ' alt="" />' : '<img class="avatar" src="' . $modSettings['avatar_url'] . '/' . htmlspecialchars($profile['avatar']) . '" alt="" />'),
Title: Re: Site may be flaky
Post by: Gantry on 10/07/13, 09:27:01 PM
Don't ahve an ssh session but check modify date on that file, maybe I manually added some https in there, but I'm pretty sure I backed up the original file and copied back when it didn't help.
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 09:28:54 PM
Actually I just changed (stristr($profile['avatar'], 'https://') to http instead of https and the avatars are back. I need to figure out exactly what that may break, or if it even makes sense, but avatars came back. Will figure all that out tomorrow.
Title: Re: Site may be flaky
Post by: Reds on 10/07/13, 09:33:16 PM
Avatars seem bigger.  Is that just me?
Title: Re: Site may be flaky
Post by: nightwulf on 10/07/13, 09:38:58 PM
Still hardcoded to 75x75, so just you. I think.
Title: Re: Site may be flaky
Post by: Kane on 10/07/13, 09:55:42 PM
Quote from: Reds on 10/07/13, 09:33:16 PM
Avatars seem bigger.  Is that just me?

Did you shave around the edges?
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 07:35:27 AM
So it looks like two things they perform similarly (the Jump to: button and the ability to modify the post on the same page) behave the same way - brings up a banner that says "Loading" and then doesn't do anything.  I'll have to check those out later today. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:22:37 AM
Fuck quoting doesn't work either, won't have time til later to properly look at. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:29:00 AM
More brainstorming - quick community search says Display.template.php handle all three broken functions (quoting, jump to, quick modify) yet it's happening for both themes and they have different files.   

Tried both themes and mutiple browsers, same issue. 
Title: Re: Site may be flaky
Post by: Reds on 10/08/13, 09:34:58 AM
I searched for the sandwich thread and found it just fine. 

HOPE THAT HELPS!
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 10:17:27 AM
thx
Title: Re: Site may be flaky
Post by: fknmclane on 10/08/13, 10:50:12 AM
tapatalk doesn't seem to be working at all, gantry. hth.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 11:22:47 AM
Can someone with the iPhone/Pad version of Tapatalk verify if it's working or not?
Title: Re: Site may be flaky
Post by: BeefMaster on 10/08/13, 11:42:55 AM

Quote from: Gantry on 10/08/13, 11:22:47 AM
Can someone with the iPhone/Pad version of Tapatalk verify if it's working or not?

Posting from iOS Tapatalk. I even used the "quote" function!
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 11:43:54 AM
OK then we need all tapatlk users to checkin, maybe the problem is android only. 
Title: Re: Site may be flaky
Post by: BeefMaster on 10/08/13, 11:44:56 AM
For what it's worth, the "Quote" script still appears broken on Firefox.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 11:48:46 AM
Quote from: BeefMaster on 10/08/13, 11:44:56 AM
For what it's worth, the "Quote" script still appears broken on Firefox.

OK so if I disable quick reply in Profile -> Modify Profile -> Look and Layout, then it does quote on the "post reply" page.  I wonder if baines/rdub don't have quick reply set and that's why it worked for them. 
Title: Re: Site may be flaky
Post by: fknmclane on 10/08/13, 12:09:03 PM
Android phone.

Failed to connect to forum etc etc etc.
Title: Re: Site may be flaky
Post by: Flood on 10/08/13, 12:12:24 PM
Pretty sure tapatalk killed the dinosaurs, and now it has its sight set on the Dee-Nee forums.
Title: Re: Site may be flaky
Post by: Reds on 10/08/13, 12:16:40 PM
Great Gantry.  Now you've doomed us all.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:02:08 PM
Nothing in error logs for AJAX stuff but quick mod gives this in access log:

10.1.10.1 - - [08/Oct/2013:13:01:29 -0500] "GET /index.php?action=quotefast;quote=904613;modify;xml HTTP/1.1" 200 263


Jump to

10.1.10.1 - - [08/Oct/2013:13:02:17 -0500] "GET /index.php?action=xmlhttp;sa=jumpto;xml HTTP/1.1" 200 332
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:12:55 PM
Separated the logs between http & https to see what's connecting with what.  My Tapatalk which isn't work is doing http instead of https which is why I'm guessing it isn't working, doesn't like the redirect code. 

None of the non-functioning AJAX stuff appears to be using http which is good - so we may have an issue not related to http.  Wonder if nightwulf's changed caused it?
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:30:46 PM
OK reverted nightwulf's change, no difference. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:36:59 PM
I don't like that these URL's for the AJAX stuff has semicolons in them.  Copy/pasting that URL above gives a weird XML parse error.  Also shows that error right by the self-avatar load which was one of the last things I switched from http to https.  Something is goofy, has to be a change I made.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:42:06 PM
Quote URL when a quick reply is set:

10.1.10.1 - - [08/Oct/2013:13:41:41 -0500] "GET /index.php?action=quotefast;quote=904640;xml HTTP/1.1" 200 423
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 01:50:47 PM
Looks like semicolons are legit for use to separate variables/fields as it is here, so that ain't the issue.   SMF Function DB for the quick quote:

http://support.simplemachines.org/function_db/index.php?action=view_function;id=335 (http://support.simplemachines.org/function_db/index.php?action=view_function;id=335)

Don't think it's a coincidence that all these functions use local javascript to function properly. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 02:10:14 PM
Ok tapatalk people with issues will probably have to delete the forums from the Tapatalk app and readd
Title: Re: Site may be flaky
Post by: broiler on 10/08/13, 02:17:54 PM
Can't figure out how to delete the forums
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 02:26:34 PM
Keep going back until you see the forums, then tap & hold and remove
Title: Re: Site may be flaky
Post by: Reds on 10/08/13, 02:29:36 PM
Stop giving orders. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 04:27:12 PM
YouTube imbeds also not working
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 04:32:34 PM
Appears to be the mixed http/https content, quickly realizing that making this site https is too much of a fucking pain to deal with. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 05:31:21 PM
Started a checklist on post #1
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 05:54:52 PM
FF is now telling me the page is only "partially encrypted," which I'm strongly assuming is due to non-https avatars. Thinking storing those locally is really the only way to fix that.

Supported in SMF out of the box; just have to enable the option and the forum downloads external avatars then treats them like avatars uploaded by the user.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:03:59 PM
I don't care if we don't see the lock, as that will come up whenever we link to an outside pic as well.  If it's easy to do we can enable for avatars though.  Probably best...

I care about the mixed content errors with youtube because it bugs the user (on IE) and blocks youtube from being displayed on most/all browsers. 

Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:05:28 PM
Going to disable the other youtube plugin and try this Simple Youtube Video Embedder/BBC, the readme is bigger than the xml file of code changes.  We'll keep the discussion off the youtube.com thread. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:13:11 PM
Actually if I'm hacking that mod to add https from SMF discussion thread adding other sites can't be too tricky.   Short term having youtube will be best, discussion thread so I can quickly reference it. 

http://www.simplemachines.org/community/index.php?topic=507505.0 (http://www.simplemachines.org/community/index.php?topic=507505.0)
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:22:42 PM
So that mod doesn't support youtube links embedded in URL tags, which is what the other mod used.  Well that fkn blows, I'll try to reinstall the other one but it's WAY more complicated. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:23:31 PM
Test new mod anyway:

http://www.youtube.com/watch?v=Df6Rfsi6zSY

Title: Re: Site may be flaky
Post by: Reds on 10/08/13, 06:33:37 PM
This is the most riveting fucking thread in dee nee history. 

It's like watching a Korean mystery movie without subtitles on.  You aren't entirely sure whats happening, but you cant stop watching. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:53:19 PM
One more test of http links, should embed https:

http://www.youtube.com/watch?v=-i-Scb9vlaM

Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 06:54:54 PM
So that part was easy, teaching the mod to embed all the existing url=youtube.com codes is the next step. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 07:25:05 PM
So I found a mod I was hoping would work out of the box, but no dice.  It could display youtube links in url= format, but no "force https" option.  And since there's so much fkn code it'll take forever for me to figure out.   Back to the simple, youtube only one. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 07:40:23 PM
https test

https://www.youtube.com/watch?v=Df6Rfsi6zSY
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 08:35:33 PM
I like the embed mod you're using now. Doesn't support the multitude of sites the other one did, but I don't think anyone was using them anyway.
Title: Re: Site may be flaky
Post by: Darky on 10/08/13, 08:43:05 PM
Quote from: Reds on 10/08/13, 06:33:37 PM
This is the most riveting fucking thread in dee nee history. 

It's like watching a Korean mystery movie without subtitles on.  You aren't entirely sure whats happening, but you cant stop watching.

You hit the nail on the head. I did not understand one single post by Gantry and nightwolf, but highly anticipated their next post.
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 08:44:41 PM
Quick edit works, was broken by some debug code I put in to track down the avatar issue. May have fixed others as well.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 08:45:30 PM
Quote from: nightwulf on 10/08/13, 08:35:33 PM
I like the embed mod you're using now. Doesn't support the multitude of sites the other one did, but I don't think anyone was using them anyway.

Yeah the other one was crufty and causing issues and had to be hand removed.  Gotta make it break down the url tags but I should be able to make that work after learning some php and how this stuff works.  When I do I'll edit the original mod and save a custom copy, no hand editing the php files. 

Quote from: nightwulf on 10/08/13, 08:44:41 PM
Quick edit works, was broken by some debug code I put in to track down the avatar issue. May have fixed others as well.

POOYAN!!!  All 3 AJAXy things now working again. 
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 08:46:37 PM
This is a test quick reply ...

Edit: looks good. I added some code to insert commented out HTML with a few variables to track down where the avatar URL was being changed. Removed it, fixed now, my apologies. Shout out to HttpFox (https://addons.mozilla.org/en-US/firefox/addon/httpfox/) which helped find the XML error in about 8 seconds, easily the most useful Firefox add-on outside of Adblock.
Title: Re: Site may be flaky
Post by: fknmclane on 10/08/13, 08:47:39 PM
Quote from: DÄrky on 10/08/13, 08:43:05 PM
Quote from: Reds on 10/08/13, 06:33:37 PM
This is the most riveting fucking thread in dee nee history. 

It's like watching a Korean mystery movie without subtitles on.  You aren't entirely sure whats happening, but you cant stop watching.

You hit the nail on the head. I did not understand one single post by Gantry and nightwolf, but highly anticipated their next post.

I concur.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 08:49:34 PM
Quote from: nightwulf on 10/08/13, 08:46:37 PM
This is a test quick reply ...

Edit: looks good. I added some code to insert commented out HTML with a few variables to track down where the avatar URL was being changed. Removed it, fixed now, my apologies. Shout out to HttpFox (https://addons.mozilla.org/en-US/firefox/addon/httpfox/) which helped find the XML error in about 8 seconds.

Not only does quick quote work now, showed your edit even though it wasn't in the main display.   I'll have to check out httpfox, because the Chrome Debugger wasn't showing any errors.  Then again maybe I didn't know where to look
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 08:51:55 PM
It's totally my fault, but I still am surprised at the fragility of XML. At least in the context of ajax ...

Switched to Curve to make sure everything works here too. Still like the old YaBB theme better.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 08:53:53 PM
ur crazy - I even tried "core" out and fixed the https issues with that when debugging.  What a shitheap that theme is
Title: Re: Site may be flaky
Post by: nightwulf on 10/08/13, 08:55:13 PM
Quote from: Gantry on 10/08/13, 08:49:34 PM
I'll have to check out httpfox, because the Chrome Debugger wasn't showing any errors.  Then again maybe I didn't know where to look

Seriously, like 8 seconds.
Title: Re: Site may be flaky
Post by: Darky on 10/08/13, 08:57:54 PM
(http://31.media.tumblr.com/tumblr_lvjo24RVj61qcpgr3o1_500.gif)
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 08:59:07 PM
Already installed, though I'm a little out of practice with all this stuff.   I never realized how often I used "Jump to" until it was broken. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:06:33 PM
Auto-download avatars set, but it looks like if they had it set before it doesn't download.  Will change new aviators to test.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:08:02 PM
they auto-download
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:09:18 PM
For old users, I can click on the user, go into their profile and save the settings without changing anything.  after that it's a local file.  Not perfect but doable, just like Nacho's mom
Title: Re: Site may be flaky
Post by: Reds on 10/08/13, 09:10:31 PM
TACO CAT
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:11:13 PM
Saving old users profiles can fuck up the scaling though, sorry de snorry Darky :-\
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:13:23 PM
AAAAND in some cases it just gives them no avatar, looks like rdub is changing his look
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:16:35 PM
AAAAND it breaks animated gifs, so Malnu is out of commission, I think I'll stop now.
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:21:37 PM
Quick perusal of SMF forums say if they have to resize an animated gif it becomes a png and loses animation.  That's enough problems, users can link to their avatars again. 
Title: Re: Site may be flaky
Post by: Gantry on 10/08/13, 09:31:39 PM
Taco Cat was a test, but I think it stays
Title: Re: Site may be flaky
Post by: Darky on 10/09/13, 10:14:21 AM
Quote from: Gantry on 10/08/13, 09:11:13 PM
Saving old users profiles can fuck up the scaling though, sorry de snorry Darky :-\

Can you dumb this down a bit, have no idea what you are talking about? Please say it has nothing to do with Gino.
Title: Re: Site may be flaky
Post by: Gantry on 10/09/13, 10:32:08 AM
Your avatar picture got a little smooshed
Title: Re: Site may be flaky
Post by: Darky on 10/09/13, 01:35:15 PM
Quote from: Gantry on 10/09/13, 10:32:08 AM
Your avatar picture got a little smooshed

Didn't even notice until you mentioned it. I sure hope that Gino's avatar is intact.
Title: Re: Site may be flaky
Post by: broiler on 10/09/13, 09:20:19 PM
Quote from: Gantry on 10/08/13, 02:26:34 PM
Keep going back until you see the forums, then tap & hold and remove

Tried this in the ME section and it didn't work.
Title: Re: Site may be flaky
Post by: Gantry on 10/09/13, 09:21:52 PM
What's the ME section?  What didn't' work? 
Title: Re: Site may be flaky
Post by: broiler on 10/10/13, 06:45:12 PM
i did the update and now it works.  thanks g man!
Title: Re: Site may be flaky
Post by: Gantry on 10/10/13, 06:54:50 PM
 :love:
Title: Re: Site may be flaky
Post by: fknmclane on 10/10/13, 10:41:30 PM
What happened to the avatars boooo
Title: Re: Site may be flaky
Post by: Gantry on 10/10/13, 10:41:53 PM
???
Title: Re: Site may be flaky
Post by: fknmclane on 10/10/13, 11:15:30 PM
They're here on tapatalk but gone on desktop.

You broke it.
Title: Re: Site may be flaky
Post by: Gantry on 10/11/13, 08:21:00 AM
Does anyone but dum dum here have any issues with broken aviators?
Title: Re: Site may be flaky
Post by: BeefMaster on 10/11/13, 08:49:07 AM
Aviators are fine here.
Title: Re: Site may be flaky
Post by: Reds on 10/11/13, 08:59:09 AM
Work here no problem.
Title: Re: Site may be flaky
Post by: Gantry on 10/11/13, 10:02:50 AM
Two week ban for mclane seem appropriate then?
Title: Re: Site may be flaky
Post by: fathedX on 10/11/13, 10:19:19 AM
At least
Title: Re: Site may be flaky
Post by: Gantry on 10/11/13, 10:22:28 AM
Probably should be longer than arod, huh?
Title: Re: Site may be flaky
Post by: Reds on 10/11/13, 10:37:44 AM
LIFE
Title: Re: Site may be flaky
Post by: Gantry on 10/11/13, 10:41:21 AM
His or someone elses?
Title: Re: Site may be flaky
Post by: Reds on 10/11/13, 10:57:19 AM
yes.
Title: Re: Site may be flaky
Post by: fknmclane on 10/11/13, 04:11:20 PM
Nine hours passed before Gantry's response to my inquiry.  Interesting.
Title: Re: Site may be flaky
Post by: Gantry on 10/13/13, 09:29:50 AM
Some of us go to bed after 11pm their time on a weekday.  Question my mettle, will you?
Title: Re: Site may be flaky
Post by: broiler on 10/13/13, 10:42:56 AM
I tried to post a pic using tapatalk and it said image sharing wasn't authorized using the app
Title: Re: Site may be flaky
Post by: Gantry on 04/08/14, 07:28:31 PM
I'm sure you were all quite nervous about the huge OpenSSL security vulnerability that was disclosed and don't you worry - we are patched and free from the Heartbleed attack.  But no I'm not getting a new SSL cert...

I may take some time tonight and see if I can get Perfect Forward Secrecy (http://en.wikipedia.org/wiki/Forward_secrecy) working because it's the best way to do thing.  And fuck the NSA
Title: Re: Site may be flaky
Post by: Gantry on 04/08/14, 07:37:08 PM
So Apache 2.2 doesn't support PFS, the dream is over. 

Title: Re: Site may be flaky
Post by: Mike D. on 04/09/14, 04:04:53 PM
Quote from: Gantry on 04/08/14, 07:37:08 PM
So Apache 2.2 doesn't support PFS, the dream is over.

http://www.youtube.com/watch?v=OLK5ZOjWaXE
Title: Re: Site may be flaky
Post by: GDavis on 04/09/14, 05:04:53 PM
He means Apache the web server lol!
Title: Re: Site may be flaky
Post by: Mike D. on 04/09/14, 05:32:13 PM
OMG i'm so embrassded! 

;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D >:( ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D :'( :thumbsup: :thumbsup: :thumbsup: :thumbsup:
Title: Re: Site may be flaky
Post by: Gantry on 04/09/14, 06:03:33 PM
I had a stileproject.com t-shirt, loved that thing.  Was a XXL though and let it go. 
Title: Re: Site may be flaky
Post by: Gantry on 04/09/14, 06:03:58 PM
PS - I have a new internal hard drive for backup purposes, so we're going down again today for 5-10 minutes.  Though I'm not saying when.
Title: Re: Site may be flaky
Post by: Gantry on 04/09/14, 08:14:06 PM
Time is now fuckers, see you in 20
Title: Re: Site may be flaky
Post by: Darky on 04/09/14, 08:17:29 PM
I noticed something.

Mike D, hat tip to you for that post  8)
Title: Re: Site may be flaky
Post by: Gantry on 04/09/14, 11:11:35 PM
Three blue screens, and Office 2013 SP1 is barfing, hooray to Windows 8.1 update 1!
Title: Re: Site may be flaky
Post by: fightonusc on 04/18/14, 12:45:51 PM
I've noticed over the last couple of days that the "new post" notification icons have been randomly disappearing. I'll click on a "new" icon to get to the most recent post in one thread. But when I go back to the category, all of the "new" icons on that page are gone.
Title: Re: Site may be flaky
Post by: Briznock on 04/18/14, 01:40:51 PM
Quote from: fightonusc on 04/18/14, 12:45:51 PM
I've noticed over the last couple of days that the "new post" notification icons have been randomly disappearing. I'll click on a "new" icon to get to the most recent post in one thread. But when I go back to the category, all of the "new" icons on that page are gone.

Me too
Title: Re: Site may be flaky
Post by: Gantry on 04/18/14, 02:59:11 PM
Haven't seen that here, will keep an eye out
Title: Re: Site may be flaky
Post by: malnuboy on 04/23/14, 05:33:17 PM
DeeNee has been loading very slow on my phone lately. The rest of my web browsing appears to be normal though. One particular thing that is annoying as fuck is when you open a new post thing, it goes to the top of page of the new post then after a few seconds scrolls down to the first new post.
Title: Re: Site may be flaky
Post by: Gantry on 04/23/14, 06:29:46 PM
Is this still with the WM version of Tapatalk?  If so try browsing without it.  I've seen no speed issues personally, phone or computer. 
Title: Re: Site may be flaky
Post by: Reds on 04/23/14, 06:32:48 PM
Theres a wrestlemania version of tapatalk?