Sorry if this is in the wrong section but when i click on the admin panel button it takes me to .../admin.php but it comes up as a white page.
the admin.php code is:
Any ideas of why this is happening.
the admin.php code is:
Code:
<?php
$startTime = microtime(true);
$fileDir = dirname(__FILE__);
require($fileDir . '/library/XenForo/Autoloader.php');
XenForo_Autoloader::getInstance()->setupAutoloader($fileDir . '/library');
XenForo_Application::initialize($fileDir . '/library', $fileDir);
XenForo_Application::set('page_start_time', $startTime);
$fc = new XenForo_FrontController(new XenForo_Dependencies_Admin());
$fc->run();
Any ideas of why this is happening.