Report abuse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?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();