Jump to content

Search the Community

Showing results for tags 'bot'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 4 results

  1. As you can see in the code below: it's a PHP script that generates fake hits on a given URL with the help of Cron jobs. I want to know how to set up a session duration of a hit like 5 minutes or more. Feel free to edit the complete code As you can see in the code below: it's a PHP script that generates fake hits on a given URL with the help of Cron jobs. I want to know how to set up a session duration of a hit like 5 minutes or more. Feel free to edit the complete code //Let's make sure no warrnings are displayed by PHP error_reporting(0); // Specify url that shoud receive hits // make sure to include trailing slash "/" at the end of folders $url_1 = "http://www.yourdomain.com/"; // Specify your server and port $myserver = "yourdomain.com:80"; // Specify how many hits to receive every time the script is run // Selecting more then 5 may not work $randnr = 2; //read proxy file $proxies = file("proxy.txt"); //now we will get a random proxy address from the proxies.txt file $getrand = array_rand($proxies, $randnr); for($x=0;$x<$randnr; $x++){ //setting time limit to zero will ensure the script doesn't get timed out set_time_limit(0) //now we will separate proxy address from the port $PROXY_URL=$proxies[$getrand[$x]]; $proxyarr = explode(":", $PROXY_URL); $address = trim($proxyarr[0]); $port = trim($proxyarr[1]); //following code generates the header file $headerinfo =array( 'User-Agent' => 'UHits/1.0 ('.$myserver.')', 'Accept' => 'image/gif, image/x-xbitmap, image/jpeg, image/png, */*', 'Pragma' => 'no-cache', 'Connection' => 'keep-alive'); reset($headerinfo); //now we are ready to reach our website through the proxy $fp=fsockopen($address,$port); if($fp) { fputs($fp,"GET $url_1 HTTP/1.1rn"); fputs($fp,"Host: $myserverrn"); reset($headerinfo); while(list($header,$value)=each($headerinfo)) { fputs($fp,"$header: $valuern"); //let's give the script some time to execute sleep(2); } //end while fputs($fp,"rn"); fclose($fp); } //end if } //end for
  2. Respected Users, Few days ago i created a bot site regarding auto comment and response comment etc. but whenever i try to login there using my facebook id and password an error shows up "Login Session Expired". The Problem is with the login script, i am unable to find that errorIts my humble request to you, kindly go through the post and fix me the problem. If u need anything regarding this Error kindly Msg me. Sorry for my poor English. Login PHP Code Posted Below: code removed
  3. Hi i am trying to make a bto for a game i play with my friends we play in a group of 4 in the game there is a line of letters 4-5 of them you then need to make words from thos letters and the one with the most words wins i have created my own anagram solver and created a bot for entering these into the flash game but now i want to make it fully auto i am looking for a way to get the letters from the flash game ? i have looked at the page source code and nothing is stored there so i am wondering if there is any way to inspect the game as it runs inside vb.net ?
  4. I am looking for a programmer that can design several custom twitter bots for me. I am willing to pay for each bot made.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.