Legacy version 5.6.4 Issue

When the website is forced to https, page list block is unstable. What could be the reason and solution? Im using legacy version 5.6.4.
Will be obliged for help on this issue. Thank you.

What method are you using to ‘Force’ the website to https ?

Managing it through .htaccess file. `

RewriteEngine On RewriteBase / RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteRule . index.php [L]

I could find a solution to the issue.
Thank you for your kind attention and time.

I would advise you to add a definition to your root/config/site.php file like this:

define('BASE_URL', 'https://your-website-here');