Installing Zend framework with WAMP server

后端 未结 4 662
耶瑟儿~
耶瑟儿~ 2020-12-13 20:33

I\'m trying to install Zend framework on a WAMP server but it is not working properly.

I downloaded the Zend framework and created the folder in C:\\wamp\\lib

4条回答
  •  隐瞒了意图╮
    2020-12-13 21:24

    Zend Installation:- Download Zend Framework

    • Go to Wamp/bin/php/ Create a folder Namely:- Zend_Framework

    • Copy All the Files and Folder of Downloaded Zend Framework.

    • Go to php.ini and find include_path Here you find:- include_path="c:\php\includes" and replace the text between "" from your directory C:\wamp\bin\php\zend_framework\library and Save File.

    • Now Go to Computer Property and Advanced System Setting and Advanced and Environment Variable and select path from system variables and click on Edit and add ; and paste your directory path hare C:\wamp\bin\php\zend_framework\bin

    • Open Command Prompt and go to the www directory inside wamp and then type zf create project Zendy

    • Now go to httpd.conf file and type there Tags.

    DocumentRoot "C:\www\Zendy\public" ServerName Zendy AllowOverride AuthConfig FileInfo Indexes Limit Options order Deny,Allow Allow from all

    • Save and Quit and go to windows -> System32 -> drivers-> etc-> hosts and Add here your project 127.0.0.1 localhost Zendy

    • Save and Quit and Restart Apache

    • Also set rewrite module via removing ; from php.ini file

提交回复
热议问题