Feedback Technical Grievances Thread

  • 🐕 I am attempting to get the site runnning as fast as possible. If you are experiencing slow page load times, please report it.
Status
Not open for further replies.

Null

Ooperator
kiwifarms.net
Joined
Nov 14, 2012
People have been complaining about two things recently.
  • Having to sign in multiple times to stay signed in.
  • Being randomly logged out.
If you experience either of these issues, please post with the following information:
  • Your browser.
  • Your operating system.
  • Any extensions you may have installed.
  • Your firewall.
There is a very high chance that if you are experiencing this problem, you have a firewall that intentionally deletes session cookies.


I've made the following changes today.
  • SSL is now enabled! Please use https://kiwifarms.net from now on.
  • Image and URL proxies are now enabled. Mein Endlösung to the Hotlinking Problem. This also ensures that remote content is embedded as using SSL for maximum security.
  • I've made the server redirect any variations of www.domain.tld for our forum URLs to the non-WWW version. If you are able to access the forum with www in the URL, please inform me immediately.
On my immediate to-do list is to sort out some latency issues. The website takes a little longer to load on HTTPS.
 
Acknowledging two personal grievances;

  • Although our image proxy is really awesome, there's a very frequent problem where people are copying proxy images and the server will attempt to cache its own cache, breaking the image.
  • Users linking to non-HTTPS versions of kiwifarms.net will bump an HTTPS user off. Need to content replace http to https.
 
  • Like
Reactions: José Mourinho
Testing something.

RF4ndZ0.jpg


http://kiwifarms.net/proxy.php?image=http%3A%2F%2Fi.imgur.com%2FRF4ndZ0.jpg&hash=c9f076e2dc552c49f2f7c510228fef82

https://kiwifarms.net/proxy.php?image=http%3A%2F%2Fi.imgur.com%2FRF4ndZ0.jpg&hash=c9f076e2dc552c49f2f7c510228fef82

http://kiwifarms.net/proxy.php?image=http%3A%2F%2Fi.imgur.com%2FRF4ndZ0.jpg&hash=c9f076e2dc552c49f2f7c510228fef82

https://kiwifarms.net
http://kiwifarms.net

http://cwckiforums.com/threads/cwc-mugshot-2k14.6795/
 
Last edited:
CWCki Forums gave me a lot of grief on mobile...it would randomly quit, and then I'd have to log in again.
 
  • Like
Reactions: José Mourinho
Sonichu Reduxxx on the kiwifarms.net side switches to Kiwi.X Light
 
Sonichu Reduxxx on the kiwifarms.net side switches to Kiwi.X Light
The bug is that this shows up at all, not that it is unselectable. The mod that disables scheme selection erroneously does not prevent scheme display.

Sonichu Reduxx will not be an option in the future, so please make constructive criticisms if you want something changed.
 
I have minor grievances. On a mobile device, the "Top" or "Go to top of page" button annoys me because I keep hitting it. Also, if I start a reply then for whatever reason not to post the reply, it's persistent at the bottom of the page. Sometimes I accidentally hit "Quote me now" while scrolling, sometimes common sense. No deal breakers and if they never get changed, I'm not gonna whine or anything. Just like an ability to delete a saved draft and maybe to turn off certain features in mobile.
 
I have minor grievances. On a mobile device, the "Top" or "Go to top of page" button annoys me because I keep hitting it. Also, if I start a reply then for whatever reason not to post the reply, it's persistent at the bottom of the page. Sometimes I accidentally hit "Quote me now" while scrolling, sometimes common sense. No deal breakers and if they never get changed, I'm not gonna whine or anything. Just like an ability to delete a saved draft and maybe to turn off certain features in mobile.
Yeah, those are a bit awkward requests. I just played around on my phone and I didn't really encounter any of the same problems. I think it's more an issue with your device. The common theme with all your problems is, "if I touch a spot on the screen it commits the action it's supposed to," but the way it works on my android is really ideal. Based on the movement, length of the touch, and directness of the touch, the phone seems to know if I'm simply swiping or committing an action.

Are you using an older smartphone or an iphone?
 
