Any plz tell me why am I getting this error ?? Firstly, my internet connection was good today, itβs not good, so I get this error. How can I fix this idea plz ??
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000] [2002] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. ' in D:\SVN data\WebClient_PHP\trunk\p\library\Zend\Db\Adapter\Pdo\Abstract.php:129 Stack trace:
this is my config.ini
[general] db.adapter = PDO_MYSQL db.params.host = 192.168.0.233 db.params.username = root db.params.password = my_password db.params.dbname = "mydatabasename"
some code from my index.php
$config = new Zend_Config_Ini(ROOT_DIR.'/application/config.ini', 'general'); $DB = Zend_Db::factory($config->db); Zend_Db_Table::setDefaultAdapter($DB);
source share