- added a script to make profile.has_picture consistent

with the images actually on disk

svn path=/trunk/boinc/; revision=16764
This commit is contained in:
David Anderson 2009-01-02 20:02:04 +00:00
parent 797935d429
commit 50d0bb8a31
3 changed files with 10458 additions and 10422 deletions

File diff suppressed because it is too large Load Diff

10424
checkin_notes_2008 Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
<?php
ini_set("memory_limit", "1023M");
require_once("../inc/boinc_db.inc");
BoincDb::get();
$profiles = BoincProfile::enum("");
foreach ($profiles as $p) {
$id = $p->userid;
$path = "../user_profile/images/$id.jpg";
$smpath = "../user_profile/images/".$id."_sm.jpg";
$has_pic = file_exists($path);
$has_pic_sm = file_exists($smpath);
if ($p->has_picture) {
if (!$has_pic || !$has_pic_sm) {
echo "$id $p->has_picture $has_pic $has_pic_sm\n";
BoincProfile::update_aux("has_picture=0 where userid=$id");
}
} else {
if ($has_pic && $has_pic_sm) {
echo "$id $p->has_picture $has_pic $has_pic_sm\n";
BoincProfile::update_aux("has_picture=1 where userid=$id");
}
}
}
?>