Welcome to the new R3VLimited Forum
Collapse
X
-
-
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.Comment
-
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.
Comment
-
Comment
-
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
-
Comment
-
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.
Last edited by mike.bmw; 03-30-2020, 11:45 PM.Comment
-
^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
-
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
Comment
-
Yes. Every time I've tried to post photos lately, from any file on my hard drive. Same message as yours.Comment
-
Comment
-
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 CrivelloneComment
Comment