I got an issue with MIGX and MODX 2.2.2 I upgraded a site from 2.0.8 to 2.2.2 and installed MIGX for the first time in 2.2.2
It works perfectly fine in the backend its in the frontend that it's not displaying any of the tv images.
At first it was giving some errors that it could not read or write to the migx php files so I changed the permissions on the folders to 755 in both assets/components/migx and core/components/migx and now I get no errors but it still does not display any images in the frontend.
Any ideas?
Here's my MIGX forms tab:
[
{"caption":"Sidebar Images", "fields": [
{"field":"Image Caption","caption":"Image Caption","inputTV":"newsletter-image-text"},
{"field":"image","caption":"Image","inputTV":"newsletter-image"}
]}
]
Here's my MIGX Grid:
[
{"header": "Image Caption", "width": "160", "sortable": "true", "dataIndex": "Image Caption"},
{"header": "Image", "width": "50", "sortable": "false", "dataIndex": "image","renderer": "this.renderImage"}
]
This is what it looks like in the backend:
This is my tpl:
<img src="[[++site_url]][[+newsletter-image]]" alt="[[+newsletter-image-text]]" width="225" height="149" style="margin-bottom:40px;">
And this is my MIGX call:
[[!getImageList? &tvname=`migx-newsletter` &tpl=`newsletter-sidebar-images`]]
And this is what I'm getting as output:
http://www.artaux.net/test.html
Thanks.