Notice: Zend_Loader::Zend_Loader::registerAutoload is deprecated as of 1.8.0 and will be removed with 2.0.0; use Zend_Loader_Autoloader
ZF’de bu uyariyi düzeltmek için,
bootstrap.php dosyasındaki
require_once(”Zend/Loader.php”);
Zend_Loader::registerAutoload();
satırlarını;
require_once ‘Zend/Loader/Autoloader.php’;
$loader = Zend_Loader_Autoloader::getInstance();
$loader->setFallbackAutoloader(true);
ile değiştirin.
sorununuz çözülmüş olacak.


Entries (RSS)