This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 1. Download Composer into Cmder vendor directory | |
:: 2. Add the following line to your user_alias.cmd file within Cmder | |
:: 3. Enjoy your fully portable Composer installation | |
composer=php "%CMDER_ROOT%\vendor\composer-1.8.4\composer.phar" $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//If output buffer flushing does not work, web-search for reasons your php/webserver setup may need to be adjusted | |
header('X-Accel-Buffering: no'); | |
if (ob_get_level() == 0) ob_start(); | |
//create javascript progress bar | |
echo "<html> | |
<head> | |
<script type='text/javascript'> | |
function updateProgress(perc) { |