T
Hi..
Trying to install SSL..
The Site is broken. Look like no csl, java, tables and so on are loaded.
And Yes: Edited the line in /una/inc/header.inc.php to "https"...Anytime, with ssl or without..
With "http",.. it works fine.. (without ssl) Where else are changes required?
THX!
---
M
Hi,
Add this to your .htaccess file in the root of your site.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yoursite_com/$1 [R,L]
The _ is a .
THX! Will try it tomorrow!bye!
I'm having the same problem. I added what you wrote to the .htaccess file but, with cpanel I can't find a way to stop and restart the service.
While this can be added to the .htaccess file it is better to add it to the vhost entry.
For the nginx folks
server {listen 80;server_name domain.tld www.domain.tld;return 301 https://$server_name$request_uri; }
Hi..Tested it.
Site loads fine! 😅 BUT...! "Browser says": sometime SAVE PAGE, sometime UNSAVE...I think its about my path..domain/unadomain/una-data
M
Hi,
Add this to your .htaccess file in the root of your site.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yoursite_com/$1 [R,L]
M
The _ is a .
T
THX! Will try it tomorrow!
bye!
I'm having the same problem. I added what you wrote to the .htaccess file but, with cpanel I can't find a way to stop and restart the service.
While this can be added to the .htaccess file it is better to add it to the vhost entry.
For the nginx folks
server {
listen 80;
server_name domain.tld www.domain.tld;
return 301 https://$server_name$request_uri;
}
T
Hi..
Tested it.
Site loads fine! 😅
BUT...!
"Browser says": sometime SAVE PAGE, sometime UNSAVE...
I think its about my path..
domain/una
domain/una-data
---