Hello,
I have a similar problem but i cant figure out what is loaded before my header is sent…
My website: https://www.b2bintz.com
I have the problem with the Galerie part. When i go to the galerie index its ok but when i want to select one… i get that error message. I already checked for spaces.
Here is the code for that page:
<?php
if ($_GET['galerie'] == '') {
echo '<div id=textegalerie align=left><a href="https://www.b2bintz.com/galerie/?galerie=urban"><p class="flag"><img src="https://farm4.static.flickr.com/3034/2681447153_50be4757fe_m.jpg" width="240" height="160" alt="20071128-IMG_1033" /></a><span>Urban: errances citadines</span>
</div>';
echo '<div id=textegalerie align=left><a href="https://www.b2bintz.com/galerie/?galerie=landscape"><p class="flag"><img src="https://farm4.static.flickr.com/3096/2682221640_9d1b4ef8f4_m.jpg" width="240" height="160" alt="20080514-IMG_2296" /></a><span>Landscape: paysages d\'ici et d\'ailleurs</span>
</div>';
echo '<div id=textegalerie align=left><a href="https://www.b2bintz.com/galerie/?galerie=beyond"><p class="flag"><img src="https://farm4.static.flickr.com/3141/2681396025_87b81fc17d_m.jpg" width="240" height="160" alt="20080509-IMG_2019" /></a><span>Beyond: au delà des conventions</span>
</div>';
}
elseif ($_GET['galerie'] == 'urban') {
echo '<div align=center><h1>Urban</h1></div>';
echo '<simpleflickr set="72157606253771265" width="770" height="800" thumbnailColumns="7" imagesize="Original" maximagewidth="700" maximageheight="700"/>';
}
elseif ($_GET['galerie'] == 'landscape') {
echo '<div align=center><h1>Landscape</h1></div>';
echo '<simpleflickr set="72157606250570656" width="770" thumbnailColumns="7" imagesize="Original" maximagewidth="700" maximageheight="700"/>';
}
elseif ($_GET['galerie'] == 'beyond') {
echo '<div align=center><h1>Beyond</h1></div>';
echo '<simpleflickr set="72157606253617467" width="770" height="800" thumbnailColumns="7" imagesize="Original" maximagewidth="700" maximageheight="700"/>';
}
?>
Moreover, what i dont understand is that its working perfectly with an identical page i use for testing while its not published. When i publish that similar testing page, i also get the error. Could it have something to do with permalink? Im using the page name as URL but while its not published it uses the page ID…
Any idea?
Thanks in advance.