Originally posted by Digitalwave
View Post
Announcement
Collapse
No announcement yet.
Welcome to the new R3VLimited Forum
Collapse
X
-
Originally posted by Digitalwave View PostI 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
-
Originally posted by James Crivellone View Post
I'm always logged off when I first load the site, but after login it stays during my session.
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
-
Originally posted by James Crivellone View Post
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-31-2020, 12:45 AM.
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
-
Originally posted by GSU_ENGR View PostIs 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.
- Likes 1
Comment
-
Originally posted by Digitalwave View PostI 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
- Likes 1
Comment
Comment