Skip to content

Commit 284b816

Browse files
committed
appveyor: PHP is downloaded using cURL
"03/mar/2018: We've upgraded the server bandwidth. This is however still not sufficient to handle all empty user agent connections. Please update the user agent in your scripts accordingly or contact us so we can discuss it."
1 parent 6daf855 commit 284b816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ install:
2121
# Install PHP
2222
- IF EXIST c:\php (SET PHP=0) ELSE (mkdir c:\php)
2323
- IF %PHP%==1 cd c:\php
24-
- IF %PHP%==1 appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-7.1.0-Win32-VC14-x64.zip
25-
- IF %PHP%==1 7z x php-7.1.0-Win32-VC14-x64.zip >nul
24+
- IF %PHP%==1 curl https://windows.php.net/downloads/releases/archives/php-7.1.0-Win32-VC14-x64.zip --output php.zip
25+
- IF %PHP%==1 7z x php.zip >nul
2626
- IF %PHP%==1 echo extension_dir=ext >> php.ini
2727
- IF %PHP%==1 echo extension=php_openssl.dll >> php.ini
2828
- IF %PHP%==1 appveyor DownloadFile https://github.com/Microsoft/msphpsql/releases/download/4.1.4-Windows/7.1.zip

0 commit comments

Comments
 (0)