so, I'm trying to get Zend Framework running, which has terribly vague instructions.
It simply says, put the Zend folder in the directory, and add it to your include_path in php.ini.
So, this is my include path:
include_path = ".:/usr/lib/php:/usr/local/lib/php:/home/tuner/public_html/market/Zend_1.12.3/library"
This is the section that should be including Zend, I have double checked the path:
/home/tuner/public_html/market/Zend_1.12.3/library
However, when I try to include a Zend class, I am still getting errors as though it is not included properly.
This is what is causing the error:
$locale = new Zend_Locale('en_CA');
Zend_Registry::set('Zend_Locale', $locale);
What am I doing wrong when including the framework?