URL: //index.php
REQUEST URI: /nota/vacaciones-paquetes-accesibles
Get: m = notas | action = display_nota | url = /nota/vacaciones-paquetes-accesibles |

PDOException. SQLSTATE[HY000] [1040] Too many connections

# 0 /var/www/html/lanacion/lugaresdeviaje.com/framework/core/dbmanager.php -> line 20 Class:PDO-> Type->-> Function __construct
# 1 /var/www/html/lanacion/lugaresdeviaje.com/framework/core/module.php -> line 10 Class:DBManager-> Type->-> Function __construct
# 2 /var/www/html/lanacion/lugaresdeviaje.com/framework/core/module.php -> line 30 Class:Module-> Type::-> Function initDB
# 3 /var/www/html/lanacion/lugaresdeviaje.com/framework/modules/destinos/classes/destino.php -> line 786 Class:Module-> Type::-> Function select
# 4 /var/www/html/lanacion/lugaresdeviaje.com/framework/modules/skins/classes/skincontroller.php -> line 53 Class:Destino-> Type::-> Function getLocations
# 5 /var/www/html/lanacion/lugaresdeviaje.com/framework/modules/notas/classes/notacontroller.php -> line 510 Class:SkinController-> Type::-> Function loadInterface
# 6 Class:NotaController-> Type::-> Function display_nota
# 7 /var/www/html/lanacion/lugaresdeviaje.com/index.php -> line 25 -> Function call_user_func

The error started here: /var/www/html/lanacion/lugaresdeviaje.com/index.php
16	if(!empty($mod)){
17		$modDir = PathManager::GetFrameworkPath() . '/modules/' . $mod;
18		if(is_dir($modDir)){
19			$conf = ConfigurationManager::GetModuleConfiguration($mod);
20	
21			// Get action to execute
22			$action = Util::getvalue('action');
23			$controller = $conf['controller'];
24			if (is_callable(array((string)$controller,$action))){
25 call_user_func( array((string)$controller,$action ) );
26 }else{ 27 // If the action received does not exists call default view 28 call_user_func(array((string)$controller,'display_default') ); 29 } 30 die(); 31 } 32 } 33 34 ?>