It looks like you're new here. If you want to get involved, click one of these buttons!
The plugin is not generating thumbnails (it defines a function UtilityController_Thumbnail_Create() but it is never used). As a result, it creates links to non-existent thumb images; some browsers will supply a broken image icon, but some, notably FF, will just ignore the img tag, which makes it look as if no file has been attached to a post.
I tried to insert the UtilityController_Thumbnail_Create() function into PostController_Upload_Create() but without success.
Comments
I ran into this a little while back. opted to hack around it. do some searching and you should find the thread. it's a functional hack for the most part.
Thx. I have fixed it by simply implementing the thumbnail generation in MediaModel::ThumbnailUrl(), instead of it returning a random invalid path when the thumb does not exist.
But at least a plugin that is not working should not be marked as Approved, it suggests no testing is being done.
do you mind elaborating on this? what file(s) did you touch?
class.mediamodel.php; added the following function:
And then modfied relevant branch in ::ThumbUrl() (two lines marked --->) like this:
Above code didn't work for me:
And in ::ThumbUrl() (two lines marked --->) like this: