Categories: Php

How to Configure Zend Framework in Xampp

The Zend Framework is most popular framework and zend is focused on web 2.0 style applications. Zend has great extensive support and active user base, It has extensive web services support, and consuming widely available APIs from leading vendors like Google, Amazon, Yahoo!, Flickr.Here i am describing how to set up zendframework on windows xampp.

Step 1:
Install xampp server on your local drive like. c:/xampp if you have installed xampp then leave first step.

Step 2:
Download the latest ZendFramework and extract it.

Step 3:
open Zendframework folder and open subfolder “library” and here you will find a folder named “Zend”, copy it and past it to the location “c:/xampp/php/”, within “php” folder.

Step 4:
Edit php.ini configuration file “c:/xampp/php/php.ini” , open it and find “include_path” for windows include_path = “.;c:\xampp\php\Zend”.

Related Post

Step 5:
Open console terminal, and go “c:\xampp\htdocs>” and type the following command
“c:\xampp\htdocs>c:\xampp\php\zf.dat create project zendtest”. if no error message see. your project has been created.

Step 6:
Now check your “htdocs >> zendtest”. where all the necessary folders and files.

Step 7:
Open this url in browser “http://localhost/zendtest/public”

You will get your zend project homepage.

View Comments

  • I think your are not on right cmd line php/bin path.
    the php exe exist on below path.

    C://wamp/php/bin
    if wamp install c drive.

    • I think Your environment variable is not set.
      in command line run php -v, if u get result with php version then its configured otherwise not.

  • I try this with windows 7 and xampp it show error
    c:\xampp\php\zf.bat is not recognised as an external or internal command.

Recent Posts

What is the Purpose of php_eol in PHP?

in this quick PHP tutorial, We'll discuss php_eol with examples. PHP_EOL is a predefined constant in PHP and represents an… Read More

2 months ago

Laravel Table Relationship Methods With Example

This Laravel tutorial helps to understand table Relationships using Elequonte ORM. We'll explore laravel table Relationships usage and best practices… Read More

2 months ago

Exploring the Power of Laravel Eloquent Join?

We'll explore different join methods of Laravel eloquent with examples. The join helps to fetch the data from multiple database… Read More

2 months ago

Quick and Easy Installation of Laravel Valet

in this Laravel tutorial, We'll explore valet, which is a development environment for macOS minimalists. It's a lightweight Laravel development… Read More

3 months ago

What is Laravel Soft Delete and How Does it Work?

I'll go through how to use soft delete in Laravel 10 in this post. The soft deletes are a method… Read More

3 months ago

Common Practices for Laravel Blade Template

in this Laravel tutorial, I will explore common practices for using the Laravel Blade template with examples. Blade is a… Read More

3 months ago

Categories