How can you tell me the process or share any script with me
Check this for example:
$url = '
http://yourwebsite.com';
$proxy = '127.0.0.1:8888';
$proxyauth = 'user

assword';
while(true)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyauth);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_exec($ch);
curl_close($ch);
sleep(1);
}
This will not load the picture or any script nevertheless. If you want something that loads everything, try to look for traffic bot on Google.