Recent activity
Recent activity (0)
I got "Warning your password has expired." when going to edit website
Problem: "Edit site" shows this warning.Solution:1. Change your password. (Recommended)2.If you don't want to change your password, you can stop the warning in .env file.1) Go to Control Panel -> File Manager by the following path./home/{user_account}/rvsitebuildercms/{your_domain_name}/.env2) File this line: PASSWORD_EXPIRES_DAYS=120 Change 120 days to false:PASSWORD_EXPIRES_DAYS=false3) Save file .env and go to edit site again.
Make website to be able to be called with www on browser
You can set redirect manually by the following guide. Sorry for the inconvenience. Make website being called without www, and set the one with www to redirect here. 1.Go to cPanel -> File Manager -> DOMAINS -> Redirects. Or in .htaccess file at /home/{user_name}/public_html/.htaccess 2. Add rule: RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com [NC] RewriteRule ^(.*)$ https://yourdomain\.com/$1 [L,R=301,NC] Make your website being called www on browser. You can ask your host provider to set symlink for you by the following guide. 1. Make sure youhave a website created with RVsitebuilder 7 already. 2. (Your provider) Set symlink cd/home/{user-name}/rvsitebuildercmsln -s domain.com www.domain.com 3. Edit .env file/home/{user-name}/rvsitebuildercms/domain.com/.env (where to find .env) APP_URL=https://www.domain.com

