Welcome, Guest. Please login or register.
Did you miss your activation email?
February 12, 2012, 06:10:26 AM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
149621 Posts in 21098 Topics by 7537 Members
Latest Member: lotte2
* Home Help Search Login Register
Pages: 1 ... 5 6 [7] 8 9   Go Down
Print
Author Topic: New Version of Gallery  (Read 66855 times)
Ed

Offline Offline

Posts: 49


« Reply #150 on: March 21, 2007, 04:32:44 PM »

For anyone that might be having problems with this module, make sure 'Short open tag'  is turned on in your php settings.  If it's not turned on you get php code in the  'Main Image Size: Thumb Image Size: and Images per Page:' input boxes.   wink
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #151 on: March 22, 2007, 09:22:47 AM »

Hello,

so there are short tags in the code? This should be fixed. Thought i have fixed all. Will look at it.

Matthias
Logged
G4

Offline Offline

Posts: 68



« Reply #152 on: May 04, 2007, 09:36:54 PM »

Hello,

I installed the gallery. I have made 3 folders(albums) in 'media' with pics in them.

..

album1
pic
pic
album2
pic
pic

In the output i get a link ".." two dots!

I would like the name of the folder(album) that your are looking in.

Is this possible?

This is the line
Code:
echo '<li><a href="' . html($url) . '">' . html($filename) . "</a></li>\n";
« Last Edit: May 04, 2007, 09:59:14 PM by G4 » Logged
skidrash

Offline Offline

Posts: 70


« Reply #153 on: May 10, 2007, 01:11:52 AM »

Can someone help me...  I upgraded from Gallery 1.8 to 1.9e, and now my old galleries are broken.  If you look at one of my old galleries, all the thumbnails come up fine, but when you click on one to see the bigger picture, the page loads with no picture on it.  Than if you click 'next' or 'prev' the next page loads, and no picture either.

I made all of my galleries by uploading through the image gallery.  Any help?  I really don't want to reload all my images.
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #154 on: May 10, 2007, 06:53:09 AM »

Hello,

for upgrading from 1.8 to 1.9e you simply need to overwrite the modul files. Depending on how you have installed the modul and the WB version you have different posibilities.

Easiest way is if you use WB 2.6.5 and have installed the previous image gallery version via Wb admin is to install the new version via wb admin over the existing version without uninstalling the previous version.

If you have installed the previous version via ftp you have to do the update also via ftp. Simply overwrite all files.

As there are no database changes from 1.8 to 1.9e updating never could break your existing version. You only have issues if you didn't use the standard versions of the modules (maybe you have made some changes to the files yourself) and if you try to uninstall the old version befor the upgrade.

Matthias
Logged
skidrash

Offline Offline

Posts: 70


« Reply #155 on: May 11, 2007, 02:02:02 AM »

OK, I think I might have found a bug in 1.9e...  My problem it turns out, is that when the view.php page displayed my image, it would write the image URL, but only put a " at the begining of the IMG SRC.  So the browser was interpreting the image URL as something like...

    "WB_URL/media/.gallery/image2.jpg border="

Inserting a %20 for the space, so my IMG SRC was....

    "WB_URL/media/.gallery/image2.jpg%20border="

So I think the view.php code is missing a " in that section.  This is what I came up with, which fixes it right up.  In the section of code close to the end of the file, that says....

Code:
if(file_exists(WB_PATH.MEDIA_DIRECTORY.'/.gallery/image'.$image['image_id'].'.'.$ext)) {
echo THUMB_PREPEND.WB_URL.MEDIA_DIRECTORY.'/.gallery/image'.$image['image_id'].'.'.$ext.THUMB_APPEND;
}

I believe it is missing the " right in front of the THUMB_APPEND.  So I added it to mine like so....

Code:
if(file_exists(WB_PATH.MEDIA_DIRECTORY.'/.gallery/image'.$image['image_id'].'.'.$ext)) {
echo THUMB_PREPEND.WB_URL.MEDIA_DIRECTORY.'/.gallery/image'.$image['image_id'].'.'.$ext.'"'.THUMB_APPEND;
}

What do you think?  Is this a bug that affects everyone, or is it something that just affects me?  It seems to me that it should be in there regardless, for code completeness, but as I don't have as much experience with this code, I would like to hear your thoughts.  Version 1.9f ?

Thanks!
Logged
eddyfever

Offline Offline

Posts: 47



« Reply #156 on: December 06, 2007, 01:59:48 PM »

Is there a way to show the picture and thumbnails on one page?


i tryed this but it doesnt find the connection with gallery.php

<td>
<center>
<a href="[liNK]" title="[ALTTITLE]">
[THUMB]
<br />
[TITLE]
</a>
</center>
</td>
Logged

Hoco

Offline Offline

Posts: 21



« Reply #157 on: December 18, 2007, 08:32:55 PM »

Hello developers,

I've got a question and maybe found an error  huh

I've got many photo's uploaded with Gallery 1.9e
I've divided the photo's of 2007 them in 4 sections

When I click on a thumbnail, I get 4 enlarged photo's (4 ??, I think, because I have 4 sections)

Then I've got 4 possibilities to go to the next or previous photo (again, maybe because I've got 4 sections ??, but not logical)

1. Typicle is that the counter (1 of xx) gives different totals but they do agree with the total photo's of that section.
2. Typicle is that you get the next photo of the first section when you click on next under the first (most upper) photo, the next photo of the second section when you click on next under the second photo and so on.

I can't find anything on page settings, so can anyone help ?

PS. If you cannot imagine my problem, look at my site : "http://www.t-bugje.nl/webbaker/pages/foto-galerij/foto-s-2007.php"
and click on Thumbnail with the title "Carnaval 2007 - 2"

Thanx Hoco    embarassed

« Last Edit: December 20, 2007, 08:01:42 PM by Hoco » Logged

Let's bake some sites and don't get burned
doc
Guest
« Reply #158 on: December 18, 2007, 09:59:30 PM »

Hello,

maybe this thread helps.

Regards Christian
Logged
Luckyluke

Offline Offline

Posts: 555



« Reply #159 on: December 18, 2007, 10:34:18 PM »

Hi Hoco,

I think it was a bad idea to use 4 sections in 1 page. You can easy use 4 different pages with 1 section. Now you can select every picture from every section. I think this is confusing for the visitors.

But with "another image gallery" you can select different directories. Put every part of the pictures in another directory and point "another image gallery" to the top directory. Also select "inclusief submappen".

Sorry for the bad English... (in het Nederlands zou het beter gaan  cheesy)

Greetings,
Luc
Logged
Hoco

Offline Offline

Posts: 21



« Reply #160 on: December 20, 2007, 07:57:38 PM »

Hello Luckyluke,

First of all, Dutch would work for me  grin. For our fellow-websitebakers, I'll continue in English.

I understand your answer. You give two options: First, use 1 section per page, second, use another Image module called "Another Image Gallery".

I can do that, but that's not the solution. The module I use (gallery_v1.9e) gives the option to use different sections. So first of all, I think it doesn't function right (or I do something wrong).

