Welcome to the new R3VLimited Forum

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • James Crivellone
    Head Janitor
    • Oct 2003
    • 6295

    #286
    Originally posted by Digitalwave
    Still having the same log in/cookie/caching issue on the new version. When I first visit the site it shows that I am not logged in, until I click on any link (like a sub-forum), then I am logged in and my personalizations re-appear.
    I'm always logged off when I first load the site, but after login it stays during my session.

    Comment

    • Digitalwave
      is a poseur
      • Oct 2003
      • 6276

      #287
      I have it set to save my login. It does keep me logged in except when I first come back to the site, it shows me as logged out until I click something else.

      If I try to log in when it's showing as logged out, it gives me an error.

      This started months ago with the first round of upgrades.

      RISING EDGE

      Let's drive fast and have fun.

      Comment

      • James Crivellone
        Head Janitor
        • Oct 2003
        • 6295

        #288
        Originally posted by Digitalwave
        I have it set to save my login. It does keep me logged in except when I first come back to the site, it shows me as logged out until I click something else.

        If I try to log in when it's showing as logged out, it gives me an error.

        This started months ago with the first round of upgrades.
        Using the full FQDN URL and not r3vlimtied.com?

        Comment

        • Powling
          E30 Fanatic
          • Jan 2015
          • 1290

          #289
          Originally posted by James Crivellone

          I'm always logged off when I first load the site, but after login it stays during my session.
          Ditto. I need to log in like 3 times before it works.
          Steve • Toronto
          1991 318is • Brillantrot
          Build Thread

          Comment

          • e30austin
            I waste 90% of my day here and all I got was this stupid title
            • Sep 2010
            • 15382

            #290
            all is functioning fine on my end. still not as quick to load before the initial update, last summer, but echoing others' sentiments, it is noticeably quicker than it was last week. thanks for all you do, james.
            '70 911s | '72 2002 | '88 M5 | '89 330is | '89 M3 | '95 911 | '02 M5 | '04 RR HSE

            Comment

            • Digitalwave
              is a poseur
              • Oct 2003
              • 6276

              #291
              Originally posted by James Crivellone

              Using the full FQDN URL and not r3vlimtied.com?

              https://www.r3vlimited.com/
              Looks like it was saved in my browser without the www. Maybe it's a problem with the domain records, then?

              RISING EDGE

              Let's drive fast and have fun.

              Comment

              • mike.bmw
                E30 Mastermind
                • Dec 2015
                • 1745

                #292
                For those having issues with login, I have a few suggestions.
                • Clear your browser cache/history/cookies/everything.
                • If you are visiting a bookmark, make sure you have the root site/forum bookmarked (https://www.r3vlimited.com/board/index.php).
                • Is your browser up to date? What browser are you running? Do you have the same issue in a different browser?
                • What browser extensions are you running? I've seen some odd ones wreak havoc (to include the embedded browser developer tools, things like firebug, or ad blockers).
                • Perhaps reset your browser settings as you may have some strange things happening with cookies or local browser storage.
                Good luck!
                Last edited by mike.bmw; 03-30-2020, 11:45 PM.

                Comment

                • GSU_ENGR
                  Member
                  • Mar 2018
                  • 77

                  #293
                  Is anyone having issues when trying to post pictures? I keep getting a message saying my file is corrupted. I've tried uploading them from my phone and computer and still get the same result. Any help would be appreciated. Thanks.

                  Comment

                  • R3Z3N
                    No R3VLimiter
                    • Jan 2011
                    • 3056

                    #294
                    ^No. I've been redoing my DIY pictures recently as well as my build thread.

                    On a speed note, I haven't had any stalls loading pages yesterday after work. It feels quite snappy. Still not NEAR as fast as before the update in 2019, but this is now very usable so far!

                    Comment

                    • Digitalwave
                      is a poseur
                      • Oct 2003
                      • 6276

                      #295
                      I realized after posting that it's not a record/CNAME issue. The "https://" and/or "www." issue can be resolved easily with an HTTP redirect in the .htaccess file. Force all traffic to the "https://www." version of the site, regardless what they entered into their browser.

                      Here is an example of the code. It redirects all HTTP to HTTPS and all / to /www.

                      Code:
                      RewriteEngine on
                      
                      RewriteCond %{HTTPS} off
                      RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
                      
                      RewriteCond %{HTTP_HOST} !^www\. [NC]
                      RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

                      This is just an example from a domain I manage. James Crivellone

                      RISING EDGE

                      Let's drive fast and have fun.

                      Comment

                      • LateFan
                        R3V Elite
                        • May 2013
                        • 4399

                        #296
                        Originally posted by GSU_ENGR
                        Is anyone having issues when trying to post pictures? I keep getting a message saying my file is corrupted. I've tried uploading them from my phone and computer and still get the same result. Any help would be appreciated. Thanks.
                        Yes. Every time I've tried to post photos lately, from any file on my hard drive. Same message as yours.

                        Comment

                        • LateFan
                          R3V Elite
                          • May 2013
                          • 4399

                          #297
                          Yep - Just tried again with three separate photos in different locations.....

                          "The file you are trying to upload is corrupted."

                          Comment

                          • James Crivellone
                            Head Janitor
                            • Oct 2003
                            • 6295

                            #298
                            Originally posted by LateFan
                            Yep - Just tried again with three separate photos in different locations.....

                            "The file you are trying to upload is corrupted."
                            Fixed, the PHP upgrade didn't reflect the appropriate upload directory

                            Comment

                            • James Crivellone
                              Head Janitor
                              • Oct 2003
                              • 6295

                              #299
                              Originally posted by Digitalwave
                              I realized after posting that it's not a record/CNAME issue. The "https://" and/or "www." issue can be resolved easily with an HTTP redirect in the .htaccess file. Force all traffic to the "https://www." version of the site, regardless what they entered into their browser.

                              Here is an example of the code. It redirects all HTTP to HTTPS and all / to /www.

                              Code:
                              RewriteEngine on
                              
                              RewriteCond %{HTTPS} off
                              RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
                              
                              RewriteCond %{HTTP_HOST} !^www\. [NC]
                              RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

                              This is just an example from a domain I manage. James Crivellone
                              Thanks, we actually use IIS so its a web.config type process and already have a few in place for forced HTTPS redirect. I thought the cookie issue was fixed on the non www but apparently not so I'll get a redirect in there for it as well.

                              Comment

                              • LateFan
                                R3V Elite
                                • May 2013
                                • 4399

                                #300
                                Originally posted by James Crivellone

                                Fixed, the PHP upgrade didn't reflect the appropriate upload directory
                                Just needed MOAR TURBO!

                                Thanks!

                                Comment

                                Working...