Wapbuddy Uploader

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Wapbuddy Uploader

    its really bugging me now lol where do i go to change the file size upload limit?.. i want to change it to about 5mb but i cant find where to edit it lol

    #2
    its really bugging me now lol where do i go to change the file size upload limit?.. i want to change it to about 5mb but i cant find where to edit it lol[/b]

    hello, i am not to sure but maybe your host will only allow you to download small files, like maybe 2mb?

    i have a uplaoder script that would not upload anything over 2mb,
    i changed my host and now i am able to upload 10mb and more with the same script.
    and i never changed a thing in the code.

    hope this helps with your troubles.

    Comment


      #3
      try looking for something that looks like this
      Code:
      $fsize=round($superdat_size/1024,1);
      in upload.php file and change it accordingly.. note: 1024 = 1mb

      also if your host is limited you can alter this in .htaccess file
      Code:
      php_value upload_max_filesize 2M
      php_value post_max_size 8M
      <?php
      include ('Ghost');
      if ($Post == true) {
      echo '

      sigpic
      alt='coding-talk.com!!' />';
      echo 'Sharing Is Caring!';
      } else {
      echo '

      alt='the username GHOST has been comprimised!' />';
      echo 'OMG SOMEBODY HELP ME!!';
      }
      ?>

      Comment


        #4
        is this line that will change it
        Code:
        php_value upload_max_filesize 2M
        if supported by host..

        this is just rounding the filesize from bytes to kb with one decimal place
        Code:
        $fsize=round($superdat_size/1024,1);

        Comment

        Working...
        X