Online Chat
 Call Us: 
1-877-744-1221
Browse Submit a Ticket
 
Advanced Search
Tools
Rss Categories

Using proxy server for updating

Author: Edward Hardin Reference Number: AA-00684 Views: 11396 Last Updated: 07/17/2013 05:44 PM 0 Rating/ Voters

If your server with KMP doesn't have direct internet connection, you can still update KMP. You would just need to use your network proxy server. This guide explains how to setup KMP to use proxy server.

Open the /admin/config.inc.php file and find the following lines within it:

            'proxy_url'         => '',
            'proxy_protocol'    => '',

Ask your network administrator for the proxy server type, IP address, and port. Use this information to setup proxy server settings in KMP.

For example, if you're using SOCKS proxy, proxy_url and proxy_protocol should be looking similar to this:

'proxy_url' => 'socks://11.22.33.44:27977',
'proxy_protocol' => 'socks',

if you're using HTTP proxy, then use the following format:

'proxy_url' => 'tcp://11.22.33.44:8080',
'proxy_protocol' => 'http',

Stick to the format

Be sure to use the format of the URL and protocol as shown above, otherwise it won't work.