Show Daily Archives after specific dates

do so like this

add_filter( 'getarchives_where', 'my_archives_filter_function', 10, 2 );

create function

function my_archives_filter_function($text, $r) {
     return "WHERE post_type="post" AND post_status="publish" AND post_date >= '2013-08-01'";
}