Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: 1 [2]   Go Down

Author Topic: Panorama Viewer for cpg1.5.x  (Read 84794 times)

0 Members and 1 Guest are viewing this topic.

batabe

  • Coppermine newbie
  • Offline Offline
  • Posts: 17
Re: Panorama Viewer for cpg1.5.x
« Reply #20 on: June 29, 2010, 08:19:13 pm »

Can you elaborate please (screenshot or set up a second test gallery to show the output)? Please give us the chance to improve our plugins :)

sure:

http://www.balatonparty.com/displayimage.php?album=77&pid=5288#top_display_media
Logged
my gallery:  *Link Removed*

batabe

  • Coppermine newbie
  • Offline Offline
  • Posts: 17
Re: Panorama Viewer for cpg1.5.x
« Reply #21 on: June 29, 2010, 08:21:19 pm »

sure:

http://www.balatonparty.com/displayimage.php?album=77&pid=5288#top_display_media

the height of the image is 640 px


if you can probably panoramaviewer and lightbox compatible to make, it will be fine :)
Logged
my gallery:  *Link Removed*

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Panorama Viewer for cpg1.5.x
« Reply #22 on: June 29, 2010, 08:26:45 pm »

http://www.balatonparty.com/displayimage.php?album=77&pid=5288#top_display_media
Do you have installed other plugins than the plugin viewer on your screenshot? Can you please test with another browser?
Logged

batabe

  • Coppermine newbie
  • Offline Offline
  • Posts: 17
Re: Panorama Viewer for cpg1.5.x
« Reply #23 on: June 29, 2010, 08:49:19 pm »

Do you have installed other plugins than the plugin viewer on your screenshot? Can you please test with another browser?

win7: opera, ie8
linux: ff

the same result.

i've unintalled all the plugins except forum and panorama viewer, but again the same result :(

does it work for you right with the latest CM?

Logged
my gallery:  *Link Removed*

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Panorama Viewer for cpg1.5.x
« Reply #24 on: June 30, 2010, 07:22:52 am »

does it work for you right with the latest CM?
The term "latest CM" is useless and will mean less in the future (apart from the fact that the official abbreviation is "CPG"). Versions have numbers for a reason. Use them. I'm pretty sure that Αndré is using a subversion checkout to test new plugins against. It's beyond the scope of this thread though to explain what that is. If you want to figure out, read that term up in our documentation.
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Panorama Viewer for cpg1.5.x
« Reply #25 on: June 30, 2010, 07:46:26 am »

Works for me as expected with latest svn checkout (r7729, see attached screenshot) and also on my gallery running cpg1.5.6.

Maybe it depends on your settings. Can you please set up a gallery where we can test the issue if you don't want to test it on your live gallery?
Logged

batabe

  • Coppermine newbie
  • Offline Offline
  • Posts: 17
Re: Panorama Viewer for cpg1.5.x
« Reply #26 on: June 30, 2010, 07:31:19 pm »

Works for me as expected with latest svn checkout (r7729, see attached screenshot) and also on my gallery running cpg1.5.6.

Maybe it depends on your settings. Can you please set up a gallery where we can test the issue if you don't want to test it on your live gallery?

i have CPG 1.5.6 (sorry for the "CM"  :)), revision 7620. probably later i can set up a test gallery :(

thanks for the information.
see you later
Logged
my gallery:  *Link Removed*

peterlustig

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 50
Re: Panorama Viewer for cpg1.5.x
« Reply #27 on: October 26, 2010, 04:08:47 pm »

Hi Andre,

thanks a lot for this plugin! In fact, the availability of this one made me finally upgrade from 1.4x to 1.5x. Which took me way more time and effort than originally thought, but I am happy now.

However -- your plugin does not seem to work together with the slider plugin http://forum.coppermine-gallery.net/index.php/topic,57388.html, which I love as well. When both plugins are activated I get the following behaviour on my top-level page
a) the slider only shows one picture
b) this picture is the ONLY clickably item on the page. Alle menu items, thumbnails, categories etc. are blocked.

Of course, I know that with the combination of exactly these two plugins I am probably a rare case... Nevertheless, any help would be greatly appreciated.

Cheers, Peter

PS. Didn't know whether to post here or in the slider-plugin-thread. But as the slider seems to me to be the "older" plugin I decided to post here...
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Panorama Viewer for cpg1.5.x
« Reply #28 on: October 26, 2010, 05:14:45 pm »

As a workaround comment out
Code: [Select]
$thisplugin->add_filter('page_html','panorama_viewer_page_html_thumb');which will stop the cropping of thumbnails.


The slider span
Code: [Select]
<span id="slider_temp" style="visibility:visible;position:absolute;top:-100px;white-space:nowrap;left:-9000px;"><?php echo $slider_pics;?></span>causes the issue, so we have to adjust the pattern to ignore all images that belongs to that element
Code: [Select]
        $panorama_start = "<table width=\"100%\" style=\"table-layout:fixed;\"><tr><td width=\"100%\" align=\"center\"><div style=\"width:100%; overflow:hidden;\">";
        $panorama_end = "</div></td></tr></table>";
        $pattern = "/(<a href=\"displayimage.*<img src=\".*\/{$CONFIG['thumb_pfx']}.*<\/a>)/Uis";
        $html = preg_replace($pattern, $panorama_start."\\1".$panorama_end, $html);
Logged

peterlustig

  • Coppermine regular visitor
  • **
  • Offline Offline
  • Posts: 50
Re: Panorama Viewer for cpg1.5.x
« Reply #29 on: October 26, 2010, 05:40:21 pm »

Hi André,

commenting out helped -- now everything runs smoothly. Great plugin. I like it very much also without having "_360pano.jpg" added.

Thanks for the help!

Cheers, Peter
Logged

Walkinman

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 380
    • Skolai Images - Nature, Travel and Adventure stock photos
Re: Panorama Viewer for cpg1.5.x
« Reply #30 on: March 25, 2011, 05:50:05 am »

Hey André

I installed this plugin, and it works fine for the panoramics, but it gets weird on the thumbnail view. The first row of thumbnails acts weird . the first thumbnail drops down slightly. What's really weird is this happens only if the first thumbnail is a horizontal image, and then only if there is at least one vertical image in the first row .. a row full of horizontal thumbnails aligns correctly. A row starting with a vertical image also aligns correctly. I've disabled the plugin and everything is back to normal.

I apologize if this is an issue already discussed on this thread; I didn't quite understand everything that was said above, but thought I'd post anyway. The plugin is a useful feature, and I would love to use it if I can work around this issue.

I got the same issue in Firefox, Safari and Chrome. See attached screenshot.

Thanks

Cheers

Carl
Logged

Walkinman

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 380
    • Skolai Images - Nature, Travel and Adventure stock photos
Re: Panorama Viewer for cpg1.5.x
« Reply #31 on: April 01, 2011, 12:14:41 am »

hey André

Well, I'm not sure what happened .. I uninstalled the plugin last week, because I didn't want the display of the thumbnails askew. I tried it again today, and now the problem posted above is not occurring, everything is fine.  Far as I know, I didn't do anything different this time.

Great plugin, thanks.

Cheers

Carl
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: Panorama Viewer for cpg1.5.x
« Reply #32 on: September 05, 2012, 03:18:41 pm »

Version 1.4 (attached to initial post) adds a configuration interface. For more information have a look at the initial post.
Logged
Pages: 1 [2]   Go Up
 

Page created in 0.046 seconds with 20 queries.