How to install zend framework 1.12.9 in xampp?

Hy I'm new to the zend framework and want to install it, please tell me how to install in window 7 with the xampp server step by step?

+6
source share
1 answer

• Go to “My Computer> Properties> Advanced tab>" Environment Variables. "The" Environment Variables "window will open," View SYSTEM Variables ", scroll down to" PATH ">" double-click PATH. Add the following line to end PATH C: \ xampp \ php Zend Framework • Extract the Zend Framework files to C: \ xampp \ php \ zf. • Edit the php.ini file. You will find it on C: \ xampp \ php \ php.ini. Find the line, which says include_path and will edit the line: Windows: "\ path1; \ path2" include_path = "C: \ xampp \ php \ zf \ library" • Open the shell and cd in the folder C: \ xampp \ htdocs and enter the following: C: \ xampp \ htdocs> C: \ xampp \ php \ ZendFramework \ bin \ zf.bat creates s testproject project (project name)

• Now copy the Zend folder from the ZendFramework folder (C: \ xampp \ php \ zf / library / Zend) to the library folder of your new test project (C: \ xampp \ htdocs \ testproject \ library \ Zend

+7
source

Source: https://habr.com/ru/post/979312/


All Articles