octobercms / install

Installation wizard for October CMS
122 stars 91 forks source link

Installation behind HTTP proxy (inc. authentication) #41

Closed taviroquai closed 8 years ago

taviroquai commented 10 years ago

Basically, this issue is to request changes to allow installation behind an HTTP proxy (inc. authentication).

Quick fix was to add PROXY params to cURL (method prepareServerRequest).

Example:

    // Add proxy params
    curl_setopt($curl, CURLOPT_PROXYTYPE, 'HTTP');
    curl_setopt($curl, CURLOPT_PROXY, 'proxy:8080');
    curl_setopt($curl, CURLOPT_PROXYUSERPWD, 'user:password');
Shuunen commented 9 years ago

thx @taviroquai , works nice

daftspunk commented 9 years ago

Relates to #27

daftspunk commented 8 years ago

If this is still an issue, please log it in the main October repo.