Updatecheck does not work with proxy settings
-
if i run updatecheck, i get the following error
root@i-doit:/var/www/i-doit# ./updatecheck
-
Loading module: updatecheck
- Checking… Please wait..
Error while connecting / cURL error: 56 - Received HTTP code 403 from proxy after CONNECT
Make sure this host is connected to the internet!
Proxy settings can be configured in src/config.inc.php
Proxy configuration: (
'active' => true,
'host' => '192.168.XXXXX',
'port' => '3128',
'user' => '',
'pass' => '',
)
extract of my config file:
root@i-doit:/var/www/i-doit/src/config.inc.php[…]
/**
* @desc Proxy
* –------------------------------------------------------------------------
* Proxy configuration
*/
$g_proxy = array(
"active" => true,
"host" => "192.168.XXXX",
"port" => "3128",
"user" => "",
"pass" => ""
);
[…]any suggestions?
- Checking… Please wait..
-
-
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 -
In older versions there was also a problem with our curl initialisation, this should be fixed in the most recent version now
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login