Err: Module 'Product' is not exists!

108. 
109.      if(isset($m))
110.      {
111.          $route "$m/$c/$a";
112.          $url $_SERVER["SCRIPT_NAME"]."?m=$m&c=$c&a=$a$params";
113.      }
114.      elseif(strpos($c'/') !== false)
115.      {
116.          list($m$c) = explode('/'$c);
117.          $route "$m/$c/$a";
118.          $url $_SERVER["SCRIPT_NAME"]."?m=$m&c=$c&a=$a$params";
1.  <?php
2.  define('APP_DIR'realpath('./'));
3.  defined('DS') or define('DS'DIRECTORY_SEPARATOR);
4.  define('INCL_DIR'APP_DIR.DS.'protected'.DS.'include');
5.  require(INCL_DIR.DS.'core.php');