home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / setup_xampp.bat < prev    next >
DOS Batch File  |  2007-12-20  |  363b  |  23 lines

  1. @ECHO OFF
  2.  
  3. if "%1" == "sfx" (
  4.     cd xampp
  5. )
  6. if exist php\php.exe GOTO Normal
  7. if not exist php\php.exe GOTO Abort
  8.  
  9. :Abort
  10. echo Sorry ... cannot find php cli!
  11. echo Must abort these process!
  12. pause
  13. GOTO END
  14.  
  15. :Normal
  16. set PHP_BIN=php\php.exe
  17. set CONFIG_PHP=install\install.php
  18. %PHP_BIN% -n -d output_buffering=0 %CONFIG_PHP%
  19. GOTO END
  20.  
  21. :END
  22. pause
  23.