Quote:
Originally Posted by Alprazolam
i would like to see someone explain how a hidden mirror backup of a tubes content gets resynced on a regular basis and puts content removed by dmcas back on the offending live sites. anyone want to explain that? just hypothetically of course.
|
Here's how
PHP Code:
mysql_query("update db set viewable = 0 where video_id = 12303");
// That sets the video to non viewable...
// another script runs later and does this
mysql_query("update db set viewable = 1, uploader = "newguy1" where video_id = 12303");
Very simple to have video disappear and reappear.