[SOLVED] - MU Upload Problem ? Check here

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kamal
    Administrator
    • May 2002
    • 28835

    [SOLVED] - MU Upload Problem ? Check here

    For some reason, that stupid scripts has just decided to stop working, I'm testing an alternative right now to see if I can quickly put up an option in place.

    If someone knows where I can download / purchase a MEGAUPLOAD Clone type script, please let me know.

    Thanks

    EDIT - THE PROBLEM HAS BEEN RESOLVED. SERVICE IS NOW AVAILABLE
    Last edited by Kamal; May 4, 2007, 09:39:36 AM.
    www.mjwebhosting.com

    Jib says:
    he isnt worth the water that splashes up into your asshole while you're shitting
    Originally posted by ace_dl
    Guys and Gals, I have to hurry/leaving for short-term vacations.
    I won't be back until next Tuesday, so if Get Carter is the correct answer, I would appreciate of someone else posts a new cap for me
  • unkownartist
    Banned
    • Nov 2005
    • 4146

    #2
    Re: MU Problem

    this is a free one m8 but i dont know if it will be of any use to u



    i,ll search around, i aint got nothing else to do today

    Comment

    • unkownartist
      Banned
      • Nov 2005
      • 4146

      #3
      Re: MU Problem

      Once setup is finish, you just need to promote it out. Put Adsense and you're done. I have a few scripts with me, and can customize your Adsense...

      Comment

      • unkownartist
        Banned
        • Nov 2005
        • 4146

        #4
        Re: MU Problem

        rapidshare clone???

        Business Web Management Multi Language and SEO optimized products. Reasonable Prices! Instant download after purchase.

        Comment

        • unkownartist
          Banned
          • Nov 2005
          • 4146

          #5
          Re: MU Problem

          http://www.alstrasoft.com/sendit.htm#4

          Comment

          • unkownartist
            Banned
            • Nov 2005
            • 4146

            #6
            Re: MU Problem

            We invested countless hours researching, testing and reviewing the best gadgets, tech, services, gear, and many more to find the best one.

            Comment

            • unkownartist
              Banned
              • Nov 2005
              • 4146

              #7
              Re: MU Problem

              Comment

              • unkownartist
                Banned
                • Nov 2005
                • 4146

                #8
                Re: MU Problem

                ......

                Comment

                • unkownartist
                  Banned
                  • Nov 2005
                  • 4146

                  #9
                  Re: MU Problem

                  :O

                  code:<?php
                  //vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv vvvvvvvvvv
                  // You may change maxsize, and allowable upload file types.
                  //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^
                  //Mmaximum file size. You may increase or decrease.
                  $MAX_SIZE = 2000000;

                  //Allowable file Mime Types. Add more mime types if you want
                  $FILE_MIMES = array('image/jpeg','image/jpg','image/gif'
                  ,'image/png','application/msword','video/mpg','video/avi','video/mov','text/plain');

                  //Allowable file ext. names. you may add more extension names.
                  $FILE_EXTS = array('.zip','.jpg','.png','.gif','.rar','.mov','. avi','.mpg ','.exe','.doc'.'.psd','.dbs','.html','.php','.div x','.zip', '.txt','.ppt');

                  //Allow file delete? no, if only allow upload only
                  $DELETABLE = true;


                  //vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv vvvvvvvvvv
                  // Do not touch the below if you are not confident.
                  //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^
                  /************************************************** **********
                  * Setup variables
                  ************************************************** **********/
                  $site_name = $_SERVER['HTTP_HOST'];
                  $url_dir = "http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']);
                  $url_this = "http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];

                  $upload_dir = "files/";
                  $upload_url = $url_dir."/files/";
                  $message ="";

                  /************************************************** **********
                  * Create Upload Directory
                  ************************************************** **********/
                  if (!is_dir("files")) {
                  if (!mkdir($upload_dir))
                  die ("upload_files directory doesn't exist and creation failed");
                  if (!chmod($upload_dir,0755))
                  die ("change permission to 755 failed.");
                  }

                  /************************************************** **********
                  * Process User's Request
                  ************************************************** **********/
                  if ($_REQUEST[del] && $DELETABLE) {
                  $resource = fopen("log.txt","a");
                  fwrite($resource,date("Ymd h:i:s")."DELETE - $_SERVER[REMOTE_ADDR]"."$_REQUEST[del]\n");
                  fclose($resource);

                  if (strpos($_REQUEST[del],"/.")>0); //possible hacking
                  else if (strpos($_REQUEST[del],$upload_dir) === false); //possible hacking
                  else if (substr($_REQUEST[del],0,6)==$upload_dir) {
                  unlink($_REQUEST[del]);
                  print "<script>window.location.href='$url_this?message=d eleted successfully'</script>";
                  }
                  }
                  else if ($_FILES['userfile']) {
                  $resource = fopen("log.txt","a");
                  fwrite($resource,date("Ymd h:i:s")."UPLOAD - $_SERVER[REMOTE_ADDR]"
                  .$_FILES['userfile']['name']." "
                  .$_FILES['userfile']['type']."\n");
                  fclose($resource);

                  $file_type = $_FILES['userfile']['type'];
                  $file_name = $_FILES['userfile']['name'];
                  $file_ext = strtolower(substr($file_name,strrpos($file_name,". ")));

                  //File Size Check
                  if ( $_FILES['userfile']['size'] > $MAX_SIZE)
                  $message = "The file size is over 2MB.";
                  //File Type/Extension Check
                  else if (!in_array($file_type, $FILE_MIMES)
                  && !in_array($file_ext, $FILE_EXTS) )
                  $message = "Sorry, $file_name($file_type) is not allowed to be uploaded.";
                  else
                  $message = do_upload($upload_dir, $upload_url);

                  print "<script>window.location.href='$url_this?message=$ message'</script>";
                  }
                  else if (!$_FILES['userfile']);
                  else
                  $message = "Invalid File Specified.";

                  /************************************************** **********
                  * List Files
                  ************************************************** **********/
                  $handle=opendir($upload_dir);
                  $filelist = "";
                  while ($file = readdir($handle)) {
                  if(!is_dir($file) && !is_link($file)) {
                  $filelist .= "<a href='$upload_dir$file'>".$file."</a>";
                  if ($DELETABLE)
                  $filelist .= " <a href='?del=$upload_dir".urlencode($file)."' title='delete'>x</a>";
                  $filelist .= "<sub><small><small><font color=grey> ".date("d-m H:i", filemtime($upload_dir.$file))
                  ."</font></small></small></sub>";
                  $filelist .="<br>";
                  }
                  }

                  function do_upload($upload_dir, $upload_url) {

                  $temp_name = $_FILES['userfile']['tmp_name'];
                  $file_name = $_FILES['userfile']['name'];
                  $file_name = str_replace("\\","",$file_name);
                  $file_name = str_replace("'","",$file_name);
                  $file_path = $upload_dir.$file_name;

                  //File Name Check
                  if ( $file_name =="") {
                  $message = "Invalid File Name Specified, name it properly u silly noob";
                  return $message;
                  }

                  $result = move_uploaded_file($temp_name, $file_path);
                  if (!chmod($file_path,0777))
                  $message = "change permission to 777 failed.";
                  else
                  $message = ($result)?"$file_name uploaded successfully." :
                  "Somthing is wrong with uploading a file, or your just stupid !";
                  return $message;
                  }

                  ?><title>UPDOWN SHEEP LOVERS !!!</title>

                  <center>
                  <font color=red><?=$_REQUEST[message]?></font>
                  <br>
                  <form name="upload" id="upload" ENCTYPE="multipart/form-data" method="post">
                  Upload File <input type="file" id="userfile" name="userfile">
                  <input type="submit" name="upload" value="Upload">
                  </form>

                  <br><b>My Sheep</b>
                  <hr width=70%>
                  <?=$filelist?>
                  <hr width=70%>
                  <small><sup>Developed By
                  <a style="text-decoration:none" href="http://fluffysheep.com">MADE BY SHEEP LOVERS</a>
                  </sup></small>
                  </center>

                  Comment

                  • Kamal
                    Administrator
                    • May 2002
                    • 28835

                    #10
                    Re: MU Problem

                    thanks mate, I got that rapidshare clone but it seems something broke on the server as I cant even get the uploads to work on the new one. I do appreciate your help though.
                    www.mjwebhosting.com

                    Jib says:
                    he isnt worth the water that splashes up into your asshole while you're shitting
                    Originally posted by ace_dl
                    Guys and Gals, I have to hurry/leaving for short-term vacations.
                    I won't be back until next Tuesday, so if Get Carter is the correct answer, I would appreciate of someone else posts a new cap for me

                    Comment

                    • unkownartist
                      Banned
                      • Nov 2005
                      • 4146

                      #11
                      Re: MU Problem

                      anytime m8, let us know if they are any use n if they aint then i,ll have a search for more

                      http://www.alstrasoft.com/sendit.htm#4

                      looked promising on paper

                      Comment

                      • Kamal
                        Administrator
                        • May 2002
                        • 28835

                        #12
                        Re: MU Problem

                        yea I've been through nearly all of the above except that celeron dude one, but it seems guests cant upload
                        www.mjwebhosting.com

                        Jib says:
                        he isnt worth the water that splashes up into your asshole while you're shitting
                        Originally posted by ace_dl
                        Guys and Gals, I have to hurry/leaving for short-term vacations.
                        I won't be back until next Tuesday, so if Get Carter is the correct answer, I would appreciate of someone else posts a new cap for me

                        Comment

                        • unkownartist
                          Banned
                          • Nov 2005
                          • 4146

                          #13
                          Re: MU Problem

                          tbh i,m not sure of exactly what i,m looking for m8 so i,m not sure if i can be of any more help to u

                          maybe try another search engine rather than google?

                          Comment

                          • Kamal
                            Administrator
                            • May 2002
                            • 28835

                            #14
                            Re: MU Problem

                            no worries, thanks for your help, this was more of a heads up thread anyway
                            www.mjwebhosting.com

                            Jib says:
                            he isnt worth the water that splashes up into your asshole while you're shitting
                            Originally posted by ace_dl
                            Guys and Gals, I have to hurry/leaving for short-term vacations.
                            I won't be back until next Tuesday, so if Get Carter is the correct answer, I would appreciate of someone else posts a new cap for me

                            Comment

                            • herre
                              Platinum Poster
                              • Jun 2004
                              • 1235

                              #15
                              Re: MU Problem

                              what happend to the script?
                              its still working for me

                              Comment

                              Working...