configure : install apache php jsp mysql tomcat windows xp

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

configure : install apache php jsp mysql tomcat windows xp

Post by pelegk2 »

does any 1 know of manualls hat teach how to configure :
install apache php jsp mysql tomcat windows xp
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

i have them all installed, just folling the INSTALL.TXT and README.TXT files in the packages
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

how can i make iis and apache 2 run on winxp?

Post by pelegk2 »

how can i make iis and apache 2 run on winxp?
is it possible?then how?
thnaks i nadvance
peleg
User avatar
mudkicker
Forum Contributor
Posts: 479
Joined: Wed Jul 09, 2003 6:11 pm
Location: Istanbul, TR
Contact:

Post by mudkicker »

yes it is, just change the port in apache(httpd.conf) or iis..
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

I have IIS on port 80, and apache on 8080.

httpd.conf -> Listen 8080
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

Post by pelegk2 »

can i call the apache on another name then localhost?then how?
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

can you read the manual? :P
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

Post by pelegk2 »

i did and there is param called servername
i changed it and it didnt help
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

a snipped from my httpd.conf

Code: Select all

Listen 8080
ServerName localhost:8080
UseCanonicalName Off

NameVirtualhost *:8080

<VirtualHost *:8080>
  ServerName localhost
  DocumentRoot "C:/websites/localhost"
  <Directory "C:/websites/localhost">
    AllowOverride All
    Options All
  </Directory>
</Virtualhost>

<VirtualHost *:8080>
  ServerName test
  DocumentRoot "C:/websites/test"
  <Directory "C:/websites/test">
    AllowOverride All
    Options All
  </Directory>
</Virtualhost>
User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

Post by pelegk2 »

nice more Q :
can i make the apache and the tomcat to listen to the same port?
so if i reffer for example
localhost/1.php
or
localhost/1.jsp
i will recive a respose
thanks in advance
peleg
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

User avatar
pelegk2
Forum Regular
Posts: 633
Joined: Thu Nov 27, 2003 5:02 am
Location: Israel - the best place to live in after heaven
Contact:

Post by pelegk2 »

yesp thanks alot
nut the way where can i readdocumentation for begginers about how to congfigure thing on the httpd.conf file
Post Reply