mirror of
https://github.com/mrclay/minify.git
synced 2025-07-31 19:30:29 +02:00
Fix closure-compiler's "redirection limit reached"
Since a few days, the js minification was complaining about a redirection limit in the closure-compiler call. This was generating an error each time I have tried to use this tool. After a bit of investigation I have found out that it was missing some parameters that are now mandatory. Plus, it now works in https only.
This commit is contained in:
committed by
Elan Ruusamäe
parent
2c83b82bfa
commit
e4ba869444
@@ -53,7 +53,7 @@ class Minify_JS_ClosureCompiler {
|
|||||||
/**
|
/**
|
||||||
* @var string $url URL of compiler server. defaults to Google's
|
* @var string $url URL of compiler server. defaults to Google's
|
||||||
*/
|
*/
|
||||||
protected $serviceUrl = 'http://closure-compiler.appspot.com/compile';
|
protected $serviceUrl = 'https://closure-compiler.appspot.com/compile';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var int $maxBytes The maximum JS size that can be sent to the compiler server in bytes
|
* @var int $maxBytes The maximum JS size that can be sent to the compiler server in bytes
|
||||||
@@ -172,6 +172,9 @@ class Minify_JS_ClosureCompiler {
|
|||||||
$contents = file_get_contents($this->serviceUrl, false, stream_context_create(array(
|
$contents = file_get_contents($this->serviceUrl, false, stream_context_create(array(
|
||||||
'http' => array(
|
'http' => array(
|
||||||
'method' => 'POST',
|
'method' => 'POST',
|
||||||
|
'compilation_level' => 'SIMPLE',
|
||||||
|
'output_format' => 'text',
|
||||||
|
'output_info' => 'compiled_code',
|
||||||
'header' => "Content-type: application/x-www-form-urlencoded\r\nConnection: close\r\n",
|
'header' => "Content-type: application/x-www-form-urlencoded\r\nConnection: close\r\n",
|
||||||
'content' => $postBody,
|
'content' => $postBody,
|
||||||
'max_redirects' => 0,
|
'max_redirects' => 0,
|
||||||
|
Reference in New Issue
Block a user