burning board error please help!

jamieboy1234

Reputable
Joined
Nov 24, 2012
Messages
221
Reaction score
0
FP$
6
Hello im getting this error Warning: require_once(/home/content/25/10453825/html/lib/system/WCF.class.php) [function.require-once]: failed to open stream: No such file or directory in /home/content/25/10453825/html/global.php on line 10

Fatal error: require_once() [function.require]: Failed opening required '/home/content/25/10453825/html/lib/system/WCF.class.php' (include_path='.:/usr/local/php5_3/lib/php') in /home/content/25/10453825/html/global.php on line 10
I'm running burning board does anyone know whats wrong ?

-- 06 Apr 2013, 12:52 --

someone help please<br /><br />-- 06 Apr 2013, 13:06 --<br /><br />http://knexable.com/
 
It's now showing a Parse error;

Post the first 15 lines of 'global.php' and I'll assist you.
 
im getting this error now Parse error: syntax error, unexpected T_STRING in /home/content/25/10453825/html/global.php on line 7
<?php
/**
* @author Marcel Werk
* @copyright 2001-2007 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
*/
define('WCF_DIR' dirname(__FILE__).'/')

_path='.:/usr/local/php5_3/lib/php')
 
Change:

define('WCF_DIR' dirname(__FILE__).'/')

To:

define('WCF_DIR' dirname(__FILE__).'/');
 
done that still won't work Parse error: syntax error, unexpected T_STRING in /home/content/25/10453825/html/global.php on line 7
 
Try changing:

_path='.:/usr/local/php5_3/lib/php')

To:

_path='.:/usr/local/php5_3/lib/php');

Also.
 
Back
Top Bottom