We are neither on the Backend nor the Frontend !

Unable to select database. Unknown database 'test-external-danfoss-customers-netpeople-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:328
query
00324      SELECT COUNT(*) AS c 
00325      FROM ".$objectDescription->TableName()."
00326      ".$sqlAdd;
00327
00328    $qry = query($sql);
00329    if($qry->ErrorNo != SqlError::NoError)
00330    {
00331      throw new AdunDatabaseException("Error in GetCollectionSize SELECT: ".$sql, $qry);
Array
(
  [0] => 
			SELECT COUNT(*) AS c 
			FROM CountryModule_Country
			
)
modules/CountryModule/CountryModule.class.php:66
DataObject::GetCollectionSize
00062   * them if we need to.
00063   */
00064  public function OnModuleAndDependenciesLoaded()
00065  {
00066    if(DataObject::GetCollectionSize("Country") == 0){
00067      $this->UpdateCountryList();
00068    }
00069  }
Array
(
  [0] => Country
)
core/AdunInstallation.class.php:201
CountryModule::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:198
AdunInstallation::LoadModule
00194    // And sort the modules for niceness
00195    ksort($this->modules);
00196    foreach($moduleobject->GetDependencies() as $dep)
00197    {
00198      $this->LoadModule($dep, true);
00199    }
00200    // This is called now that the dependencies have been loaded.
00201    $moduleobject->OnModuleAndDependenciesLoaded();
Array
(
  [0] => CountryModule
  [1] => 1
)
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/Danfoss/danfoss.customers.netpeople.com/backend/index.php:2
require_once
000-2000-10000000001<?php
00002require_once("../adun/backend/index.php");
000030000400005
Array
(
  [0] => /var/www/external_testing/Danfoss/danfoss.customers.netpeople.com/adun/backend/index.php
)