Open mikamoush opened 9 years ago
Is your uploaded image in the uploads directory?
I have the same issue - image is uploaded to the correct location (and filename added to db) but the view doesn't display the image, nor does the model table view.
This occurs in the 4.2 version too.
The image is in the uploads directory. Plus, when I display it into my front view it works... Its's only in the default admin view
Have you added 'imagecache' to the route string within config/imagecache.php ?
I just did, and same result...
Can you access (and display an image) from the original image links generated through the image/all route?
Yes it's displayed
In your image method in your model that defines the image location, try setting it to:
['yourImageField' => ''];
And check admin
I just noticed I didnt write Column::image but string ... Sorry and thanks for your help. Resolved
@mikaben89 if it's resolved you can mark this issue as closed, thanks
Hi, I'm making an admin page for videos. In the list view (the default one) I want to display Thumbnail (which is a image file uploaded by the user in the form), the title and decription.
Form:
ListView:
As you can see, the image is not displayed at all. Here is the code:
Models/Video.php
Model for Sleeping OWl Admin admin/Video.php
Is there something wrong with my config ?