We are neither on the Backend nor the Frontend !

Unable to select database. Unknown database 'test-external-sony-customer-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:275
query
00271      SELECT ".$objectDescription->GetSqlSelect($columns)." 
00272      FROM ".$objectDescription->TableName()." 
00273      ".$sqlAdd;
00274
00275    $qry = query($sql);
00276    if($qry->ErrorNo != SqlError::NoError)
00277    {
00278      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:51
DataObject::GetCollection
00047  */
00048    public function OnModuleAndDependenciesLoaded()
00049    {
00050      // Load the other modules
00051    $modules = ModuleControl::GetCollection('ModuleControl', 'WHERE Status LIKE "enabled"');
00052    
00053    /*
00054    $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:18
AdunInstallation::Backend
00014ExceptionFormatter::RegisterUncaughtHandlers();
00015
00016// Create the ADUN backend
00017require_once("classes/AdunBackend.class.php");
00018$ADUN_BACKEND = new AdunBackend(AdunInstallation::Backend());
00019
00020
00021
Array
(
)
/var/www/external_testing/Netpeople/sony.customer.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/Netpeople/sony.customer.netpeople.com/adun/backend/index.php
)