Skip to main content

Install Zend Framework in Wamp


Zend Framework is an open source, object oriented web application framework build for enterprises and high level web application development. Zend Framework(ZF) provided bunch of libraries which is helping developer in web development.

ZF is little hard to install and understand for beginner(freshers) specially who are working first time in any framework specially zend framework 2 installation.There is many website who are providing step to install zend framework in windows machine but personally they haven't put installation step very clearly to keep in mind for freshers.

Here is steps install zend framework in wamp (Windows) :

1. Download zend framework skeleton from https://github.com/zendframework/ZendSkeletonApplication
2. Unzip ZendSkeletonApplication-master and rename it zf (change folder name as your convenience).
3. Copy zf and paste it in wamp's www root directory in my case its c:\wamp\www

zend developer in india

4. Now download composer window installer from http://getcomposer.org/download/ and install it. Define composer path in Windows Environment Variable
5. Open windows command prompt and composer to verify installation.

zend developer in mumbai

6. Open windows command prompt and go to zf directory (C:\wamp\www\zf) and Update zf's composer.phar file using below command
C:\wamp\www\zf>php composer.phar self-update
Updating to version 15ad785ez55raj5kjnjkal749de47ca87d1408.
Downloading: 100%

7. Now its time to install zend framework, In window command prompt run below command to install zend framework using composer.phar
C:\wamp\www\zf>php composer.phar install 

Note : If you get CGI Enable error eg. "You must enable the openssl extension to download files via https" Then enable openssl from "C:\wamp\bin\php\php-5.4.3\php.ini" file because WAMP uses different php.ini files for CLI and Apache.

8. Restart all the wamp services and re-install it again.
C:\wamp\www\zf>php composer.phar install
Loading composer repositories with package information
Installing dependencies (including require-dev)
- Installing zendframework/zendframework (2.2.0)
Downloading: 100%

zendframework/zendframework suggests installing ext-intl (ext/intl for i18n features (included in default builds of PHP))
.....
.....

9. In the last make below changes in Apache httpd.conf file
<VirtualHost *:80>
DocumentRoot “C:\wamp\www\zf\public”
ServerName  zf-ezee-tutorial.com
<Directory C:\wamp\www\zf\public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost> 

open windows host file c:\windows\system32\drivers\etc\hosts
127.0.0.1       zf-ezee-tutorial.com

10. Run zf-ezee-tutorial.com in your browser.. Congratulation you have completed your zend framework install in WAMP.

friends..If you face any problem relation with install or zend framework web application development, Please fill free to put in comment or write mail us on info@ezeelive.com.

Comments

  1. Driving Training India guide all vehicle recovery techniques and focus on negative point of trainee. They work on all negativity and provide tricks so when trainee on road they handle situation and crosses km on road. Our expertise are well trained along the legal rights of regional Transport.

    ReplyDelete
  2. Hi,

    Very awesome post. I read it thrice and analyzed how it helps me to upgrade my knowledge quotient. Follow me at web development company in Kolkata

    Thanks,

    ReplyDelete
  3. Hi,

    Very awesome post. I read it thrice and analyzed how it helps me to upgrade my knowledge quotient. Follow me at web development company in Kolkata

    Thanks,

    ReplyDelete

Post a Comment

Popular posts from this blog

The rise of generative AI startups in India and their impact on businesses

Generative AI startups are reshaping India’s business landscape , driving automation, personalization, and efficiency across industries. With advancements in deep learning, NLP, and computer vision, Indian startups are leveraging Generative AI to create innovative solutions in content creation, healthcare, fintech, e-commerce, and more . 1. The Boom of Generative AI Startups in India Several AI-driven startups in India are developing cutting-edge generative AI models , backed by increasing investments and government support. The rise of Digital India, AI-for-All, and startup incubators has accelerated AI innovation. 2. Key Generative AI Startups in India Ezeelive Technologies Expertise : AI-powered chatbot development and generative AI automation. Impact : Enhances customer engagement, automation, and AI-driven interactions for businesses. Writesonic Expertise : AI-driven content generation for blogs, ads, and copywriting. Impact : Automates content creation for businesses, reducin...

NLP-Based Chatbot Development: A Comprehensive Guide

  Natural Language Processing (NLP)-based chatbots are transforming customer interactions, automating support services, and enhancing business operations across various industries. These chatbots leverage AI and machine learning to understand, interpret, and respond to human language effectively. This article provides a detailed overview of NLP-based chatbot development, its benefits, key components, and the development process. What is an NLP-Based Chatbot? An NLP-based chatbot is a conversational agent powered by Natural Language Processing, a subset of AI that enables machines to understand, process, and generate human language. Unlike rule-based chatbots that follow predefined scripts, NLP chatbots analyze user input, recognize intent, and provide meaningful responses dynamically. Benefits of NLP-Based Chatbots Enhanced User Experience: NLP chatbots provide human-like conversations, making interactions more engaging and efficient. 24/7 Availability: Unlike human agents, these...

API Development with PHP: Everything You Need to Know

Application Programming Interfaces (APIs) are essential for modern web applications, enabling seamless communication between different services and platforms. PHP, being a powerful and flexible server-side scripting language, provides various tools and frameworks for building robust APIs. This article covers everything you need to know about API development with PHP, from fundamentals to best practices. Understanding APIs An API acts as an intermediary between different software applications, allowing them to communicate effectively. APIs can be categorized into different types, such as: REST (Representational State Transfer): Uses HTTP methods (GET, POST, PUT, DELETE) for communication. SOAP (Simple Object Access Protocol): A protocol that relies on XML messaging. GraphQL: A query language developed by Facebook for APIs that provides more flexibility. Setting Up a PHP API Development Environment Before developing an API with PHP, you need to set up a development environment. The fo...