Try installing/enabling the PHP Curl extension. apt-get install php5-curl
Tag: proxy
Wamp Configuration Virtual Hosts
This guide will change the document root, create a virtual host, bypass proxy(if behind corporate server)for the virtual host. 1. Change 2 entries in httpd.conf DocumentRoot “c:/wamp/www/” to DocumentRoot “d:/webdir/” and <Directory “c:/wamp/www/”> to <Directory “d:/webdir/”> 2. Search for and uncomment the line below to enable virtual hosts # Virtual hosts Include conf/extra/httpd-vhosts.conf 3. Add […]
LG Android 5 Proxy Greyed Out
If you have an issue where you cannot save proxy settings for a WiFi network try the below. 1. Hold down the WiFi network and select ‘Modify network’ 2. Select ‘Show advanced options’ 3. Scroll down to proxy and enter the hostname and port 4. If the save box is greyed out re-enter the password […]
Linux Proxy Server Setup For Internet Access
To allow global internet access through a proxy server you can add the code below to the file /etc/bash.bashrc. export http_proxy=http://10.0.4.1:3128 To have immediate effect without need for a reboot type: source /etc/bash.bashrc For temporary http proxy just type export http_proxy=”http://10.0.0.0.:3128″ Tested with Debian distros