E_WARNING
file_get_contents(/var/www/ullapopken.2010.casting/main/_templates/robots.txt.htm) [function.file-get-contents]: failed to open stream: No such file or directory

» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/plugins/resource.file.php (Line 35)
  1.         if (substr($this->template_dir, -1) != '/'$this->template_dir .= '/';
  2.  
  3.         $raw_tpl        $this->template_dir $tpl;
  4.  
  5.         // check for language dependent template file
  6.         $tpl_lang $raw_tpl '.' $this->language $this->suffix;        
  7.         if (file_exists$tpl_lang )) $raw_tpl $tpl_lang;
  8.         else $raw_tpl $raw_tpl $this->suffix// or fall back to standard template
  9.         
  10.         return file_get_contents$raw_tpl );
  11.         }
  12.  
  13.     public function getTimestamp($tpl)
  14.         {
  15.         // check trailing slash in template_dir
  16.         if (substr($this->template_dir, -1) != '/'$this->template_dir .= '/';
  17.  
  18.         $raw_tpl        $this->template_dir $tpl;
  19.  
  20.         // check for language dependent template file
file_get_contents()
» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/plugins/resource.file.php (Line 35)
  1.         if (substr($this->template_dir, -1) != '/'$this->template_dir .= '/';
  2.  
  3.         $raw_tpl        $this->template_dir $tpl;
  4.  
  5.         // check for language dependent template file
  6.         $tpl_lang $raw_tpl '.' $this->language $this->suffix;        
  7.         if (file_exists$tpl_lang )) $raw_tpl $tpl_lang;
  8.         else $raw_tpl $raw_tpl $this->suffix// or fall back to standard template
  9.         
  10.         return file_get_contents$raw_tpl );
  11.         }
  12.  
  13.     public function getTimestamp($tpl)
  14.         {
  15.         // check trailing slash in template_dir
  16.         if (substr($this->template_dir, -1) != '/'$this->template_dir .= '/';
  17.  
  18.         $raw_tpl        $this->template_dir $tpl;
  19.  
  20.         // check for language dependent template file
SerpentResourceFile->getTemplate()
» Arguments (1)» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 176)
  1.             return $compiled_tpl;
  2.             }
  3.         
  4.         return $compiled_tpl;
  5.         }
  6.         
  7.     // creates the compiled template
  8.     protected function _compileTemplate($tpl$resource$compiled_tpl$compiler_handler)
  9.         {
  10.         $source        $resource->getTemplate$tpl );
  11.         $timestamp    $resource->getTimestamp$tpl );
  12.         
  13.         // compile source
  14.         $compiled $this->compile($source$compiler_handler);
  15.         
  16.         // if path to compiled template does not exist create it
  17.         if (!file_existsdirname($compiled_tpl) )) mkdirdirname($compiled_tpl), 0777true );
  18.  
  19.         // write compiled template
  20.         file_put_contents($compiled_tpl$compiled);
Serpent->_compileTemplate()
» Arguments (4)» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 157)
  1.         if ($this->force_compile)
  2.             {
  3.             $this->_compileTemplate$tpl$resource$compiled_tpl$compiler_handler);
  4.             return $compiled_tpl;
  5.             }
  6.  
  7.         // check if a compiled template exists
  8.         if (!file_exists$compiled_tpl ))
  9.             {
  10.             $this->_compileTemplate$tpl$resource$compiled_tpl$compiler_handler);
  11.             return $compiled_tpl;
  12.             }
  13.         
  14.         // compare timestamp of tpl and compiled file
  15.         $compiled_tpl_time    filemtime$compiled_tpl );
  16.         $raw_tpl_mtime $resource->getTimestamp$tpl );
  17.         if ($compiled_tpl_time != $raw_tpl_mtime)
  18.             {
  19.             $this->_compileTemplate$tpl$resource$compiled_tpl$compiler_handler);
  20.             return $compiled_tpl;
Serpent->_render()
» Arguments (3)» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 71)
  1.         
  2.         // add trailing slash to compile_dir if not exists
  3.         if (substr($this->compile_dir, -1) != '/'$this->compile_dir .= '/'
  4.         
  5.         // check if compile dir exists
  6.         if (!file_exists($this->compile_dir)) throw new Exception('compile_dir "'.$this->compile_dir.'" does not exist.');
  7.         if (!is_writeable($this->compile_dir)) throw new Exception('compile_dir "'.$this->compile_dir.'" is not writeable.');
  8.  
  9.         // add to template stack
  10.         $this->_template_stack[$this->render_id][] = $this->_render($tpl$resource_handler$compiler_handler);
  11.         
  12.         // render data 
  13.         extract($varsEXTR_REFS);
  14.         ob_start();
  15.         
  16.         // include the extended templates
  17.         // foreach would not work here because an included template could fill the template stack
  18.         // (and foreach just works with a copy of the array and would not recognize the new template)
  19.         while (count($this->_template_stack[$this->render_id]) > 0)
  20.             {
Serpent->render()
» Arguments (1)» /var/www/ullapopken.2010.casting/_core/view/viewserpent.class.php (Line 84)
  1.         
  2.         // set additional config
  3.         $conf =& $this->plugin_config;
  4.         if ($conf !== false)
  5.             {
  6.             $_engine->addPluginConfig($conf[0], $conf[1], $conf[2]);
  7.             }            
  8.         
  9.         $_engine->pass($content);
  10.         fwrite($handle$_engine->render($this->template) );
  11.         
  12.         return $handle;
  13.         }
  14.     }
