Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 10-26-2006, 01:16 AM   #1 (permalink)
 
Banned

Join Date: Oct 2006

Posts: 3

Hamlets666

Default Open site with proxy

PHP Code:
<?php  $url "http://www.com";  $x 0;  $proxy=@file("zzproxylist.txt");  foreach($proxy as $v) list($ips[], $ports[]) = explode(':'$v);  //  while($x < 545) {   $x = $x + 1;  $fp = fsockopen($ips[$x], $ports[$x]);  fputs($fp, "GET $url HTTP/1.0\r\nHost: $ips[$x]\r\n\r\n");  while(!feof($fp)){    $line = fgets($fp, 4000);    print($line);  }  fclose($fp);  }  ?>
But it didn`t works

error :
Warning: fsockopen() expects parameter 2 to be long, string given in z:\home\localhost\www\a\xy.php on line 8 Warning: fputs(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 9 Warning: feof(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 10 Warning: fgets(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 11 Warning: feof(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 10 Warning: fgets(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 11 Warning: feof(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 10 Warning: fgets(): supplied argument is not a valid stream resource in z:\home\localhost\www\a\xy.php on line 11
..............................

And page is loading very big about 65MB
Hamlets666 is offline  
Old 10-26-2006, 10:07 AM   #2 (permalink)
 
Software Developer

Join Date: Mar 2006

Location: Columbus, OH

Posts: 569

jaeusm is on a distinguished road

Default

It always helps when you post code in a readable format.
jaeusm is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On