Jump to content
xisto Community

awarkops

Members
  • Content Count

    5
  • Joined

  • Last visited

Posts posted by awarkops


  1. If you have ever tried to download several things simultaneously through IE then you may have noticed that it doesn't work quite the way you may have hoped it to. This is because IE limits the amount of simultaneous downloads to two. This is done so that the perceived download progress appears to be tolerable. If you have a high speed connection then your browser should be able to handle a few more downloads. Here is 2 different steps I found to increase your number of connections. Have fun!


    This is to increase the the number of max downloads to 10.
    1. Start Registry Editor (Regedt32.exe).

    2. Locate the following key in the registry:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet Settings

    3. On the Edit menu, click Add Value (a dword) , and then add the following registry values:

    "MaxConnectionsPer1_0Server"=Dword:0000000a
    "MaxConnectionsPerServer"=Dword:0000000a

    4. Quit Registry Editor.


    Advanced Method

    1. Click Start | Run and type regedit to open the Registry Editor.

    2. Navigate to HKEY CURRENT USER\Software\Microsoft\Windows\CurrentVersion\Int ernet Settings

    3. In the right pane, click an empty space and select New and then DWORD value.

    4. Name the new value MaxConnectionsPer1_0Server

    5. Right click the new value and select Modify.

    6. Under Base, select Decimal.

    7. In the Value data field, type the number of simultaneous connections you want to allow.

    8. Click OK.

    9. Repeat steps 3-8, this time creating a value called MaxConnectionsPerServer.

    10. Close the Registry Editor.


    Now you will be able to run more downloads at a time.

    Notice from KuBi:
    Copied from here without proper quotes. Warning issued.


  2. ok just copy this code to the location you want the counter on

    PHP Code

    <?php  $file = 'counter.txt';

      if(!file_exists($file))
      {
          $handle = fopen($file, 'w');
          fwrite($handle, 0);
          fclose($handle);
      }

      $count = file_get_contents($file);
      $count++;

      if(is_writable($file))
      {
          $handle = fopen($file, 'w+');
          fwrite($handle, $count);
          fclose($handle);
      }
      else
      {
          echo 'Could not increment the counter!<br />';
      }

      echo number_format($count).' Hits';
    ?>

    open notepad and save it as counter.txt then upload it to the director you put the code on the php page a set the permission to 777

    when adding this code to you page make sure you save you page as name.php
    and not as name.htm or name.html or if you have php activation in html u can just save it as html

    im cant remember how to activate php in html if some one can tell me it will help

  3. ok just copy this code to the location y

    <?php  $file = 'counter.txt';

      if(!file_exists($file))
      {
          $handle = fopen($file, 'w');
          fwrite($handle, 0);
          fclose($handle);
      }

      $count = file_get_contents($file);
      $count++;

      if(is_writable($file))
      {
          $handle = fopen($file, 'w+');
          fwrite($handle, $count);
          fclose($handle);
      }
      else
      {
          echo 'Could not increment the counter!<br />';
      }

      echo number_format($count).' Hits';
    ?>

    open notepad and save it as counter.txt then upload it to the director you put the code on the php page a set the permission to 777

    when adding this code to you page make sure you save you page as name.php
    and not as name.htm or name.html or if you have php activation in html u can just save it as html

    im cant remember how to activate php in html if some one can tell me it will help
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.