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) if (substr($this->template_dir, -1) != '/') $this->template_dir .= '/'; $raw_tpl = $this->template_dir . $tpl; // check for language dependent template file $tpl_lang = $raw_tpl . '.' . $this->language . $this->suffix; if (file_exists( $tpl_lang )) $raw_tpl = $tpl_lang; else $raw_tpl = $raw_tpl . $this->suffix; // or fall back to standard template return file_get_contents( $raw_tpl );
} public function getTimestamp($tpl) { // check trailing slash in template_dir if (substr($this->template_dir, -1) != '/') $this->template_dir .= '/'; $raw_tpl = $this->template_dir . $tpl; // 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) if (substr($this->template_dir, -1) != '/') $this->template_dir .= '/'; $raw_tpl = $this->template_dir . $tpl; // check for language dependent template file $tpl_lang = $raw_tpl . '.' . $this->language . $this->suffix; if (file_exists( $tpl_lang )) $raw_tpl = $tpl_lang; else $raw_tpl = $raw_tpl . $this->suffix; // or fall back to standard template return file_get_contents( $raw_tpl );
} public function getTimestamp($tpl) { // check trailing slash in template_dir if (substr($this->template_dir, -1) != '/') $this->template_dir .= '/'; $raw_tpl = $this->template_dir . $tpl; // check for language dependent template file
SerpentResourceFile->getTemplate()
» Arguments (1)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(10) "robots.txt"
» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 176) return $compiled_tpl; } return $compiled_tpl; } // creates the compiled template protected function _compileTemplate($tpl, $resource, $compiled_tpl, $compiler_handler) { $source = $resource->getTemplate( $tpl );
$timestamp = $resource->getTimestamp( $tpl ); // compile source $compiled = $this->compile($source, $compiler_handler); // if path to compiled template does not exist create it if (!file_exists( dirname($compiled_tpl) )) mkdir( dirname($compiled_tpl), 0777, true ); // write compiled template file_put_contents($compiled_tpl, $compiled);
Serpent->_compileTemplate()
» Arguments (4)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(10) "robots.txt"
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ Object(SerpentResourceFile extends SerpentResourceAbstract)
{
| -> getTemplateId($tpl)
| -> getTemplate($tpl)
| -> getTimestamp($tpl)
| -> setConfig($config)
|
| $template_dir = String(49) "/var/www/ullapopken.2010.casting/main/_templates/"
| $suffix = String(4) ".htm"
| $language = String(3) "deu"
}
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(90) "/var/www/ullapopken.2010.casting/main/temp/_templates_compiled/file_serpent/robots%txt%deu"
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(7) "serpent"
» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 157) if ($this->force_compile) { $this->_compileTemplate( $tpl, $resource, $compiled_tpl, $compiler_handler); return $compiled_tpl; } // check if a compiled template exists if (!file_exists( $compiled_tpl )) { $this->_compileTemplate( $tpl, $resource, $compiled_tpl, $compiler_handler);
return $compiled_tpl; } // compare timestamp of tpl and compiled file $compiled_tpl_time = filemtime( $compiled_tpl ); $raw_tpl_mtime = $resource->getTimestamp( $tpl ); if ($compiled_tpl_time != $raw_tpl_mtime) { $this->_compileTemplate( $tpl, $resource, $compiled_tpl, $compiler_handler); return $compiled_tpl;
Serpent->_render()
» Arguments (3)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(10) "robots.txt"
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = NULL(0) NULL
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = NULL(0) NULL
» /var/www/ullapopken.2010.casting/_core/external/serpent_1.3/source/serpent.class.php (Line 71) // add trailing slash to compile_dir if not exists if (substr($this->compile_dir, -1) != '/') $this->compile_dir .= '/'; // check if compile dir exists if (!file_exists($this->compile_dir)) throw new Exception('compile_dir "'.$this->compile_dir.'" does not exist.'); if (!is_writeable($this->compile_dir)) throw new Exception('compile_dir "'.$this->compile_dir.'" is not writeable.'); // add to template stack $this->_template_stack[$this->render_id][] = $this->_render($tpl, $resource_handler, $compiler_handler);
// render data extract($vars, EXTR_REFS); ob_start(); // include the extended templates // foreach would not work here because an included template could fill the template stack // (and foreach just works with a copy of the array and would not recognize the new template) while (count($this->_template_stack[$this->render_id]) > 0) {
Serpent->render()
» Arguments (1)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(10) "robots.txt"
» /var/www/ullapopken.2010.casting/_core/view/viewserpent.class.php (Line 84) // set additional config $conf =& $this->plugin_config; if ($conf !== false) { $_engine->addPluginConfig($conf[0], $conf[1], $conf[2]); } $_engine->pass($content); fwrite($handle, $_engine->render($this->template) );
return $handle; } }
ViewSerpent->getOutput()
» Arguments (2)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ => Array (7)
(
| ['lang'] => Array (6)
| (
| | ['apply_now'] = String(41) "Jetzt bewerben! Hier geht's zur Bewerbung"
| | ['read_more'] = String(10) "mehr lesen"
| | ['last_blog_entry'] = String(22) "Der letzte Blogeintrag"
| | ['casting_invite'] = String(29) "Kommen Sie<br /> zum Casting!"
| | ['next_date'] = String(19) "Der nächste Termin"
| | ['next_dates'] = String(20) "Weitere Termine sind"
| )
| ['lang_info'] => Array (6)
| (
| | ['key'] = String(2) "de"
| | ['key2'] = String(3) "deu"
| | ['title'] = String(7) "Deutsch"
| | ['country'] = String(2) "DE"
| | ['locale'] => Array (3)
| | (
| | | ['date'] => Array (6)
| | | (
| | | | ['keys'] => Array (4)
| | | | (
| | | | | ['0'] = String(7) "deu_deu"
| | | | | ['1'] = String(11) "de_DE.utf-8"
| | | | | ['2'] = String(5) "de_DE"
| | | | | ['3'] = String(10) "de_DE.utf8"
| | | | )
| | | | ['separator'] = String(1) "."
| | | | ['order'] = String(3) "DMY"
| | | | ['format'] = String(8) "%d.%m.%Y"
| | | | ['format_day'] = String(3) "%d."
| | | | ['format_month'] = String(6) "%d.%m."
| | | )
| | | ['currency'] => Array (2)
| | | (
| | | | ['separator'] = String(1) ","
| | | | ['thou'] = String(1) "."
| | | )
| | | ['translations'] => Array (7)
| | | (
| | | | ['year'] => Array (2)
| | | | (
| | | | | ['0'] = String(4) "Jahr"
| | | | | ['1'] = String(6) "Jahren"
| | | | )
| | | | ['month'] => Array (2)
| | | | (
| | | | | ['0'] = String(5) "Monat"
| | | | | ['1'] = String(7) "Monaten"
| | | | )
| | | | ['week'] => Array (2)
| | | | (
| | | | | ['0'] = String(5) "Woche"
| | | | | ['1'] = String(6) "Wochen"
| | | | )
| | | | ['day'] => Array (2)
| | | | (
| | | | | ['0'] = String(3) "Tag"
| | | | | ['1'] = String(5) "Tagen"
| | | | )
| | | | ['hour'] => Array (2)
| | | | (
| | | | | ['0'] = String(6) "Stunde"
| | | | | ['1'] = String(7) "Stunden"
| | | | )
| | | | ['minute'] => Array (2)
| | | | (
| | | | | ['0'] = String(6) "Minute"
| | | | | ['1'] = String(7) "Minuten"
| | | | )
| | | | ['second'] => Array (2)
| | | | (
| | | | | ['0'] = String(7) "Sekunde"
| | | | | ['1'] = String(8) "Sekunden"
| | | | )
| | | )
| | )
| | ['iso'] = String(5) "DE-de"
| )
| ['site'] => Array (2)
| (
| | ['header'] => Array (4)
| | (
| | | ['id'] = String(1) "5"
| | | ['lang'] = String(3) "deu"
| | | ['content'] => Array (0)
| | | (
| | | )
| | | ['template'] = String(6) "header"
| | )
| | ['homepage'] => Array (4)
| | (
| | | ['id'] = String(1) "6"
| | | ['lang'] = String(3) "deu"
| | | ['content'] => Array (3)
| | | (
| | | | ['header1'] = String(42) "Das Modelcasting geht in die letzte Runde!"
| | | | ['header2'] = String(0) ""
| | | | ['copy'] = String(617) "Die Bewerbungsphase für das Ulla Popken Model 2010 ist vorbei. Unsere Jury hat nun die Qual der Wahl: Aus allen Bewerbungen gilt es eine Vorauswahl zu treffen. Angesichts der vielen interessanten Frauen, die sich bei uns vorgestellt haben, wird dies sicherlich keine leichte Entscheidung.
Wer diese Aufgabe meistert?
Lernen Sie unsere Fach-Jury besser kennen:
<a href="jury/" class="button"><span>Zur Jury</span></a>
Ab dem <strong>12.08.2010</strong> ist es so weit: Das Finale Online-Voting beginnt und Sie können für Ihre Favoritin abstimmen. Wählen Sie die Finalistinnen des Ulla Popken Modelcastings 2010."
| | | )
| | | ['template'] = String(8) "homepage"
| | )
| )
| ['previewMode'] = Boolean(0) FALSE
| ['navi'] => Array (3)
| (
| | ['main'] => Array (6)
| | (
| | | ['home'] => Array (4)
| | | (
| | | | ['title'] = String(4) "Home"
| | | | ['path'] = String(5) "home/"
| | | | ['alias'] = String(4) "home"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['signup'] => Array (4)
| | | (
| | | | ['title'] = String(9) "Bewerbung"
| | | | ['path'] = String(7) "signup/"
| | | | ['alias'] = String(6) "signup"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['blog'] => Array (4)
| | | (
| | | | ['title'] = String(4) "Blog"
| | | | ['path'] = String(5) "blog/"
| | | | ['alias'] = String(4) "blog"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['jury'] => Array (4)
| | | (
| | | | ['title'] = String(4) "Jury"
| | | | ['path'] = String(5) "jury/"
| | | | ['alias'] = String(4) "jury"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['voting'] => Array (5)
| | | (
| | | | ['disabled'] = Boolean(1) TRUE
| | | | ['title'] = String(6) "Voting"
| | | | ['path'] = String(7) "voting/"
| | | | ['alias'] = String(6) "voting"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['gallery'] => Array (5)
| | | (
| | | | ['disabled'] = Boolean(1) TRUE
| | | | ['title'] = String(7) "Galerie"
| | | | ['path'] = String(8) "gallery/"
| | | | ['alias'] = String(7) "gallery"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | )
| | ['meta'] => Array (3)
| | (
| | | ['contact'] => Array (4)
| | | (
| | | | ['title'] = String(7) "Kontakt"
| | | | ['path'] = String(8) "contact/"
| | | | ['alias'] = String(7) "contact"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['legal'] => Array (4)
| | | (
| | | | ['title'] = String(9) "Impressum"
| | | | ['path'] = String(6) "legal/"
| | | | ['alias'] = String(5) "legal"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['terms'] => Array (4)
| | | (
| | | | ['title'] = String(20) "Teilnahmebedingungen"
| | | | ['path'] = String(6) "terms/"
| | | | ['alias'] = String(5) "terms"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | )
| | ['hidden'] => Array (2)
| | (
| | | ['thanks'] => Array (4)
| | | (
| | | | ['title'] = String(5) "Danke"
| | | | ['path'] = String(7) "thanks/"
| | | | ['alias'] = String(6) "thanks"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | | ['dates'] => Array (4)
| | | (
| | | | ['title'] = String(5) "Dates"
| | | | ['path'] = String(6) "dates/"
| | | | ['alias'] = String(5) "dates"
| | | | ['active'] = Boolean(0) FALSE
| | | )
| | )
| )
| ['breadcrumb'] => Array (0)
| (
| )
| ['page'] => Array (10)
| (
| | ['nodes'] => Array (1)
| | (
| | | ['0'] = String(10) "robots.txt"
| | )
| | ['base_href'] = String(34) "http://modelcasting.ullapopken.de/"
| | ['project_path'] = String(39) "http://modelcasting.ullapopken.de/main/"
| | ['project_relpath'] = String(5) "main/"
| | ['alias'] = String(10) "robots.txt"
| | ['controller'] = String(70) "/var/www/ullapopken.2010.casting/main/_controller/robots.txt.class.php"
| | ['path'] = String(11) "robots.txt/"
| | ['fullpath'] = String(11) "robots.txt/"
| | ['charset'] = String(5) "utf-8"
| | ['mimetype'] = String(9) "text/html"
| )
)
$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ Resource(stream)
{
| ['wrapper_type'] = String(3) "PHP"
| ['stream_type'] = String(4) "TEMP"
| ['mode'] = String(3) "w+b"
| ['unread_bytes'] = Integer(1) 0
| ['seekable'] = Boolean(1) TRUE
| ['uri'] = String(28) "php://temp/maxmemory:1048576"
)
» /var/www/ullapopken.2010.casting/_core/libraries/view.class.php (Line 103) // set content type $this->header[] = 'Content-Type: '.$displayHandler->mimetype.'; charset='.$displayHandler->charset; ### output // create stream handle for the output $handle = fopen('php://temp/maxmemory:'.(1*1024*1024), 'r+'); // 1MB // get body stream $handle = $displayHandler->getOutput($this->getContent(), $handle);
// process Filters $handle = $this->_processFilters($handle); // add compression if($compression_level > 0) $handle = $this->_compressStream($handle, $compression_level); // get filesize of stream $stats = fstat($handle);
View->get()
» Arguments (1)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = Integer(1) 6
» /var/www/ullapopken.2010.casting/_core/morrow.class.php (Line 304) // Inhalte zuweisen $this->view->setContent($this->page->get(), 'page'); // if the client accepts encoding serve it $compression_level = 0; if (isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strstr($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip')) $compression_level = 6; $handle = $this->view->get($compression_level);
rewind($handle); fpassthru($handle); fclose($handle); } }
Morrow->_run()
» /var/www/ullapopken.2010.casting/_core/morrow.class.php (Line 7)
<?php class Morrow { public function __construct() { $this->_run();
} public function errorHandler($errno, $errstr, $errfile, $errline) { // get actual error_reporting $error_reporting = error_reporting(); // request for @ error-control operator if ($error_reporting == 0) return; // return if error should not get processed if (($errno & $error_reporting) === 0) return;
Morrow->__construct()
» /var/www/ullapopken.2010.casting/_core/factory.class.php (Line 38) { trigger_error('instance "'.$instancename.'" already defined of class "'.get_class($instance).'"', E_USER_ERROR); return false; } } // create object if (is_null($args)) { $instance = new $classname;
} else { if (is_null(self::$use_fallback)) self::$use_fallback = version_compare(PHP_VERSION, '5.1.3', '<'); if (self::$use_fallback) { $instance = self::createObjArray($classname, $args); } else
Factory::load()
» Arguments (1)$this->errorhandler_screen($errstr, $backtrace, $errordescription);
called in /var/www/ullapopken.2010.casting/_core/libraries/debug.class.php on line 235:
$ = String(22) "morrow:morrow:internal"
» /var/www/ullapopken.2010.casting/_core/_root.php (Line 52) include(FW_PATH.'_core/update.php'); } /* the autoloader for all classes********************************************************************************************/include(FW_PATH.'_core/autoloader.php'); /* load framework********************************************************************************************/Factory::load('morrow:morrow:internal');
require()
» /var/www/ullapopken.2010.casting/index.php (Line 12)$time_start = microtime(true); // include E_STRICT in error_reportingerror_reporting(E_ALL | E_STRICT); // set framework pathdefine ("FW_PATH", dirname(__FILE__).'/'); // include starterrequire(FW_PATH . "_core/_root.php");
$time_end = microtime(true);$time = $time_end - $time_start; //Factory::load('log')->set(round($time*1000, 2).' ms'); ?>