We are neither on the Backend nor the Frontend !

Unable to select database. Unknown database 'test-external-www-jl125-com'

File:Line
Function
Code Arguments
core/AdunDatabase.class.php:411
00407    // Lets talk UTF-8
00408    mysql_query("SET NAMES 'utf8'", $link);
00409    
00410    if(!mysql_select_db(AdunConfiguration::$database_db, $link))
00411      throw new AdunDatabaseException("Unable to select database. ".mysql_error());
00412
00413  }
00414
none/unknown
core/DataObject.class.php:272
query
00268      SELECT ".$objectDescription->GetSqlSelect($columns)." 
00269      FROM ".$objectDescription->TableName()." 
00270      ".$sqlAdd;
00271
00272    $qry = query($sql);
00273    if($qry->ErrorNo != SqlError::NoError)
00274    {
00275      throw new AdunDatabaseException("Error in GetCollection SELECT: ".$qry->Error, $qry);
Array
(
  [0] => 
			SELECT `Modulename`,`Moduletype`,`Status`,`created_on`,`updated_on` 
			FROM CORE_ModuleControl 
			WHERE Status LIKE "enabled"
)
modules/Backend/Backend.class.php:49
DataObject::GetCollection
00045  */
00046    public function OnModuleAndDependenciesLoaded()
00047    {
00048      // Load the other modules
00049    $modules = ModuleControl::GetCollection('ModuleControl', 'WHERE Status LIKE "enabled"');
00050    
00051    /*
00052    $sql = "SELECT *
Array
(
  [0] => ModuleControl
  [1] => WHERE Status LIKE "enabled"
)
core/AdunInstallation.class.php:201
Backend::OnModuleAndDependenciesLoaded
00197    {
00198      $this->LoadModule($dep, true);
00199    }
00200    // This is called now that the dependencies have been loaded.
00201    $moduleobject->OnModuleAndDependenciesLoaded();
00202  }
00203  
00204  public function UnloadModule($modulename)
Array
(
)
core/AdunInstallation.class.php:104
AdunInstallation::LoadModule
00100  {
00101    // Load Adun Installation Settings from database
00102    
00103    // Just load the backend module when initiating the backend, it will load the rest.
00104    $this->LoadModule("Backend");
00105  }
00106
00107  /**
Array
(
  [0] => Backend
)
core/AdunInstallation.class.php:61
AdunInstallation::InitBackend
00057  {
00058    if(AdunInstallation::$adun === null)
00059    {
00060      self::$adun = new AdunInstallation();
00061      self::$adun->InitBackend();
00062    }
00063    return AdunInstallation::$adun;
00064  }
Array
(
)
backend/index.php:28
AdunInstallation::Backend
00024}
00025
00026// Create the ADUN backend
00027require_once("classes/AdunBackend.class.php");
00028$ADUN_BACKEND = new AdunBackend(AdunInstallation::Backend());
00029
00030if(count(User::GetCollection('User')) == 0)
00031{
Array
(
)
/var/www/external_testing/JLauritzen/www.jl125.com/backend/index.php:2
require_once
000-2000-10000000001<?php
00002require_once("../adun/backend/index.php");
000030000400005
Array
(
  [0] => /var/www/external_testing/JLauritzen/www.jl125.com/adun/backend/index.php
)