PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   How Do I? - vBulletin 3.0.X (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/)
-   -   How can I remove full sized images? (http://www.photopost.com/forum/how-do-i-vbulletin-3-0-x/117249-how-can-i-remove-full-sized-images.html)

imported_Kesomir January 8th, 2005 06:17 PM

How can I remove full sized images?
 
I've set the option to not keep the full sized image and link to it (click on the picture job) but all the previous full sized images are still there. How can I remove all these images and links to them to save space?

imported_Kesomir January 9th, 2005 07:12 AM

Re: How can I remove full sized images?
 
;) perhaps what I should say.. is there a maintainance module to do this in RC3 or can one be posted up before that release.

Otherwise if you change the selection to not keep original images, theres no way to remove those already there. (an auto prune admin function based on age and quota would also be good :) )

- Shouldn't be too hard to make (just to test rofl), it just has to delete all applicable files and remove the corresponding database entries.

Brian January 9th, 2005 10:10 AM

Re: How can I remove full sized images?
 
If you run this query:
UPDATE adv_gallery_images SET originalname = '';

Then run the 'Scan Database' tool that should allow you to easily remove all original images.

imported_Kesomir January 9th, 2005 11:14 AM

Re: How can I remove full sized images?
 
cheers Brian.

As a note to anyone else, you also need to run the queries;

UPDATE adv_gallery_images SET originalwidth = '';
UPDATE adv_gallery_images SET originalheight = '';

to remove the links to original images (which are gone from the first part)


All times are GMT -5. The time now is 05:25 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97