Ja, Tschuldschung, früher hieß die Windows-Variante mal WAMP (für Linux LAMP).
Im Root-Verzeichnis von XAMP liegen auch einige Batchdateien.
Zitat von
apache_start.bat:
@echo off
echo Diese Eingabeforderung nicht waehrend des Running beenden
echo Bitte erst bei einem gewollten Shutdown schliessen
echo Please close this command only for Shutdown
echo Apache 2 is starting ...
apache\bin\httpd.exe
if errorlevel 255 goto finish
if errorlevel 1 goto error
goto finish
:error
echo.
echo Apache konnte nicht gestartet werden
echo Apache could not be started
pause
:finish
Zitat von
apache_stop.bat:
@echo off
apache\bin\pv -f -k httpd.exe -q
if not exist apache\logs\httpd.pid GOTO exit
del apache\logs\httpd.pid
:exit
starten:
apache\bin\httpd.exe
.
stoppen:
apache\bin\pv -f -k httpd.exe -q
.
vielleicht reicht auch
apache\bin\httpd.exe -q
zum Stoppen