SSL Log In Issue
Design and Skin Customization
You can see the root problem is what I outlined earlier:
1) You have the value "https://roughneckcity.com" in your data/config/config.php file
2) you are accessing your site at
https://www.roughneckcity.com - the "www" means your browser sees this as a DIFFERENT site.
You need to update your .htaccess file to FORCE your users to not go through www:
RewriteCond %{HTTP_HOST} ^www\.roughneckcity\.com [NC]
RewriteRule .? https:
Add this right after the "RewriteEngine On" line.