the update-check script uses METHOD CONNECT.
this was not allowed in squid.
in squid.conf i had to put:
[…]
acl PORT_80 port 80 #allow port 80
[…]
http_access allow CONNECT PORT_80
the update-check script uses METHOD CONNECT.
this was not allowed in squid.
in squid.conf i had to put:
[…]
acl PORT_80 port 80 #allow port 80
[…]
http_access allow CONNECT PORT_80
if i run updatecheck, i get the following error
root@i-doit:/var/www/i-doit# ./updatecheck
Loading module: updatecheck
[…]
/**
* @desc Proxy
* –------------------------------------------------------------------------
* Proxy configuration
*/
$g_proxy = array(
"active" => true,
"host" => "192.168.XXXX",
"port" => "3128",
"user" => "",
"pass" => ""
);
[…]
any suggestions?