Return-Path: X-Original-To: apmail-httpd-users-archive@www.apache.org Delivered-To: apmail-httpd-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 28D2210EBA for ; Sun, 10 Nov 2013 21:37:25 +0000 (UTC) Received: (qmail 5461 invoked by uid 500); 10 Nov 2013 21:37:21 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 4604 invoked by uid 500); 10 Nov 2013 21:37:20 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 4596 invoked by uid 99); 10 Nov 2013 21:37:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Nov 2013 21:37:20 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of umbre.gachoong@gmail.com designates 209.85.212.51 as permitted sender) Received: from [209.85.212.51] (HELO mail-vb0-f51.google.com) (209.85.212.51) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Nov 2013 21:37:16 +0000 Received: by mail-vb0-f51.google.com with SMTP id w5so2737905vbf.38 for ; Sun, 10 Nov 2013 13:36:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=AK3raohvogirNfrFvSfQdbmp0x96nog2a8o6fG+PeCw=; b=gylGDIBznc++GD1VUoHdrmu8h8k2+7QA2p1mEdjcoQxxzRWSdOAD3Px2eX/GFcUip3 FLKo8sy4VCoUK8BkCK4TOqW3xTp4hG8oGap6iHrC6cZVMAN8vuFJJuntbXblQYX168O2 7J2+d9YDw5YgcmkajGrpmUEUyF7cNmXMSCp62r8c0c1qbSGM9jL/uwPghX6arHEHWHHq lJvYbHLMz88sUDO3BiFXgfaxRdRh3y+Shc/JszXi7699dTw6/muFfDuJn5fS9Kb9V7Q3 f+MT7eikGlTYLiPv13eNZBNDiMZjWPFzB+ngznX5IQULIEmME5lRscidc71cfHh6pPMn 1XZg== MIME-Version: 1.0 X-Received: by 10.58.118.84 with SMTP id kk20mr434836veb.26.1384119415643; Sun, 10 Nov 2013 13:36:55 -0800 (PST) Received: by 10.52.116.39 with HTTP; Sun, 10 Nov 2013 13:36:55 -0800 (PST) Date: Sun, 10 Nov 2013 13:36:55 -0800 Message-ID: From: Umbre Gachoong To: users@httpd.apache.org Content-Type: multipart/alternative; boundary=089e0122a08618a9e304ead96a32 X-Virus-Checked: Checked by ClamAV on apache.org Subject: [users@httpd] attempting to set zend server and xampp on the same machine --089e0122a08618a9e304ead96a32 Content-Type: text/plain; charset=ISO-8859-1 I am attempting to set up the zend server and xampp on the same machine but I am running into problems. I came across documentation on the zend site that said you cannot do this. However the folks over at apachefriends said you can. I have since discovered that I can run some of the zendframework examples within xampp by downloading the zendframework2 library and the skeleton app from git and I am doing this right now. However, I would like to know how to set them both up without having any conflicts both for the apache2 server and phpmyadmin. (One of the frustrating things is trying to load phpmyadmin in the deployment dialog by using the zpk tool in Zend). What I did in trying to set up both servers on windows 7 is as follows: First I have tried to set up the httpd conf files separately for each server, xampp running on port 8082 , and zend running on port 8088. At the time xampp would work, but zend server would not. This is after setting up the virtual host files separately for each server. Question 1: Where are the zend server error logs? Earlier, I was able to get both of them running configuring the xampp server httpd-conf file alone, however, I experienced problems with phpmyadmin even after configuring phpmyadmin on xampp to work on a different port other than 3306. Second question here: how to set up the two mysql phpmyadmin instances so they do not conflict with each other? Here is the xampp virtual host section: ##ServerAdmin webmaster@dummy-host.example.com DocumentRoot "C:/xampp/htdocs/" ServerName localhost 8082 ##ServerAlias www.dummy-host.example.com ##ErrorLog "logs/dummy-host.example.com-error.log" ##CustomLog "logs/dummy-host.example.com-access.log" common Here is the zend virtual host section: DocumentRoot "C:\Program Files (x86)\Zend\Apache2/htdocs" ServerName localhost:8088 I have looked at this httpd.apache.org/docs/2.2/vhosts/ and this http://survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hostsbut I am obviously doing something wrong here. I also have the java sdk running on this machine with tomcat and apache and I have no conflicts- too bad this is not the case for zend server and xampp Thanks umbre gachoong --089e0122a08618a9e304ead96a32 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

I am attempting to set up the zend server and xampp on the same = machine but I am running into problems.

I came across documentation on the zend site that said you cannot do thi= s. However the folks over at apachefriends said you can.

I have since discovered that I can run some of the zendframework=20 examples within xampp by downloading the zendframework2 library and the=20 skeleton app from git and I am doing this right now.

However, I would like to know how to set them both up without having=20 any conflicts both for the apache2 server and phpmyadmin. (One of the=20 frustrating things is trying to load phpmyadmin in the deployment dialog by using the zpk tool in Zend).

What I did in trying to set up both servers on windows 7 is as follows:<= /p>

First I have tried to set up the httpd conf files separately for each server, xampp running on port 8082 , and zend running on port 8088.

At the time xampp would work, but zend server would not. This is=20 after setting up the virtual host files separately for each server.

Question 1: Where are the zend server error logs?

Earlier, I was able to get both of them running configuring the xampp server httpd-conf file alone, however, I experienced problems with=20 phpmyadmin even after configuring phpmyadmin on xampp to work on a=20 different port other than 3306.

Second question here: how to set up the two mysql phpmyadmin instances s= o they do not conflict with each other?

Here is the xampp virtual host section:

##ServerAdmin webm= aster@dummy-host.example.com DocumentRoot "C:/xampp/htdocs/" ServerName localhost 8082 ##ServerAlias www.dummy-h= ost.example.com ##ErrorLog "logs/dummy-host.example.com-error.log" ##CustomLog "logs/dummy-host.example.com-access.log" common

Here is the zend virtual host section:

 DocumentRoot "C:\Program Files (x86)\Zend\Apache2/htdocs&q=
uot;
 ServerName localhost:8088

 </VirtualHost>

I have looked at this httpd.apache.org/docs/2.2/vhosts/ and this http://survivethedeepend.com/zendframewor= kbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts but I a= m obviously doing something wrong here.

I also have the java sdk running on this machine with tomcat and=20 apache and I have no conflicts- too bad this is not the case for zend=20 server and xampp

Thanks umbre gachoong

--089e0122a08618a9e304ead96a32--