ViewSerpent->getOutput()
» Arguments (2)» /var/www/ullapopken.2010.casting/_core/libraries/view.class.php (Line 103)
  1.  
  2.         // set content type
  3.         $this->header[] = 'Content-Type: '.$displayHandler->mimetype.'; charset='.$displayHandler->charset;
  4.         
  5.         ### output
  6.         // create stream handle for the output
  7.         $handle fopen('php://temp/maxmemory:'.(1*1024*1024), 'r+'); // 1MB
  8.  
  9.         // get body stream
  10.         $handle $displayHandler->getOutput($this->getContent(), $handle);
  11.         
  12.         // process Filters
  13.         $handle $this->_processFilters($handle);
  14.  
  15.         // add compression
  16.         if($compression_level 0)
  17.             $handle $this->_compressStream($handle$compression_level);
  18.  
  19.         // get filesize of stream
  20.         $stats fstat($handle);
View->get()
» Arguments (1)» /var/www/ullapopken.2010.casting/_core/morrow.class.php (Line 304)
  1.  
  2.         // Inhalte zuweisen
  3.         $this->view->setContent($this->page->get(), 'page');
  4.  
  5.         // if the client accepts encoding serve it
  6.         $compression_level 0;
  7.         if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strstr($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip'))
  8.             $compression_level 6;
  9.  
  10.         $handle $this->view->get($compression_level);
  11.         
  12.         rewind($handle);
  13.         fpassthru($handle);
  14.         fclose($handle);
  15.         }
  16.     }
Morrow->_run()
» /var/www/ullapopken.2010.casting/_core/morrow.class.php (Line 7)
  1. <?php
  2.  
  3. class Morrow
  4.     {
  5.     public function __construct()
  6.         {
  7.         $this->_run();
  8.         }
  9.  
  10.     public function errorHandler($errno$errstr$errfile$errline)
  11.         {
  12.         // get actual error_reporting
  13.         $error_reporting error_reporting();
  14.  
  15.         // request for @ error-control operator
  16.         if ($error_reporting == 0) return;
  17.  
  18.         // return if error should not get processed
  19.         if (($errno $error_reporting) === 0) return;
  20.  
Morrow->__construct()
» /var/www/ullapopken.2010.casting/_core/factory.class.php (Line 38)
  1.                 {
  2.                 trigger_error('instance "'.$instancename.'" already defined of class "'.get_class($instance).'"'E_USER_ERROR);
  3.                 return false;
  4.                 }
  5.             }
  6.  
  7.         // create object
  8.         if (is_null($args))
  9.             {
  10.             $instance = new $classname;
  11.             }
  12.         else
  13.             {
  14.             if (is_null(self::$use_fallback)) self::$use_fallback version_compare(PHP_VERSION'5.1.3''<');
  15.             
  16.             if (self::$use_fallback)
  17.                 {
  18.                 $instance self::createObjArray($classname$args);
  19.                 }
  20.             else
Factory::load()
» Arguments (1)» /var/www/ullapopken.2010.casting/_core/_root.php (Line 52)
  1.     include(FW_PATH.'_core/update.php');
  2.     }
  3.  
  4. /* the autoloader for all classes
  5. ********************************************************************************************/
  6. include(FW_PATH.'_core/autoloader.php');
  7.  
  8. /* load framework
  9. ********************************************************************************************/
  10. Factory::load('morrow:morrow:internal');
require()
» /var/www/ullapopken.2010.casting/index.php (Line 12)
  1. $time_start microtime(true);
  2.  
  3. // include E_STRICT in error_reporting
  4. error_reporting(E_ALL E_STRICT);
  5.  
  6. // set framework path
  7. define ("FW_PATH"dirname(__FILE__).'/');
  8.  
  9. // include starter
  10. require(FW_PATH "_core/_root.php");
  11.  
  12. $time_end microtime(true);
  13. $time $time_end $time_start;
  14.  
  15. //Factory::load('log')->set(round($time*1000, 2).' ms');
  16.  
  17. ?>