WebsiteBaker Community Forum

WebsiteBaker Support (2.12.x) => General Help & Support => Help en ondersteuning (dutch) => Topic started by: henri on November 24, 2020, 01:14:11 PM

Title: Using multiple columns dynamically in a template
Post by: henri on November 24, 2020, 01:14:11 PM
Ik gebruik in mijn template multiple columns dynamically
Zie onderstaand topic.
https://forum.WebsiteBaker.org/index.php/topic,28459.msg199247.html#msg199247

Nu heb ik met SSL een probleem met de multiple columns dynamically
De code die bovenaan in de index.php staat geeft in mijn browser aan dat de pagina niet veilig is.

<?php
if (!defined('WB_PATH')) die(header('Location: ../../index.php'));

ob_start(); page_content(1); $content=ob_get_contents(); ob_end_clean(); // Main
ob_start(); page_content(2); $right=ob_get_contents(); ob_end_clean(); // Right from main
ob_start(); page_content(3); $left=ob_get_contents(); ob_end_clean(); // Left from main
ob_start(); page_content(4); $fulltop=ob_get_contents(); ob_end_clean(); // Full top of the page
ob_start(); page_content(5); $fullbottom=ob_get_contents(); ob_end_clean(); // Full bottom of the page

?>

Verwijder ik deze code dan is de pagina wel veilig.

Is hier een oplossing voor.
Title: Re: Using multiple columns dynamically in a template
Post by: dbs on November 24, 2020, 03:21:41 PM
Hi, often images with http addresses are the reason.
You can give us a link to the page or you try to find http addresses on your page.