Blew up Windows Install - how do you remove all

Problems with the Windows version of XAMPP, questions, comments, and anything related.

Blew up Windows Install - how do you remove all

Postby nebraskadad » 05. June 2006 20:14

Sorry guys my one semester of College German is was thirty years ago..

I used the Windows installer and tried to install as services, I blew something other with another application.. I need an idea of how to remove all the XAMPP stuff manually and try it again..

Used to using the Linux version but the client has a Windows 2003 box, have to play by their rules.. Seems when I try to activate MYSQL and APACHE via the Service panel it thinks there is an active Apache and MYSQL port running so it won't start it.. Any thoughts appreciated..

Rex Mueller
Educational Service Unit #3
Omaha NE USA
nebraskadad
 
Posts: 4
Joined: 05. June 2006 20:07

Postby taustin » 06. June 2006 00:46

It sounds like there may be other server packages (probably Microsoft's) already running. Open a command prompt and use netstat to figure out what.
taustin
 
Posts: 150
Joined: 24. September 2004 00:23
Location: Huntington Beach CA

Got it fixed..

Postby nebraskadad » 06. June 2006 17:51

taustin wrote:It sounds like there may be other server packages (probably Microsoft's) already running. Open a command prompt and use netstat to figure out what.


the service panel doesn't give off an error. I have to start apache from the batch file to capture i had a config error in a httpd-vhosts.conf file..

On Windows how is the path referenced for virtuals? does it require "Quoted full Path? to the documentroot of the virtual? "
nebraskadad
 
Posts: 4
Joined: 05. June 2006 20:07

Postby WorldDrknss » 08. June 2006 20:14

you only need to quote paths that have spaces in them.
For my VirtualHost I use something similar to bellow:
You can find a VirtualHost Generator at my website.


Code: Select all
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
#
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any block.
#

<VirtualHost *:80>
ServerName test1.com
ServerAdmin test@test1.com
ServerAlias www.test1.com
DocumentRoot /srv/www/test1
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/srv/www/test1">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory "/srv/www/test1">
Options Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AddHandler server-parsed .html .htm .shtml .shtm
</Directory>
HostnameLookups Off
ErrorLog /srv/www/test1/logs/error_log
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /srv/www/test1/logs/access_log combined
ServerSignature On
ScriptAlias /cgi-bin/ "/srv/www/test1/cgi-bin/"
<Directory "/srv/www/test1/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
DirectoryIndex index.php
ErrorDocument 400 /error_pages/400.html
ErrorDocument 403 /error_pages/403.html
ErrorDocument 404 /error_pages/404.html
AccessFileName .htaccess
AddHandler cgi-script .cgi
<IfModule mod_negotiation.so>
<IfModule mod_include.so>
Alias /error/ "/srv/www/test1/error/"
<Directory "/srv/www/test1/error">
AllowOverride None
Options IncludesNoExec
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en
</Directory>
</IfModule>
</IfModule>
</VirtualHost>

<VirtualHost *:80>
ServerName test2.com
ServerAdmin test@test2.com
ServerAlias www.test2.com
DocumentRoot /srv/www/test2
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory "/srv/www/test2">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<Directory "/srv/www/test2">
Options Includes
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
AddHandler server-parsed .html .htm .shtml .shtm
</Directory>
HostnameLookups Off
ErrorLog /srv/www/test2/logs/error_log
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /srv/www/test2/logs/access_log combined
ServerSignature On
ScriptAlias /cgi-bin/ "/srv/www/test2/cgi-bin/"
<Directory "/srv/www/test2/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
DirectoryIndex index.php
ErrorDocument 400 /error_pages/400.html
ErrorDocument 403 /error_pages/403.html
ErrorDocument 404 /error_pages/404.html
AccessFileName .htaccess
AddHandler cgi-script .cgi
<IfModule mod_negotiation.so>
<IfModule mod_include.so>
Alias /error/ "/srv/www/test2/error/"
<Directory "/srv/www/test2/error">
AllowOverride None
Options IncludesNoExec
AddHandler type-map var
Order allow,deny
Allow from all
LanguagePriority en
</Directory>
</IfModule>
</IfModule>
</VirtualHost>

<VirtualHost *:80>
ServerName localhost
DocumentRoot /xampp/xampp/htdocs
</VirtualHost>
http://wdguides.org - XAMPP Tutorials & MORE!!!!
User avatar
WorldDrknss
 
Posts: 292
Joined: 17. September 2005 13:40


Return to XAMPP for Windows

Who is online

Users browsing this forum: No registered users and 168 guests