Files
dolibarr/build/exe/doliwamp/startdoliwamp_manual_donotuse.bat.install
Laurent Destailleur c08b7def4f Fix maintenance script
2010-02-25 21:07:45 +00:00

17 lines
732 B
Plaintext

@echo off
REM -----------------------------------------------------
REM Run this script only if you have problem to run
REM Apache and Mysql as service. This can occurs when
REM Microsoft add bugs in service packs that prevents
REM servers ran as a service to launch.
REM -----------------------------------------------------
echo Running Apache as user process (this process does not return so we use "start")
start WAMPROOT\bin\apache\apacheWAMPAPACHEVERSION\bin\httpd.exe -f conf\httpd.conf
echo
echo Running Mysql as user process (this process does not return so we use "start")
start WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\bin\mysqld-nt.exe --defaults-file=WAMPROOT\bin\mysql\mysqlWAMPMYSQLVERSION\my.ini --console
pause