<?php
define('DOCROOT', rtrim(dirname(__FILE__), '\\/'));
define('DOMAIN', rtrim(rtrim($_SERVER['HTTP_HOST'], '\\/') . dirname($_SERVER['PHP_SELF']), '\\/'));
require(DOCROOT . '/symphony/lib/boot/bundle.php');
function renderer($mode='frontend'){
if(!in_array($mode, array('frontend', 'administration'))){
throw new Exception('Invalid Symphony Renderer mode specified. Must be either "frontend" or "administration".');
}
require_once(CORE . "/class.{$mode}.php");
return ($mode == 'administration' ? Administration::instance() : Frontend::instance());
}
$renderer = (isset($_GET['mode']) && strtolower($_GET['mode']) == 'administration'
? 'administration'
: 'frontend');
$output = renderer($renderer)->display(getCurrentPage());
ob_start();
echo $output;
$length = ob_get_length();
ob_end_clean();
file_put_contents(TMP . '/blah', $output);
print (function_exists("mb_strlen") ? "mb_strlen(): " . mb_strlen($output) . "<br />" : NULL).
"ob_get_length(): " . $length . "<br />" .
"strlen(): " . strlen($output) . "<br />" .
"filesize(): " . filesize(TMP . '/blah');
die();
header(sprintf('Content-Length: %d', strlen($output)));
echo $output;
exit();