I am trying to configure the PHP path to my Zend Framework. I am very confused about how to do this. My Zend Framework is located in the following location on my server:
Amazon / ZendFramework-1.10.3-minimal
I am going to create a couple of php files in the amazon / directory that will require the Zend Framework. My inclusion path:
include("ZendFramework-1.10.3-minimal/library/Zend/Service/Amazon.php");
However, inside Amazon.php is a line
require_once 'Zend/Rest/Client.php';
... and then Client.php has more dependencies set this way, etc.
How can I configure my inclusion path so that Amazon.php and Client.php (etc.) can correctly reference the location of the Zend Framework?
thanks
source share