well if I'm not mistaken the beginning of auto_archive.php needs to be changed to
$now[year] = date("Y");
$now[month] = date("m");
$now[stamp] = $now[year].$now[month];
$db_content = file("$cutepath/auto_archive.db.php");
list($last_archived[year], $last_archived[month]) = split("\|", $db_content[0] );
$last_archived[stamp] = $last_archived[year].$last_archived[month];
archive stamp is now calculated as YEAR.MONTH, so Jan 05 would be 200501.
If you already have the autoarchive mod added, you'll need to prefix all month values in auto_archive.db.php with a '0'.
The achive db should look something like:
2005|1
2004|12
2004|11
0|0
change the first line to read 2005|01
when finished it shoule look like this changes are in bold
$now[year] = date("Y");
$now[month] = date("m");
$now[stamp] = $now[year].$now[month];
$db_content = file("$cutepath/auto_archive.db.php");
list($last_archived[year], $last_archived[month]) = split("\|", $db_content[0] );
$last_archived[stamp] = $last_archived[year].$last_archived[month];