use your ftp program and empty the cache folder of everything but index.html and .htaccess.
that may get you in, but you will probably have to edit your includes/def_tree.php since it was the edit forum function that set it off.
You probably have broken comments added to the file.
the top should look like this
<?php
/***************************************************************************
* def_tree_def.php
* ----------------
* begin : 12/11/2003
* copyright : Ptirhiik
* email : admin@rpgnet-fr.com
*
* version : 1.0.0 - 12/11/2003
*
* last update : 2006-04-17 11:33:07 (GMT) by Michaelo *
***************************************************************************/
but you probably have something like this
<?php <!--- some info --
/***************************************************************************
* def_tree_def.php
* ----------------
* begin : 12/11/2003
* copyright : Ptirhiik
* email : admin@rpgnet-fr.com
*
* version : 1.0.0 - 12/11/2003
*
* last update : 2006-04-17 11:33:07 (GMT) by Michaelo *
***************************************************************************/
remove all remnants of the comments and see if that solves your issue. Be sure to check the end of the file also.
If you did anything with qbar you may also have to do this for def_qbar.php.
If this continues even with the eXtreme styles settings i posted, you can turn off caching by editing includes/functions_categories_hierarchy.php
look for
define('CACHE_TREE', true);
define('CACHE_WORDS', true);
define('CACHE_THEMES', true);
and change to
define('CACHE_TREE', false);
define('CACHE_WORDS', false);
define('CACHE_THEMES', false);
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie