Err: Controller 'productController' is not exists!

246.          $this->_v->assign($this->_data);
247.          if($this->layout){
248.              $this->_v->assign('__template_file'$tpl_name);
249.              $tpl_name $this->layout;
250.          }
251.          $this->_auto_display false;
252.          if($return){
253.              return $this->_v->render($tpl_name);
254.          }else{
255.              echo $this->_v->render($tpl_name);
256.          }
1.  <?php
2.  define('APP_DIR'realpath('./'));
3.  define('DS'DIRECTORY_SEPARATOR);
4.  define('VIEW_DIR'APP_DIR.DS.'templates');
5.  require(APP_DIR.'/include/core.php');