Ich hab mir xampplite geholt. Wenn ich jedoch setup_xampp.bat ausführe kommt immer die Fehlermeldung: Ungültiges Verzeichnis Befehl oder Dateiname nicht gefunden. Liegt das an der Umgebungsvariable ( Mein Autoexec.bat: ?mode con codepage prepare=((850) C:\WINDOWS.000\COMMAND\ega.cpi)
?mode con codepage select=850
?keyb gr,,C:\WINDOWS.000\COMMAND\keyboard.sys
?path c:\windows;c:\windows\command;c:\;c:\xampplite;c:\xampplite\php )
Xampplite liegt auch korrekt entpackt auf C:\...
Wisst ihr worans liegt?
setup_xampp.bat:
?mode con codepage select=850
?keyb gr,,C:\WINDOWS.000\COMMAND\keyboard.sys
?path c:\windows;c:\windows\command;c:\;c:\xampplite;c:\xampplite\php )
Xampplite liegt auch korrekt entpackt auf C:\...
Wisst ihr worans liegt?
setup_xampp.bat:
@ECHO OFF
if "%1" == "sfx" (
cd xampplite
)
if exist php\php.exe GOTO Normal
if not exist php\php.exe GOTO Abort
:Abort
echo Sorry ... cannot find php cli!
echo Must abort these process!
pause
GOTO END
:Normal
set PHP_BIN=php\php.exe
set CONFIG_PHP=install\install.php
%PHP_BIN% -n -d output_buffering=0 %CONFIG_PHP%
GOTO END
:END
pause