![]() |
|
Image Moderation Queue? - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: Image Moderation Queue? (/thread-6389.html) |
Image Moderation Queue? - statvoid - 2010-01-05 I'm building a website that allows select users to upload images to the site. I'm wondering if there is a way to set up a moderation queue to handle what uploads are allowed to be on the server. Basically, here's how it'd have to work: The point behind this would be to save some server space so there aren't many redundant or any unwanted pictures on the server. Is there any way for this to get done? Image Moderation Queue? - sbillard - 2010-01-06 Please look at the "schedule content" utility (button on the admin overview page.) You can set new images to be not published by default and you can review the list of unpublished images. Other than that you would need to create a custom upload plugin to handle this. Image Moderation Queue? - statvoid - 2010-01-06 The drawback to the other utility is that it shows the images in a list, rather than in thumbnails (at least an option to view by thumbnail would be better). It's not really allowing you to review the images (as it's called It would be perfect if there was an option to review thumbnails of the images and allow you to delete the ones you don't want off of the server, maybe have a thumbnail with a visibility checkbox and an Image Moderation Queue? - acrylian - 2010-01-06 Actually you can do exactly that directly on the theme. If you enable the flag thumbnail plugin all thumbs of unpublished image will be flagged. You can then delete or edit them via the admintoolbox. Image Moderation Queue? - statvoid - 2010-01-06 Is there a way to add a delete option to the Or is there even a way to convert the Image Moderation Queue? - acrylian - 2010-01-06 "Is there a way..." is quite the wrong question. It's code so you can do bascially everything to that plugin as we are open source but you probably need to do it yourself. Why don't you just tell your clients what that unpublished flag means? Sorry, if I don't get that details about "being a pain". Image Moderation Queue? - statvoid - 2010-01-06 Sorry if I offended, I simply meant that the flag has alarmed clients and regardless of an FAQ and assurances that it's not bad, they continue to ask about it. That's all. Ideally there should be an option that only the admin should be able to see the flag rather than all users who are allow to upload. If I knew PHP well enough I probably would be able to do everything on my own, but unfortunately I don't it's not in our budget for me to get someone who could do that I need so I'm asking here. (And also being a student I don't have a lot of time to learn PHP although I certainly plan to when I have more time.) I am just looking for a simple way to queue up and filter recently uploaded images manually and remove those which do not belong on our servers. Image Moderation Queue? - acrylian - 2010-01-06 Absolutly no offense taken, just trying to understand. I am sorry, if you neither have the budget to hire someone nor the knowledge or time to achieve that you have to stick with what is there. Since we are a free and voluntary project we can't do that for you. If it is just the exclamation mark that is disturbing, you can change that to any image you want. Look at around line 28 in the plugin where the image is called (action.png). Just make a new image for example with a text note "unpublished" and place it within Image Moderation Queue? - statvoid - 2010-01-06 I appreciate it and do understand about the voluntary aspect. I'm just looking for help and my situation seems like it'd be a good feature, not just something one-off and useful to only myself: being able to moderate recently uploaded images by other users by viewing a page of thumbnails. My main issue I'm being pressed for is the image moderation. I don't know, it sounds simple enough of a concept. Is there an easy way to create a query in Zenphoto to display a set number of recently uploaded thumbnails? If I could be given a starting point to show, for example, 50 recent thumbnails I could try and figure out the rest, such as adding in a delete button. I just don't wanna break any functions and while I could follow a tutorial I'm afraid to break the system. Image Moderation Queue? - acrylian - 2010-01-06 Well, "easy" is relative if you are not that used to PHP. You can built standard mySQL queries to get the latest images (there is a database setup pdf in the release). You will hopefully understand that we don't always can add features on request of a few. I don't remember anyone else as Zenphoto is mainly used for personal portfolio sites. You always can submit a feature request ticket but that is no guarantee if or when we will do that. We also have the image_album_statistics plugin that contains a function to get/print the latest images. http://www.zenphoto.org/documentation/plugins/_zp-extensions---image_album_statistics.php.html#functiongetImageStatistic But again you would have to modify that/make a custom version to get image delete buttons into it. It is all there but you would have to use the object orientated framework for that: Image Moderation Queue? - statvoid - 2010-01-06 I can work from there I guess. The Image Moderation Queue? - acrylian - 2010-01-06 The printLatestImages function does print the thumbs.... Image Moderation Queue? - sbillard - 2010-01-07 Take a look at tonight's nightly build. I've enhanced the publish content utility. It may suit your needs now. Image Moderation Queue? - statvoid - 2010-01-08 Wow, thank you so much! That is exactly what I needed. I have one concern though (which wouldn't stop me from using it as-is whatsoever): I'm testing my site with 50-60 images at the moment. Currently, the change displays every thumbnail that has been uploaded (which is all 50-60 of them), when you have site that have much larger numbers, will they all be shown at once or will they be paginated to reduce load times involved in loading the thumbnails? Just food for thought more or less. One other thing, I was thinking about creating a folder for my uploaders to upload to by default (which I would tell them to upload to, and we'll call it "Upload queue"). Basically with this idea, those people will be told to place all images under the "Upload queue" directory. What I would then like to do is while I'm going through the uploaded images in the Once again though, thank you very much! You've just made my day. Image Moderation Queue? - sbillard - 2010-01-09 The queue will not be pages. If you get lots of images uploaded I guess you will just have to review the queue more often. If you do go forward with the single folder that you allow uploads to go to, I think you have what you need with the normal album/image tabs. They are paged (unless you want to do the mass edit). From there you can publish, delete and/or move images to a different album. |