So I hope the bug will be found ans if that's not the case, I'll try another gallery (and then gallery v1.9e should remove the option to use sections, so a new release with less possibilities (version 1.8z  wink ).
« Last Edit: December 20, 2007, 08:02:28 PM by Hoco » Logged

Let's bake some sites and don't get burned
fixundfoxi

Offline Offline

Posts: 3


« Reply #161 on: January 31, 2008, 10:51:53 AM »

Meiner Meinung nach gibt es noch 1 Problem mit der Gallery1.9e

Beim Hinzufügen eines Bildes mit einem Titel mit Leerzeichen z.B. "Bild eins" geht das Originalbild als PopUp nicht auf. Ändert man den Titel jedoch auf "Bild", dann funktionierts.

Vielen Dank für einen Lösungsvorschlag.
 
Logged
eevaco

Offline Offline

Posts: 1


« Reply #162 on: April 17, 2008, 01:10:35 PM »

hello!
this link not work:

You can download this Modul (actually Version Number is 1.6.2) here  huh
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #163 on: April 17, 2008, 01:32:48 PM »

Hello,

please download the latest version from our addons page.

Thanks
Matthias
Logged
Hoco

Offline Offline

Posts: 21



« Reply #164 on: April 23, 2008, 07:37:48 PM »

Hello Ruebenwurzel,

As suggested, I did download and install this module again from the add-ons page. Unfortunately, it didn't solve my problem as posted on 18th of december.

Maybe i should first, uninstall the previous installed version, but I didn't read this instruction. Also I saw that the version number was still the same (1.9e) and the size of the zipfile was also the same although that does not mean the code didn't change.

My questions are:
- Do I have to uninstall this module before installing ?
- If so, do i still keep all my photo's available on the site or do I have to upload them all again ?

And if I did the right thing (download the latest version and install correctly), then my problem still exists  embarassed

Thanks
Logged

Let's bake some sites and don't get burned
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #165 on: April 23, 2008, 08:30:16 PM »

Hello,

as you see there is no developement in this modul right now. So you have to live with the fact, that you only can use one gallery section per page. The modul does not support more sections per page.

Matthias
Logged
Hoco

Offline Offline

Posts: 21



« Reply #166 on: April 30, 2008, 08:57:56 PM »

Ok, that's a clear answer !!

It wil be quite a job  tongue  but first of all I can look at other photo-gallery-modules.

Now I know what to do, so thanks for that.

Hoco
Logged

Let's bake some sites and don't get burned
webbutterfly

Offline Offline

Posts: 36



WWW
« Reply #167 on: June 01, 2008, 05:40:42 PM »

Hello

I have troubles with gallery_v1.9e...
When I'm upload an picture (jpg) can't see it... this is only on my provider, by any others no problem.
I think is on php or apache configuration, how can I found a solution?

Marion

Sorry, my english it not well..
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #168 on: June 02, 2008, 06:01:46 AM »

Hello,

compare the phpinfo on your servers. Think there are differences in the requiered GD libraries. Could it be that they are not available on this server?

Matthias
Logged
webbutterfly

Offline Offline

Posts: 36



WWW
« Reply #169 on: June 02, 2008, 08:46:20 AM »

Hello

I think this is not the fault:
Code:
GD Support     enabled
GD Version     bundled (2.0.34 compatible)
FreeType Support     enabled
FreeType Linkage     with freetype
FreeType Version     2.1.7
GIF Read Support     enabled
GIF Create Support     enabled
JPG Support     enabled
PNG Support     enabled
WBMP Support     enabled
XBM Support     enabled

All others gallerys work...
see: http://ines.webbutterfly.com
Gallery 3 is gallery_v1.9e, one picture inside

Marion
Logged
webbutterfly

Offline Offline

Posts: 36



WWW
« Reply #170 on: June 05, 2008, 10:50:53 AM »

Hello

Solved, no hidden folder on webspace..

Marion
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #171 on: June 05, 2008, 11:30:25 AM »

Hello,

so i think it is a IIS Server instead of Apache?

Matthias
Logged
webbutterfly

Offline Offline

Posts: 36



WWW
« Reply #172 on: June 05, 2008, 12:36:19 PM »

Apache, but no Info about secutity  grin

see: http://www.powweb.com/powweb/hosting.bml

I think can change by .htacces, but I don't know

Marion
« Last Edit: June 05, 2008, 12:37:54 PM by webbutterfly » Logged
Nic

Offline Offline

Posts: 18


« Reply #173 on: June 07, 2008, 03:14:18 PM »

Hi,
is there a maximun size for the original pictures? 'CauseI have problems with some pictues. Some (ca. 500 kb) are shown and some (smaller than 500 kb) were not shown.
Greets Nic
Logged
Orangina

Offline Offline

Posts: 14


« Reply #174 on: June 22, 2008, 09:37:49 AM »

Gallery v1.9e
To avoid some problems replace <? by <?php in this files : (if short_open_tag = Off in php.ini)

File modify_settings.php line 123 , 134 , 146
File add_several_images. php line 75 , 103 , 106, 109 , 111 , 119 ( 2 ), 120 , 124 ( 2 ), 125 , 131 , 153


Also to modify in php.ini
Post_max_size = 8M initially, increase for loading multiples files or images (Gallery or Media)
Logged

Orangina (France)
Pages: 1 ... 5 6 [7] 8 9   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!