The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Hello Friends,
I Want to Know How To remove Thumbs and Folders Of Deleted Videos And There History And Etc from Database And Directory. Because After Deleting Also Some Videos There Are Some Folders And Thumbs Left Behind.
Pharmacy, wholesale prices - worldwide shipping.
Offline
This should really be added as a feature or a bug because upon deletion of a video, everything should go - unless it is doing a soft delete for some purpose.
Offline
This should really be added as a feature or a bug because upon deletion of a video, everything should go - unless it is doing a soft delete for some purpose.
I Asked this Feature To Check And Remove All Crap Things From Site But Do not know Is It Added In 1.0 or Not Because My Server Having Atleast 200Mb to 300MB Scrap Space Which i can free. If Any Script is There Or Something Which can help Let me KNow.
Pharmacy, wholesale prices - worldwide shipping.
Offline
Its a bug. Everything should be deleted. What is not deleted for you?
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Folder Basically And In Some Case Thumbs Also. I Tried Once And removed Uploaded Files And I Seen in Database That There Is Still entries In upload table last one.
Pharmacy, wholesale prices - worldwide shipping.
Offline
So:
1. media/videos/tmb/000/*/* is not removed? also the *.jpg files are not removed?
2. the database video_upload table is not cleaned? (it should never be cleaned)
3. the database video (and other tables) are not cleaned after delete?
Plaese check and tell me if there is something else. I will test in 1.0 and make sure it works correctly.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
So:
1. media/videos/tmb/000/*/* is not removed? also the *.jpg files are not removed?
2. the database video_upload table is not cleaned? (it should never be cleaned)
3. the database video (and other tables) are not cleaned after delete?Plaese check and tell me if there is something else. I will test in 1.0 and make sure it works correctly.
Yes Many All times
1. media/videos/tmb/000/* is not removed.
2. Some Times the media/videos/tmb/000/*/* Is Also Not removed.
3. Yes database video_upload table is not cleaned And Should Be Cleaned Entries If Video is Delete From Site And It Should Not keep them.
4. the database video (and other tables) are not cleaned after delete Thats Also Correct many Video Histories Still There In my Database After Deleting Video. It only Increase Size Of Database.
Thats What I Seen in My Database If Anyone Not Agree With Me Let me Know.
Pharmacy, wholesale prices - worldwide shipping.
Offline
And One More Thing Bringing this In Light There Is Only One Motto Of Mine In Future ASPRO Will Go In Cloud Servers And They Charge As Per Space And Hours And If We Have Empty Folders They Also Count Some Space In There Directories Minimum 4 bytes Or Some Have 4 KB So They Are Also Charged Even We Have Removed The Videos Costing Of Sites Goes Up Because Of Small Files Also.
Last edited by ful2fun.com (2012-06-09 07:34:52)
Pharmacy, wholesale prices - worldwide shipping.
Offline
Except for the empty folders i already fixed everything in 1.0.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Except for the empty folders i already fixed everything in 1.0.
Thank You For Fixing it but When you get free Time Please Try to Fix Empty folder Thing Also.
Pharmacy, wholesale prices - worldwide shipping.
Offline
You can run this as a cron or incorporate it on delete of a vid.
function RemoveEmptySubFolders($path)
{
$empty=true;
foreach (glob($path.DIRECTORY_SEPARATOR."*") as $file)
{
$empty &= is_dir($file) && RemoveEmptySubFolders($file);
}
return $empty && rmdir($path);
}
Last edited by THS (2012-06-09 11:59:34)
Offline
Thanks. A similar is already included in libraries/framework/folder.php, but i didnt integrate yet the empty folder delete in the video delete function. Will add it later today.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline