Zend_db_table setRowClass don't bind my custom class instead of Zend_Db_Table_Row?

The fatal error being thrown is due to the empty class being sent to the Zend_Loader. It looks like $db_table_class is resulting in an empty string, which would mean the $class_name argument is resulting as empty too. Check where you're calling Go_Factory::get() and make sure your string there is not empty Also, you should change this: if(!( class_exists( $db_table_class ) ) ){ to this: if (!class_exists($db_table_class)) {.

The fatal error being thrown is due to the empty class being sent to the Zend_Loader. It looks like $db_table_class is resulting in an empty string, which would mean the $class_name argument is resulting as empty too. Check where you're calling Go_Factory::get(); and make sure your string there is not empty.

Also, you should change this: if(!( class_exists( $db_table_class ) ) ){ to this: if (!class_exists($db_table_class)) {.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions