background preloader

Installation

Facebook Twitter

Setting up virtual hosts with Apache on Windows XP « webjawns.com. In this tutorial, we will discuss how to setup virtual hosts for your development environment (or production, if you wish) on Windows XP. This will allow you to use URLs such as instead of which is much more realistic. First, document where your source code is. This will be our DocumentRoot setting.Go to the Start menu and click Run. Type notepad “C:Windowssystem32driversetchosts” and press enter. Accessing Windows XP's hosts fileAt the end of the file, type 127.0.0.1, tab or space, then the virtual host name. Using the hostname mywebsite, the hosts file would look something like this: 127.0.0.1 localhost 127.0.0.1 mywebsiteNext, open your Apache configuration file (httpd.conf).

This will be located in one of a few different places. Results of ipconfig /flushdnsOpen in your favorite browser. If you have any trouble, feel free to comment and we’ll do our best to help out. How to setup Zend Framework with Apache on Windows - Thiranjith's Blog | Thiranjith's Blog. Zend Web Framework is one of the most popular PHP frameworks out there to ease the construction of web sites. Though, there are lots of online tutorials on how to set it up using Apache, details are bit sketchy on getting everything to work on Windows machines.

I was following several online tutorials, including the official tutorial from the Zend website itself, but kept running into various problems associated with getting Apache and Zend to work properly. I am sure I am not alone with these issues, and compiled a small guide to show how to get Zend framework working on your windows machine (tested on XP, Vista and Windows 7) using Apache web server.

I’ve broken down the steps into 3 parts: Installing the Zend frameworkSetting up a simple Zend/PHP projectTroubleshooting Installing the Zend framework Minimum system requirements for Zend framework includes PHP and a web server (e.g. Setting up a simple Zend/PHP project 1. Zf.sh create project zend-helloworld 4. Troubleshooting: Helpful links.

How to install Zend framework using Wamp 2.0 on Windows xp | Lameta Web design, web development, Drupal theme design. Zend framework installation Reference website Why do I need this documentation? I tried to follow the step the above documentation. That seems not suitable for beginner so I am doing this document. I hope this is useful. Here is the reciepe Step 1. download some materials Free Download WampServer 2.0i [07/11/09] Download ( www.wampserver.com/ ) Includes : - Apache 2.2.11 - MySQL 5.1.36 - PHP 5.3.0 Zend Framework 1.10.3 Download (framework.zend.com/download/current/) Download quick start kit Step 2. You can copy wherever you want In my case, I copied the following folder E:\wamp\library\zendframework Step3. I copied to under Step 4.

Step 4. The Beta Zend Framework Pear Channel. Eclipse PHP Developer Tools (PDT) Open Source PHP Development Tools The Eclipse PHP Development Tools project (PDT) is the #1 open source PHP Integrated Development Environment (IDE). It has rapidly grown to be one of the most highly downloaded Eclipse projects. PDT provides an entry level IDE for with the basic code editing capabilities you need to get started with PHP development. PDT provides: Basic PHP Editing with syntax highlighting and coloring PHP code completion, code templates, auto-formatting Basic JavaScript Editing with syntax highlighting and coloring Basic HTML Editing with syntax highlighting and coloring Local and Remote Debugging support for XDebug and the Zend Debugger PDT is the foundation of Zend Studio the #1 commercial PHP IDE.

Getting started with PHP and PDT The simplest way to get started with PDT is to download a "all-in-one" build from the PDT download page. Other installation techniques If you want you can also install PDT from plug-ins in the PDT the Eclipse update site. What Next? Server Community Edition Online Help - DEB Installation. Installing Apache / PHP / MySQL / phpMyAdmin / Eclipse Zend PDT / Zend Framework: on XP Gaming machine | MySQLTalk.com. Since I’m creating a new install of a development environment on an XP gaming machine, I thought I’d just document the process for posterity. Make sure you are running at least Service Pack 2.Here is the version I’m installing: won’t repeat details that are on other websites already, so just follow the instructions from here, then I’ll tell you what I did differentlyInstead of adding “php5apache2.dll” to “LoadModule php5_module”, since we are on Apache 2.2, point it to filename “php5apache2_2.dll”.Install Webyog.

Make sure to search for the community edition. While phpMyAdmin is great, it can be buggy sometimes and you should really develop with a proper client.Download the all in one Eclipse Zend PDT package.Download Zend Framework.Install phpMyAdmin. When you configure it, you may get complaints about mcrypt, bzip2, timezone and zip not being enabled. Like this: Like Loading... Configuring Your URL Rewriter - Contributors. <h1>Configuring Your URL Rewriter</h1> <h2>Apache HTTP Server</h2> <p>All examples that follow use mod_rewrite, an official module that comes bundled with Apache.

To use it, mod_rewrite must either be included at compile time or enabled as a Dynamic Shared Object (DSO). Please consult the <a href=" documentation</a> for your version for more information. </p> <h3>Rewriting with VirtualHost</h3> <p>Here is a very basic virtual host definition. <ac:macro ac:name="noformat"><ac:plain-text-body><! RewriteEngine off <Location /> RewriteEngine on RewriteCond % Unknown macro: {REQUEST_FILENAME} ! ! <p>Note the forward slash preceeding 'index.php'. <h3>Rewriting with .htaccess</h3> <p><strong>Routing requests</strong></p> <p>Again, these rules direct all requests to index.php, except specified file types:</p> <p><strong>Handling file and directory exceptions</strong></p> <ac:macro ac:name="noformat"><ac:plain-text-body><!

! <h2>Microsoft IIS</h2> <h3>Rewriting with IIRF</h3> How to install Zend Framework in Ubuntu. Zend Framework(ZF) is an open source, object-oriented web application framework implemented in PHP 5. Zend Framework was conceived in early 2005 while many new frameworks, such as Ruby on Rails and the Spring Framework, were gaining popularity in the web development community. ZF was publicly announced at the first Zend Conference in October 2005.

In this article, we will tell you how to install the Zend Framework 1.10.2 in Ubuntu. For Ubuntu 11.10, 11.04, 10.10, 10.04, 9.10, 9.04 Open Terminal and execute the following commands: sudo add-apt-repository ppa:zend-framework/ppasudo apt-get updatesudo apt-get install zend-framework For Ubuntu 8.04, 8.10 and 9.04 Open the Terminal and execute the command: sudo gedit /etc/apt/sources.list Then, add the lines given below and save and close. deb <version> main deb-src <version> main After that is done, execute the following commands in the Terminal: