Author Topic: exifs not displayed  (Read 15741 times)

0 Members and 1 Guest are viewing this topic.

Offline wolle

  • Pre-Newbie
  • Posts: 5
    • View Profile
exifs not displayed
« on: August 14, 2008, 02:02:22 PM »
 :DHi,
I'm very new working with 4Images. So here is my 1st stupid question, after I discoverd many posts but could not find a solution.

Maybe its very simple. I've just installed a new style under /templates. Everything works fine, but no Exifs are shown below my pics. When I change to my original $Images Style it looks pretty good. So, which files are missing or uncomplete in my new Style direcory.

 :(

greetings from Wolle and thanks for helping me.

Offline nobby

  • 4images Guru
  • *******
  • Posts: 2.873
    • View Profile
Re: exifs not displayed
« Reply #1 on: August 14, 2008, 02:35:50 PM »
Hello,

You must always ensure that the templates for your 4images Adjusted package.

Some older templates are not Adjusted, and there the Exif data not shown.

nobby

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: exifs not displayed
« Reply #2 on: August 14, 2008, 02:46:01 PM »
Hello and welcome to 4images forum.

You probably would get better answer if you ask this question as a reply to the topic where you got your template from.

Anyway, a {exif_info} tag must present in details.html template.
In default template it looks like this:
Code: [Select]
{if exif_info}
<br />
                  <table width="100%" border="0" cellspacing="0" cellpadding="1">
                    <tr>
                      <td class="bordercolor">
                        <table width="100%" border="0" cellpadding="3" cellspacing="0">
                          <tr>
                            <td class="head1" valign="top" colspan="2">EXIF Info</td>
                          </tr>
                          {exif_info}
                        </table>
                      </td>
                    </tr>
                  </table>
                  {endif exif_info}
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline wolle

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: exifs not displayed
« Reply #3 on: August 14, 2008, 05:39:53 PM »
@V@ano and Nobby, thanks a lot for advices.
The template is designed by KW a known user here inside  :P
I''test it later an let you know my results. Hopefully goof :lol:

www.digital-photoworld.de/gallery

just at the beginning, don't laugh........

I'll never give up til the morning comes

Offline nobby

  • 4images Guru
  • *******
  • Posts: 2.873
    • View Profile
Re: exifs not displayed
« Reply #4 on: August 14, 2008, 06:02:06 PM »
When the templates of KurtW there are no problems.

KurtW always fit to work so I think Exif  :wink:

Offline wolle

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: exifs not displayed
« Reply #5 on: August 14, 2008, 06:21:54 PM »
Nobby  I absolutly agree, but I can't get my Exifs displayed in my new template of KW.
So what is the differnt between the original 4images and the new template. I believe there is missing a stupid file or an entry in
config.php. Menu.php is in the root of the gallery. What information do you need to investigate on my prob.?? :?:

Offline KurtW

  • 4images Guru
  • *******
  • Posts: 2.778
    • View Profile
    • Malediven-Bilder ~~Dreams~~
Re: exifs not displayed
« Reply #6 on: August 14, 2008, 06:24:24 PM »
Hi,

i miss {exif tags} in this vol. of templates 8O
also in all templates vol.1 - vol.5 :oops:

 :cry: :cry: :cry:

Update in the next 4images update....

Kurt

Offline KurtW

  • 4images Guru
  • *******
  • Posts: 2.778
    • View Profile
    • Malediven-Bilder ~~Dreams~~
Re: exifs not displayed
« Reply #7 on: August 14, 2008, 06:26:28 PM »
Hi woole,

search in details.html:
Code: [Select]
                  {endif iptc_info}after add:
Code: [Select]
                  {if exif_info}
                  <br />
                  <div align="center"><center>
                  <table width="400" border="0" cellspacing="0" cellpadding="1">
                    <tr>
                      <td class="bordercolor">
                        <table width="100%" border="0" cellpadding="3" cellspacing="0">
                          <tr>
                            <td class="head1" valign="middle" align="left" colspan="2"><em><b>EXIF Info</b></em></td>
                          </tr>
                          {exif_info}
                        </table>
                      </td>
                    </tr>
                  </table>
                  </center><div>
                  {endif exif_info}
like the code from: V@no


############### EDIT #####################

you need also the folder: "page_images" in your root folder from 4images
the image files also in the template zip for this new folder...

########################################

Kurt

Offline nobby

  • 4images Guru
  • *******
  • Posts: 2.873
    • View Profile
Re: exifs not displayed
« Reply #8 on: August 14, 2008, 06:28:30 PM »
with the note from v@ano (Answer # 2), it should really work.

edit: KurtW was faster

Offline wolle

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: exifs not displayed
« Reply #9 on: August 17, 2008, 11:06:52 AM »
Hi woole,

search in details.html:
Code: [Select]
                  {endif iptc_info}after add:
Code: [Select]
                  {if exif_info}
                  <br />
                  <div align="center"><center>
                  <table width="400" border="0" cellspacing="0" cellpadding="1">
                    <tr>
                      <td class="bordercolor">
                        <table width="100%" border="0" cellpadding="3" cellspacing="0">
                          <tr>
                            <td class="head1" valign="middle" align="left" colspan="2"><em><b>EXIF Info</b></em></td>
                          </tr>
                          {exif_info}
                        </table>
                      </td>
                    </tr>
                  </table>
                  </center><div>
                  {endif exif_info}
like the code from: V@no


############### EDIT #####################

you need also the folder: "page_images" in your root folder from 4images
the image files also in the template zip for this new folder...

########################################

Kurt

Kurt,
I made these changes.
But :( :(
Parse error: syntax error, unexpected $end in /var/www/xxxxxxx/html/gallery/includes/template.php(101) : eval()'d code on line 246

Please tell me which template supports exif. I'll donate for that :lol: :roll:

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: exifs not displayed
« Reply #10 on: August 17, 2008, 04:59:43 PM »
Make sure {endif iptc_info} tag wasn't replaced or removed.
(basically make sure, that there are equal number of {if ...} and {endif ...} tags).
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline wolle

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: exifs not displayed
« Reply #11 on: August 19, 2008, 12:21:29 AM »
Make sure {endif iptc_info} tag wasn't replaced or removed.
(basically make sure, that there are equal number of {if ...} and {endif ...} tags).
thanks for advices,I'll try it tomorrow once again.

BTW,,,great forum ,,,perfect support :lol: