I downloaded and extracted Zend Framework and it is inside a folder named ZendFramework-2.0.6.
Documentation says that I need to change php.ini - include_path line.
I hope – this is that line (unchanged): include_path = ".;C:\xampp\php\PEAR"
On this page, accepted answer says that i shouldn’t change this path (if I understand well).
Could someone clarify where I should place ZendFramework-2.0.6 folder, which path and how I need to change it ?
I’m using xampp 1.8.1.
I downloaded and extracted Zend Framework and it is inside a folder named ZendFramework-2.0.6
Share
It’s completely up to you but it is a common practice to place it into the
vendordirectory.However, I recommend using composer for installation as it automatically installs dependencies and configures your autoloading. It’s surely a good idea to start with the Skeleton Application, the README.md explains the installation process with composer.
You don’t need to change the
include_pathin this case.