I've recently done some upgrading: 0.6.1.2->0.6.1.4->1.1
Now, at the bottom of each page, I see:
Quote
_ALL); // let scripts know that it is the parser calling define("IN_ETOMITE_PARSER", "true"); // let scripts know that it is the manager calling //define("IN_ETOMITE_SYSTEM", "true"); // get the required includes and/or additional classes // contents of manager/includes/config.inc.php can be copied and pasted here for a small speed increase @include("manager/includes/config.inc.php"); // If config.inc.php doesn't exist or isn't complete, display installer link and die if(empty($database_type) || !file_exists("manager/includes/config.inc.php")) { die("Please run the Etomite install utility!"); } // if the form class will not be used this include can be rearked for a small speed increase include("manager/includes/form_class.php"); // create a customized session startCMSSession(); // initiate a new document parser and additional classes $etomite = new etomite; // set some options $etomite->printable = "Printable Page"; // Name of Printable Page template // the following settings are for blocking search bot page hit logging $etomite->useblockLogging = true; $etomite->blockLogging = "/(google|bot|msn|slurp|spider|agent|validat|miner|walk|crawl|robozilla|search|com
bine|theophrastus|larbin|dmoz)/i"; // these settings allow for fine tuning the parser recursion $etomite->snippetParsePasses = 5; # Original default: 3 $etomite->nonCachedSnippetParsePasses = 5; # Original default: 2 // feed the parser the execution start time $etomite->tstart = $tstart; // execute the parser $etomite->executeParser(); // flush the content buffer ob_end_flush(); // ANY SETTINGS YOU DIDN'T FIND HERE HAVE BEEN MOVED TO THE CONFIGURATION PANEL // END: index.php -- Etomite parser ?>
Ofcourse the Powered by.. is the poweredby snippet, but everything below that is a piece of code from index.php
(Line:
// set error reporting level (can be changed in a production environment) error_reporting(E_ALL); ...)
Any ideas as to what is causing it to output the code from the middle of a line like that? Is "E" a reserved thing maybe? (my PHP skills are rusted to dust..)
Thanks for any help you can offer.
Cheers,
Alex


This topic is locked







