Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1
    Join Date
    Mar 2007
    Posts
    23
    Tokens
    0

    Default how do i do my uploader

    I got the script, but how does it upload the images it just says error mysql or something how i get it to say [IMGwww.blahblahIMG]

    Thanks

    Jaymai, Benji , Posh FTW!

  2. #2
    LondonGoons Guest

    Default

    i don't no if im correct but did you setup the mysql up? like a new one just for the uploader

  3. #3
    Join Date
    Mar 2007
    Posts
    23
    Tokens
    0

    Default

    Sorry, im sort of new, how do i do that

    Jaymai, Benji , Posh FTW!

  4. #4
    LondonGoons Guest

    Default

    When you downloaded the upload read the readme file, or post it here..

  5. #5
    Join Date
    Mar 2007
    Posts
    23
    Tokens
    0

    Default

    EasyImageHoster 1.32

    ©2006 by TPAX



    1. Open up and edit config.php

    2. Upload the content of the folder on your webspace

    3. Make sure your 'images' and 'thumbs' dir chmod is set to writeable (chmod 777 or 755)

    4. Done





    Any problems?

    Contact me: removed btw

    Jaymai, Benji , Posh FTW!

  6. #6
    LondonGoons Guest

    Default

    Did you edit the config.php

    did you chmod your images and thumbs to 777

    ?

  7. #7
    Join Date
    Mar 2007
    Posts
    23
    Tokens
    0

    Default

    If i give you link to upload it and give cpanel details could you do for me?

    Jaymai, Benji , Posh FTW!

  8. #8
    LondonGoons Guest

    Default

    i could try, PM me.

  9. #9
    Join Date
    Mar 2007
    Posts
    31
    Tokens
    0

    Default

    goto cPanel > MySQL > Add new Database > Name it w.e you want > Make a MySQL User > Name it w.e you want > In the MySQL Bit in cPanel give ALL access grants to The user for that database

    Edit the config.php file (or something like that) that came with the uploader.
    I am Tawm.

  10. #10
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    PHP Code:
     <?
    // Script Made By Ashley Cusack
    // CONFIG
    $serverpath "upload/";   // Path to where images should be upload the server.
    $urltoimages "http://youngfm.co.uk/uploader/upload";  // Web address to where the images are accessible from.
    $maxsize "500000";     // Example - 20000 is the same as 20kb
    $uniq uniqid("");
    // CONFIG END

    $mode $_GET['mode'];
    if (
    $mode == "") { $mode "form"; }

    if (
    $mode == "form") {
    echo 
    "<form enctype='multipart/form-data' method='post' action='?mode=upload'>\n";
    echo 
    "Upload file: <input type='file' name='file'>\n";
    echo 
    "<br><input type='submit' name='Submit' value='Upload'>\n";
    echo 
    "<br>Maximum File Size: $maxsizeb Bytes";
    echo 
    "<br>$file";
    }

    if (
    $mode == "upload") {
    $file $_FILES['file']['name'];
    $name time() . substr($file, -4);
     
    // If you add your own file types don't forget to add an uppercase version.
     
    $allowedfiles[] = "gif";
     
    $allowedfiles[] = "jpg";
     
    $allowedfiles[] = "jpeg";
     
    $allowedfiles[] = "jfef";
     
    $allowedfiles[] = "jpe";
     
    $allowedfiles[] = "png";
     
    $allowedfiles[] = "GIF";
     
    $allowedfiles[] = "JPG";
     
    $allowedfiles[] = "JPEG";
     
    $allowedfiles[] = "JFEF";
     
    $allowedfiles[] = "JPE";
     
    $allowedfiles[] = "PNG";
     
    $allowedfiles[] = "PDF";
     
    $allowedfiles[] = "pdf";
     
    $allowedfiles[] = "PSD";
     
    $allowedfiles[] = "psd";
     
    $allowedfiles[] = "bmp";
     
    $allowedfiles[] = "BMP";
     
    $allowedfiles[] = "tif";
     
    $allowedfiles[] = "tiff";
     
    $allowedfiles[] = "TIF";
     
    $allowedfiles[] = "TIFF";
     
    $allowedfiles[] = "dib";
     
    $allowedfiles[] = "DIB";


     if(
    $_FILES['file']['size'] > $maxsize)
     {
      print 
    "File size is too big - please reduce file size and try again.";
      }
      else {
      
    $path "$serverpath/" $name;
      foreach(
    $allowedfiles as $allowedfile) {
     
      if (
    $done <> "yes") {
      if (
    file_exists($path)) {
       echo 
    "A file with this name already exists - please rename the file and reupload.";
       exit;
      }
      }
     
      if (
    substr($file, -3) == $allowedfile) {
        
    move_uploaded_file($_FILES['file']['tmp_name'], "$path");
        
    $done "yes";
        echo 
    "<p>Your image has been successfully uploaded to our server and can be accessed using the URL provided below.</p>";
        echo 
    "<p><img src='$urltoimages/$name' border='0'>"
        echo 
    "<p>Direct Link: <input name='direct' type='text' size='75' value='$urltoimages/$name'></a></p>";
               
        }

      }

    if (
    $done <> "yes") { print "<p><b>Error:</b> Your image as not been uploaded becuase it is not a recognised image file. Please try again.</p>"; }
    }
    }

    ?>
    I made that, feel free to edit it


Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •