Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Error occurs after Grav admin upgrade to 1.1.8

Started by Muut Archive 10 years ago · 4 replies · 392 views
10 years ago

Hi there, my page which contains media collection at the frontmatter. it works to v1.1.5. After upgrade, error appear just on this page "can't convert undefinded object". image is attached for reference. thank you

frontmatter :-
media:
images:

  • /KAY_0037.JPG
  • /KAY_0147.en.jpg.meta.yaml

    Untitled-1

10 years ago

Can you paste the whole page, and the page blueprint ? Use triple backticks to properly format code.

10 years ago

i copied the same files in 1.1.5 version and 1.1.8 version. And i tried to remove the media from frontmatter with no content. the images and the .yaml file are placed in the same folder as page (.md)

blueprint:-

YAML
title: Fido Playing with his Bone
description: The other day, Fido got a new bone, and he became really captivated by it.

content of the page is blank, just frontmatter:-

YAML
title: 'Photo Gallery'
menu: 'Photo Gallery'

template for the page (gallery.html.twig)

TWIG
{% extends 'partials/base.html.twig'  %}

{% block content %}

    {{ page.header.title }}

     <div class="image-gallery">

    {% for image in page.media.images %}

    <div class="gallery-item">
        <div class="image-surround">
            {{ image.lightbox(1024,768).resize(200,200).html('Sample Image') }}
        </div>
        <div class="image-info">
            <p class="image-title">{{ image.meta.title }}</p>
            <p class="image-desc">{{ image.meta.description }}</p>
        </div>
    </div>
    {% endfor %}
    </div>

{% endblock %}

it works fine in version 1.1.5. In version 1.1.8 same error still appears.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1359 9 years ago
Archive · by Muut Archive, 9 years ago
2 936 9 years ago
Archive · by Muut Archive, 9 years ago
2 4066 9 years ago
Archive · by Muut Archive, 9 years ago
1 2956 9 years ago
Archive · by Muut Archive, 9 years ago
3 1121 9 years ago