|
Server IP : 127.0.0.1 / Your IP : 127.0.0.1 Web Server : Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3 System : Windows NT WIN-R7LTCC7BPLI 6.3 build 9200 (Windows Server 2012 R2 Datacenter Edition) i586 User : GerbangSIPAD ( 0) PHP Version : 5.6.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : C:/xampp5/webdav/../php/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
@ECHO OFF ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :: The phing build script for Windows based systems :: $Id: pear-phing.bat 1234 2011-07-26 08:32:15Z mrook $ ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ::---------------------------------------------------------------------------------- :: Please set following to PHP's CLI :: NOTE: In PHP 4.2.x the PHP-CLI used to be named php-cli.exe. :: PHP 4.3.x names it php.exe but stores it in a subdir called /cli/php.exe :: E.g. for PHP 4.2 C:\phpdev\php-4.2-Win32\php-cli.exe :: for PHP 4.3 C:\phpdev\php-4.3-Win32\cli\php.exe SET phpCli=C:\xampp5\php\.\php.exe ::--------------------------------------------------------------------------------- ::--------------------------------------------------------------------------------- :: Do not modify below this line!! (Unless you know what your doing :) ::--------------------------------------------------------------------------------- ::--------------------------------------------------------------------------------- :: Check existence of php.exe IF EXIST "%phpCli%" ( SET doNothing= ) ELSE GOTO :NoPhpCli "%phpCli%" -d html_errors=off -qC "C:\xampp5\php\pear\phing.php" %* GOTO :EOF :: :: php.exe not found error GOTO :PAUSE_END :NoPhpCli ECHO ** ERROR ***************************************************************** ECHO * Sorry, can't find the php.exe file. ECHO * You must edit this file (%~s0) to point to your php.exe (CLI) ECHO * [Currently set to %phpCli%] ECHO ************************************************************************** GOTO :PAUSE_END :PAUSE_END PAUSE