Page 1 of 1

Imagevue and https

Posted: 13 May 2011, 11:21
by benedict
I'm using imagevue on an Intranet using https. It works fine using Firefox or Chrome, but with explorer it doesn't display the first page, it shows the loading icon and doesn't load. Is the any way to fix that? Lowering explorer's security is not an option for this situation.

Thanks

Re: Imagevue and https

Posted: 14 May 2011, 02:31
by mjau-mjau
Hard to diagnose this without a link, as I haven't heard of this earlier either. Can't you run the gallery from plain "http"? There are no secure features in Imagevue.

Re: Imagevue and https

Posted: 05 Aug 2011, 05:35
by Phil
Dear Users/Admins

I have a serious problems while using the Imagevue Gallery over https (SSL Certificate).

https://www.xxxxx.ch (does not work in Internet Explorer 8 - and it does only not work with version 8 of IE!)
http://www.xxxxx.ch (runs smoothly even with Internet Explorer 8. (But of course without https)

I tested also:
MS IE 7 & 9 with http and https (Both run great!!)
Opera 9.8 and Firefox 5.01 with http and https (Both run great!!)

So i am just wondering why the hell my site doesn't start up with I.E 8.0 with https....
The problem is that i got the flash circle on the https page but it wont load the content nor the audio in the right corner...Why is that?

When i try to load with I.E 8.0 my webmail (https://www.xxxxx.ch/webmail) the page works without problems. So it has to be either a MSIE 8.0 issue or an Imagevue Problem. The certificate can't be the problem because all other browsers work well with it. maybe it's even a combination of I.E 8.0 and the SSL Support of this browser but i cannot imagine that, but i am sure that it happens on all I.E 8.0 Installations (i checked a few!)

Has anyone an idea why this is so? Any help would be very appreciated. If someone needs parts of my configs, or the pagename by itself, pls let me know.

Thank you in advace!

Re: Imagevue and https

Posted: 05 Aug 2011, 11:30
by grimurnet
Have guys tried "tools>internet options>Security>Trusted sites>Sites" and add the url there?
Just a thought might work, give it a try.

Re: Imagevue and https

Posted: 05 Aug 2011, 12:59
by Phil
yes, my friend...already tried that... like i said, version 7 & 9 works great .... just the version 8 with ssl fails.

had noone exept of me tested that ? i nearly can't belive...

imagevue with apache as a server and with internet explorer 8 connected to it via https?

Re: Imagevue and https

Posted: 06 Aug 2011, 02:42
by mjau-mjau
I haven't heard of this issue before ... We did use to have an unrelated issue with https, but this was fixed. Do you need to run Imagevue on https though?

If you can provide an actual link in Private Message, I can take a look ...

Re: Imagevue and https

Posted: 07 Aug 2011, 02:50
by Phil
Problem Solved

Miau Miau gave me finally the link to this site. http://www.blog.lessrain.com/flash-nast ... -explorer/ which helped me to solve the nasty SSL problem in IE8.
Flash: Nasty XML load bug in Internet Explorer
Loading XML files in Flash over an SSL Connection in Internet Explorer fails if the Pragma:no-cache or Cache-control:no-cache HTTP headers are set on the XML file.
See the attached screenshot for additional help. Changes should be made in imagevue.php

Thanks once again to the Support Community!

Re: Imagevue and https

Posted: 07 Aug 2011, 08:16
by mjau-mjau
Great! ... and thanks for reporting back!

Re: Imagevue and https

Posted: 07 Aug 2011, 08:30
by Nick
Could you test something please?

Remove your changes, open iv-includes/common.inc.php, line 161:
Code
if (!headers_sent()) {
	header('Cache-Control: no-store, no-cache, must-revalidate');
	header('Expires: ' . date('r'));
}
and change this to
Code
if (!headers_sent()) {
	header('Cache-Control: no-store, must-revalidate');
	header('Expires: ' . date('r'));
}
Will this be enough to fix it?

Re: Imagevue and https

Posted: 07 Aug 2011, 14:49
by Phil
Hi Nick

Yes of course, i always like to learn :) But your idea didn't work out for me unfortunately. If i comment out the 2 Lines in imagevue.php and did the changes in iv-includes/common.inc.php - it's exactly like it was before - Page cannot be loaded successfully :(

And btw, i had to load the new galery files, cuz i ran an old galery 2.x which didn't have the iv-include files - But that doesn't change anything for me. i still need the 2 Lines in imagevue.php.

btw i tested that all with CentOS, with Apache 2.2.3 and PHP Version 5.1.6.

When i find more time i try to test it also on a "virgin" debian or ubuntu server... i very like to see if that happen there too...i still cannot imagine that i am the only one who run into that.

and if you have more suggestions what i should try feel free to tell me :) as long as i have some time i can check things.

Greets, phil

Re: Imagevue and https

Posted: 20 Aug 2011, 02:12
by Nick
Ok, then change to 'cache, must-revalidate'. I need to pinpoint the correct settings for headers.
If this won't help, please add the Pragma:public line after, like it was in your original suggestion, just do it in common.inc.php please, don't add code to index.php.