E_WARNING
include(robots.txt.tpl) [function.include]: failed to open stream: No such file or directory

» /content/dashwe/docs/de/main/_templates/_index.tpl (Line 45)
  1.     <div style="background-color: #FFFFFF; width: 100%; margin-bottom: 9px;">
  2.         <script type="text/javascript" language="javascript" src="http://www.for-me-online.de/itgcheader.ashx?brandId=4d745bf7-611c-47b6-b6cf-da2bc0c8594c&methodname=getBrandLogo"></script>
  3.     </div>
  4.  
  5.     <?php
  6.     //<a href="#" onclick="openPopup('wash'); return false">open Wash</a> <a href="#" onclick="openPopup('dose'); return false">open Dose</a>
  7.     ?>
  8.  
  9. <div id="canvas">
  10.     <?php include( $page['content_template'] ); ?>
  11. </div>
  12.  
  13. <?php
  14. //<a href="javascript:void(0);" onClick="javascript:urchinTracker('/folder/file');">Test</a>
  15. ?>
  16.  
  17. </body>
  18. </html>
include()
» Arguments (1)» /content/dashwe/docs/de/_core/view/viewphp.class.php (Line 58)
  1.         $content['page']['template'] = $this->template;
  2.  
  3.         // assign vars
  4.         foreach ($content as $key=>$value)
  5.             {
  6.             $$key $value;
  7.             }
  8.  
  9.         ob_start();
  10.         include(PROJECT_PATH.'_templates/'.$this->template);
  11.         $output ob_get_contents();
  12.         ob_end_clean();
  13.  
  14.         return $output;
  15.         }
  16.     }
  17.  
  18. ?>
ViewPhp->getOutput()
» Arguments (1)» /content/dashwe/docs/de/_core/libraries/view.class.php (Line 165)
  1.             // save (loading will be done in _root.php)
  2.             $this -> cache -> save($id$output$this->cachetime$comparator);
  3.  
  4.             // output
  5.             $output $output['body'];
  6.             }
  7.         // kein Caching
  8.         else
  9.             {
  10.             $output $displayHandler->getOutput($this->getContent());
  11.             }
  12.  
  13.         // Process filters
  14.         if (isset($this->filters[$this->mode]))
  15.             foreach ($this->filters[$this->mode] as $value)
  16.                 {
  17.                 $filtername $value[0];
  18.                 $filter = new $filtername$value[1] );
  19.                 $output $filter->get($output);
  20.                 }
View->get()
» /content/dashwe/docs/de/_core/morrow.class.php (Line 294)
  1.         else
  2.             {
  3.             $controller = new GlobalController();
  4.             $controller->setup();
  5.             }
  6.  
  7.         // Inhalte zuweisen
  8.         $this->view->setContent($this->page->get(), 'page');
  9.  
  10.         $output $this->view->get();
  11.         echo $output;
  12.         }
  13.     }
  14.  
  15. ?>
Morrow->_run()
» /content/dashwe/docs/de/_core/morrow.class.php (Line 6)
  1. <?php
  2. class Morrow
  3.     {
  4.     public function __construct()
  5.         {
  6.         $this->_run();
  7.         }
  8.  
  9.     public function errorHandler($errno$errstr$errfile$errline)
  10.         {
  11.         // get actual error_reporting
  12.         $error_reporting error_reporting();
  13.  
  14.         // request for @ error-control operator
  15.         if ($error_reporting == 0) return;
  16.  
  17.         // return if error should not get processed
  18.         if (($errno $error_reporting) === 0) return;
  19.  
  20.         throw new Exception($errstr$errno);
Morrow->__construct()
» /content/dashwe/docs/de/_core/factory.class.php (Line 37)
  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)» /content/dashwe/docs/de/_core/_root.php (Line 130)
  1.     header('Cache-Control: public, max-age=' $filemaxage);
  2.  
  3.     // output content
  4.     echo $output['body'];
  5.     return;
  6.     }
  7.  
  8. /* load framework
  9. ********************************************************************************************/
  10. Factory::load('morrow:morrow:internal');
  11.  
  12. ?>
require()
» Arguments (1)» /content/dashwe/docs/de/index.php (Line 11)
  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. ?>
  18.  
  19. <script src="/__utm.js"></script>