Describe the question
Mixed Content: The page at '
where do i change to correct this. @akhilleusuggo @DanielnetoDotCom
share a screenshot of what content is not handled over https

if possible please access the portal www.fitnesscannon.fit and https://fitnesscannon.fit youll see the errors @DanielnetoDotCom
1- ) First , make sure that you have changed the url on /videos/configuration.php to https://fitnesscannon.fit
2 - ) /etc/apache2/sites-available/
Add this lines ( you can google for more information ) , replace yoursite.com by your domain name
RewriteEngine on
RewriteCond %{SERVER_NAME} =yoursite.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
3 - ) If you want that all request goes to https and remove http , delete this lines from your /videos/configuration.php
if(!empty($_SERVER['SERVER_NAME']) && $_SERVER['SERVER_NAME']!=='localhost' && !filter_var($_SERVER['SERVER_NAME'], FILTER_VALIDATE_IP)) {
// get the subdirectory, if exists
$subDir = str_replace(array($_SERVER["DOCUMENT_ROOT"], 'videos/configuration.php'), array('',''), FILE);
$global['webSiteRootURL'] = "http".(!empty($_SERVER['HTTPS'])?"s":"")."://".$_SERVER['SERVER_NAME'].$subDir;
}else{
_Read more about this_ https://github.com/WWBN/AVideo/wiki/Redirect-http-to-https
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Most helpful comment
1- ) First , make sure that you have changed the url on
/videos/configuration.phpto https://fitnesscannon.fit2 - )
/etc/apache2/sites-available/Add this lines ( you can google for more information ) , replace yoursite.com by your domain name
3 - ) If you want that all request goes to https and remove http , delete this lines from your
/videos/configuration.php_Read more about this_ https://github.com/WWBN/AVideo/wiki/Redirect-http-to-https