Announcement

#16 2009-09-08 08:23:47

VDigital
Former Piwigo Team
Paris (FR)
2005-05-04
17680

Re: Incorrect display in picture page

Thanks I was on something else. I will take time for it.   ;-)


Piwigo.com: Start and run your own photo gallery. Signup and get 30 days to try for free, no commitment.
8-)

Offline

 

#17 2009-09-08 16:47:12

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

thanks so much!

Offline

 

#18 2009-09-08 20:05:28

VDigital
Former Piwigo Team
Paris (FR)
2005-05-04
17680

Re: Incorrect display in picture page

[extension by Piwigo Team] LocalFiles Editor
Activate it

In LocalFiles Editor, tab CSS:

Edit yoga / local-layout

Add:

#thePicturePage table.infoTable td.value ul {
  display:block;
  list-style:none;
  margin:0;
  max-width:49%;
  padding:0;
  width:49%;
}
#thePicturePage table.infoTable { margin: 0 25%; }


Tell us.


Piwigo.com: Start and run your own photo gallery. Signup and get 30 days to try for free, no commitment.
8-)

Offline

 

#19 2009-09-09 00:05:42

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

YAY!

I'm pleased to report that this solved my issue. I am on a mac and have not tested in the other browsers yet but at least on mac this fix got rid of the unwrapped text as well as the horizontal scroll.

Feel free to check out my website www.worldwidefieldguide.com and let me know if it looks good to you as well.

Thanks so much!

Last edited by fieldguide (2009-09-09 00:06:06)

Offline

 

#20 2009-09-09 07:41:55

VDigital
Former Piwigo Team
Paris (FR)
2005-05-04
17680

Re: Incorrect display in picture page

The issue is mainly solved.
But your website have some troubles yet.

1 - French version is not well converted in utf-8 (Accents like "Créée le" (Creation date) are incorrectly displayed).

2 - List of categories is still too long (and word-wrap is not respected).

I propose now to change the topic title which has really nothing with maps and earth.
Do you agree?


Piwigo.com: Start and run your own photo gallery. Signup and get 30 days to try for free, no commitment.
8-)

Offline

 

#21 2009-09-09 17:21:25

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

VDigital wrote:

The issue is mainly solved.
But your website have some troubles yet.

1 - French version is not well converted in utf-8 (Accents like "Créée le" (Creation date) are incorrectly displayed).

2 - List of categories is still too long (and word-wrap is not respected).

I propose now to change the topic title which has really nothing with maps and earth.
Do you agree?

Yes please do change the title! I agree it is now misleading and was for a while.

1 - What do I do about this?

2 - Do you mean the list of categories in the same place on the page of an individual image we've been discussing or on the left sidebar?

Thanks again.

Offline

 

#22 2009-09-09 20:34:47

VDigital
Former Piwigo Team
Paris (FR)
2005-05-04
17680

Re: Incorrect display in picture page

2 - The problem is solved (Last time, I tried a full page reload, a full refresh, but it was incorrect).
But currently it is Ok.









Now, I have to understand the 1.

Encoded page: text/html; charset=utf-8
That's correct.


I will ask some help to plg. Mail sent to plg.


Piwigo.com: Start and run your own photo gallery. Signup and get 30 days to try for free, no commitment.
8-)

Offline

 

#23 2009-09-09 22:27:12

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
13791

Re: Incorrect display in picture page

I think there may have been a problem during file transfer. Let's make sure of it.

In [Administration > LocalFiles Editor > Personal Plugin] fill with the following code:

Code:

<?php
add_event_handler('get_admin_plugin_menu_links', 'show_file_md5');

function show_file_md5($menu) {
  global $page;

  $files = array(
    'language/fr_FR/iso.txt',
    'language/fr_FR/common.lang.php',
  );
  foreach ($files as $file) {
    array_push(
      $page['infos'],
      $file.' => '.md5_file($file)
    );
  }

  return $menu;
}

?>

Save the file, make sure the "Personal Plugin" is activated in [Administration > Specials > Plugins]. The go on the [Administration > Links > Administration] page and tell us what information is displayed (something like 'language/fr_FR/iso.txt' => ....)

Offline

 

#24 2009-09-10 02:06:44

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

ok I added the code to the personal plugin section of the local files editor. When I click the links -> admin the following stats appear:

Piwigo version
Piwigo 2.0.3
Check for upgrade
Subscribe squidpillowDELETETHIS@gmail.com to Piwigo Announcements Newsletter
Environment
Operating system: Linux
PHP: 5.2.1 (Show info) [2009-09-09 20:04:17]
MySQL: 5.1.34-community [2009-09-09 20:04:17]
Database
198 images (first element added on Friday 21 August 2009)
155 categories including 155 physical and 0 virtual (198 associations)
4 tags (207 associations)
4 users
0 groups
1 comment

Offline

 

#25 2009-09-12 22:12:06

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
13791

Re: Incorrect display in picture page

Are you sure the "PersonalPlugin" is active?

You should see something like in the attached screenshot.

Offline

 

#26 2009-09-16 04:54:21

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

ok yes i activated it and now I see the following. How does the site look now?

language/fr_FR/iso.txt => b8696ea97627dd1f436a80f2a5d6b5fa
language/fr_FR/common.lang.php => 18b435fea290f92afe7a03d647a1cac3

Offline

 

#27 2009-09-16 23:19:28

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
13791

Re: Incorrect display in picture page

OK fieldguide, I got the information I wanted to see. Your files are corrupted. You should have:

    * language/fr_FR/iso.txt => ca484850631eb3ec357bbc47dba1e1c6
    * language/fr_FR/common.lang.php => e770681633bc9acb559fa7a48b19eca4

In your FTP client, can you try to upload language/fr_FR/iso.txt once again, but in binary mode this time?

Offline

 

#28 2009-09-17 00:09:00

fieldguide
Member
2009-08-22
29

Re: Incorrect display in picture page

i loaded the file in binary mode. i'm on OSX and I use fetch for ftp.

i still see the same data on the admin page though:

language/fr_FR/iso.txt => b8696ea97627dd1f436a80f2a5d6b5fa
language/fr_FR/common.lang.php => 18b435fea290f92afe7a03d647a1cac3
Piwigo Administration
Piwigo version
Piwigo 2.0.3
Check for upgrade
Subscribe squidpillowDELETETHIS@gmail.com to Piwigo Announcements Newsletter
Environment
Operating system: Linux
PHP: 5.2.1 (Show info) [2009-09-16 18:07:57]
MySQL: 5.1.34-community [2009-09-16 18:07:57]
Database
216 images (first element added on Friday 21 August 2009)
156 categories including 156 physical and 0 virtual (216 associations)
4 tags (207 associations)
5 users
0 groups
1 comment

Offline

 

Board footer

Powered by FluxBB

github twitter newsletter Donate Piwigo.org © 2002-2024 · Contact