How to fix pagination not found in wordpress?

Solution:

Maybe you missed the object here. You can try the code below:

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  $args = array(
      'posts_per_page' => get_option('posts_per_page'),
      'paged' => $paged,
      'category_name'=>get_the_title(),
      'post_status'=> array('publish', 'future')
 ); 
 query_posts($args);

instead:

 <?php query_posts('category_name='.get_the_title().'&post_status=publish,future');?>