Nope. 2013 Nexus 7. Still need to upgrade it to Lollipop, though. I rarely browse on my Nexus 5 because the screen's too small for replies and ratings. It's probably just the tablet, it has quirks.

Edit: Oh, I completely forgot. Is there any chance that the way smilies/emoticons display in chat when you hit the button can be fixed or changed? When you click the smiley button (because I haven't been here long enough to commit them to memory like others), they display vertically instead of horizontally. It's annoying but bearable on a desktop, but it really causes a spaz out in the tablet.
 
Last edited:
Apparently, if you add another mpm module to apache, it deletes literally all your fucking modules and wipes apache clean. I was trying to switch from mpm_prefork to mpm_event to speed up the server, and instead broke absolutely everything. Everything.

What does this mean in layman's terms?
 
  • Like
Reactions: José Mourinho
What does this mean in layman's terms?
Okay, so Apache is what distributes content. When you talk to Apache, it figures out what to do based on the request.

https://kiwifarms.net/

This tells apache a lot. So does the hidden stuff in your request headers, stuff you send to every page. unwittingly. That URL alone tells people you want kiwifarms.net, and you're using the SSL HTTP protocol. So, it should send you content and it should encrypt it.

Normally, Apache will send you the contents of a file. If you request a directory, it will list the contents of a directory. Apache is configured to open index.php/html automatically, if you request a directory and that index file exists.

PHP is the language our website runs on. Apache is configured using mod_php5 to figure out how to open .php files, so that when you ask for index.php by opening kiwifarms.net, you get something way different than the raw text. In fact, index.php handles everything. When you access this URL, it opens it as the 2nd URL.

/threads/technical-grievances-thread.6828/#post-473755
index.php?/threads/technical-grievances-thread.6828/#post-473755

Literally every request made to XenForo is handled by that one file. It works in harmony with a complicated Apache system to make requests simple and easily understood for the end user.

mpm_event is a way to tell Apache how to handle requests. It uses what's called threads. Threads are relatively new technology and are incompatible with PHP, the scripts that run the website. Instead of tying to queue up every request individually, it attempts to split the request up into multiple threads. This works much faster. However, by enabling it, it disabled all the complicated bits that made that request work. After enabling it, instead of getting the content rendered by index.php, you simply got index.php's raw code.
 
I can't view the the threads list for the Discussion forum (yeah yeah, I know) anymore. All other forums work though.
The error I get when accessing https://kiwifarms.net/forums/discussion.18/ is:

setupAutoloader($fileDir . '/library'); XenForo_Application::initialize($fileDir . '/library', $fileDir); XenForo_Application::set('page_start_time', $startTime); $fc = new XenForo_FrontController(new XenForo_Dependencies_Public()); $fc->run();

Tried clearing out the cookies, restarting the browser, etc. but still get the same results. I also tried it logged in and logged out, and it was the same either way.
This is on Firefox 34.0. IE11 on the same machine and mobile browsers do seem to work.
 
  • Like
Reactions: José Mourinho
I can't view the the threads list for the Discussion forum (yeah yeah, I know) anymore. All other forums work though.
The error I get when accessing https://kiwifarms.net/forums/discussion.18/ is:

Tried clearing out the cookies, restarting the browser, etc. but still get the same results. I also tried it logged in and logged out, and it was the same either way.
This is on Firefox 34.0. IE11 on the same machine and mobile browsers do seem to work.
I am 99.9% sure people experiencing this are experiencing a caching issue. Do you get the same error using IE or Chrome?
 
  • Like
Reactions: José Mourinho
Clearing the cache worked. Thanks
IE didn't have the problem, but I assume that's because I never use it so nothing was cached.
 
Not going to bump the DDoS thread, but I feel it's worth mentioning:
The little 5 second bumper you see when loading the website for the first time is a Cloudflare measure usually only reserved for active attacks. However, I've enabled it preventitvely because I will be completely out of commission for the next 24 hours as I fight off a horde of zombie bikers.
 
Both the dark and light kiwifarms layouts have a fucking shifit on my mobile (iPhone 5, Chrome). They often refuse to load the site past the deaglenation subforum. There's just an empty space. It does load the "about us" and all that stupid footer, but not chat, off topic, etc.
phgmAFc.png
 
Status
Not open for further replies.
Back