Thread: YAFTC Beta
View Single Post
  #3  
Old 26th March 2009, 22:18
Krypto Krypto is offline
Retired from BVList
 
Join Date: Jan 2008
P2P
Posts: 510
Default
I got that too, the way to solve it is to open backend/functions.php

Change
PHP Code:
require_once("config.php");
require_once(
"cleanup.php");
require_once(
"extras.php"); 
To

PHP Code:
require_once("backend/config.php");
require_once(
"backend/cleanup.php");
require_once(
"backend/extras.php"); 
Reply With Quote