On April 1, 2021, we are moving all of our QuotaGuard Support Documentation to
https://quotaguard.github.io/qg-docs/
Please Update Your Support Bookmarks
Documentation for this article will be maintained at
https://quotaguard.github.io/qg-docs/quickstart-php.html
Please click on the above link to ensure you are reading
the most recent and updated documentation.
Installation
When you sign up you will be provided with a unique username and password and a connection string that you can use when configuring your proxy service in your application:
http://username:[email protected]:9293
All requests that you make via this proxy will appear to the destination server to originate from one of the two static IPs you will be assigned when you sign up.
We recommend you store the connection string in an environment variable QUOTAGUARD_URL.
If you have signed up via the add-ons platform on Heroku or cloudControl, this variable will be automatically set in your production environment.
Integration
PHP cURL is the easiest way to make HTTP requests via QuotaGuard.
<?php
function lookup(){
$statica_env = getenv("QUOTAGUARD_URL");
$statica = parse_url($statica_env);
$proxyUrl = $statica['host'].":".$statica['port'];
$proxyAuth = $statica['user'].":".$statica['pass'];
$url = "http://ip.jsontest.com/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXY, $proxyUrl);
curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyAuth);
$response = curl_exec($ch);
return $response;
}
$res = lookup();
print_r($res);
?>
We have examples for other common libraries as well, but if you can’t find what you are looking for just send us a support ticket and we’ll get one sent to you.