I have fixed this problem of a blank page
Open the file classifieds.php
Find
PHP Code:
define('CDIR', getcwd());
require_once(CDIR . '/includes/init.php');
Before this add
PHP Code:
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_editor.php');
require_once('./includes/functions_wysiwyg.php');
require_once('./includes/class_bbcode.php');
require_once(DIR .'/includes/functions_user.php');
This should fix the problem of the blank page showing up.