While upgrading your version may cause the above warning.
To get rid of it replace the following code
require_once “Zend/Loader.php”; Zend_Loader::registerAutoload();
With the following one.
require_once “Zend/Loader/Autoloader.php”; $autoloader = Zend_Loader_Autoloader::getInstance();
Cheers

thanks for this code