Activity Stream
48,167 MEMBERS
64428 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25

Hybrid View

ciaociao4 netload upload script 24th Jan 2012, 01:26 PM
Halcyon sleep (10); ?? Seriously? :O... 24th Jan 2012, 01:27 PM
ciaociao4 i dont' know what is it :D i use... 24th Jan 2012, 02:17 PM
borewik Theres example in php-curl on... 24th Jan 2012, 02:19 PM
ciaociao4 yep...i try to modify this for mine... 24th Jan 2012, 02:39 PM
dewaforex if uploaded.to still working just... 24th Jan 2012, 03:11 PM
ciaociao4 netload will work ;) 24th Jan 2012, 03:57 PM
soft2050 Try this code: function... 24th Jan 2012, 04:48 PM
ciaociao4 thanks...i love you...but... 24th Jan 2012, 06:52 PM
l0calh0st Use the PHP tags for code next time. 24th Jan 2012, 05:09 PM
ciaociao4 fixed excuse me :D 25th Jan 2012, 02:27 AM
soft2050 Did you specified your api key... 25th Jan 2012, 03:27 PM
ciaociao4 yes...the auth... i use this but... 25th Jan 2012, 04:58 PM
soft2050 You would have to give the password... 25th Jan 2012, 05:04 PM
ciaociao4 i try with password and without... 25th Jan 2012, 07:17 PM
Halcyon sBorg ->... 25th Jan 2012, 05:04 PM
ciaociao4 wich login i must insert? id... 25th Jan 2012, 07:19 PM
Halcyon ID (Number) and password should be... 26th Jan 2012, 12:56 AM
soft2050 function upNetLoad($value, $usr,... 26th Jan 2012, 07:02 AM
ciaociao4 :( not work for mee :((( 26th Jan 2012, 05:11 PM
deliteblogger I bet no one can help you if you... 26th Jan 2012, 06:02 PM
ciaociao4 i get upload error :( 26th Jan 2012, 07:06 PM
ciaociao4 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!... 26th Jan 2012, 11:01 PM
dawinet how to use this code >?? please... 12th Feb 2012, 12:05 AM
t3od0r you put the code in a php file, for... 12th Feb 2012, 10:11 AM
Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Member
    Website's:
    fileservedownload.net
    Quote Originally Posted by l0calh0st View Post
    Use the PHP tags for code next time.

    fixed excuse me
    ciaociao4 Reviewed by ciaociao4 on . netload upload script :D i use a script to upload on the filehost...like fileserve filesonic etc..etc... now i need to convert to allow the upload to netload... netload have api but i dont know how use this... Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    Did you specified your api key which is required in order to use there api?
    http://www.netload.in/index.php?id=56

  4.     
    #3
    Member
    Website's:
    fileservedownload.net
    yes...the auth...

    i use this but give error...

    upload error....

    it's possible that i must indicate the rar password?

    i think it's necessary in netload...


    ps. sborg dont work with netload ...it give login error...

  5.     
    #4
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    You would have to give the password for the archive if it is password protected. In that case, the code above won't work. You have to get the token and then post again the password or post the password with the first upload request only

  6.     
    #5
    Member
    Website's:
    fileservedownload.net
    Quote Originally Posted by soft2050 View Post
    You would have to give the password for the archive if it is password protected. In that case, the code above won't work. You have to get the token and then post again the password or post the password with the first upload request only

    i try with password and without it...but not work...

  7.     
    #6
    Member
    Website's:
    sborg.us
    sBorg -> http://i.imgur.com/dVUh6.png

    In netload's file manager -> http://i.imgur.com/vxEwe.png

    Check your logins again.

    V3g3ta | Halcyon | Abhi

  8.     
    #7
    Member
    Website's:
    fileservedownload.net
    Quote Originally Posted by Halcyon View Post
    sBorg -> http://i.imgur.com/dVUh6.png

    In netload's file manager -> http://i.imgur.com/vxEwe.png

    Check your logins again.
    wich login i must insert?

    id (number)
    nickname
    password
    password ftp
    nickname ftp

    wich?


    ps : thanks

  9.     
    #8
    Member
    Website's:
    sborg.us
    ID (Number) and password should be enough

    V3g3ta | Halcyon | Abhi

  10.     
    #9
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    PHP Code: 
    function upNetLoad($value$usr$pass){
    // Soft2050

    $url file_get_contents('http://api.netload.in/getserver.php');
    $post = Array ('modus' => 'file_upload''file_link' => "@$value"'auth' => '''user_id' => $usr 'user_password' => $pass);

    $ch curl_init();
    curl_setopt($chCURLOPT_URL$url);
    curl_setopt($chCURLOPT_POST1);
    curl_setopt($chCURLOPT_POSTFIELDS$post);
    curl_setopt($chCURLOPT_RETURNTRANSFERTRUE);
    $result curl_exec ($ch);
    curl_close ($ch);

    if (
    preg_match("/upload_failed/"$result) || preg_match("/prepare_failed/"$result)) {
        return 
    'Upload failed.';
    }
    else if (
    preg_match("/UPLOAD_OK/"$result)) {
        
    $arr explode(';'$result);
        
    /*
        $arr[0] : UPLOAD_OK
        $arr[1] : FILENAME
        $arr[2] : FILESIZE
        $arr[3] : DOWNLOAD LINK
        $arr[4] : DELETE LINK
        */
        
    return $arr[3];
    }


    After testing the script, i noticed there was a mistake in netloads documentation
    Its given as file => file_link in there documentation though the reverse of it works i.e. file_link => file

    Tested the script now without password and it works

  11.     
    #10
    Member
    Website's:
    fileservedownload.net
    not work for mee (

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Netload.in, Can I upload by FTP on Netload.in?
    By xitrumndt in forum File Host Discussion
    Replies: 6
    Last Post: 15th Jul 2012, 08:05 AM
  2. how can I remote upload in netload
    By red_lover in forum File Host Discussion
    Replies: 0
    Last Post: 5th Mar 2012, 05:43 PM
  3. How do you upload to Netload
    By pecko in forum File Host Discussion
    Replies: 1
    Last Post: 9th Feb 2012, 11:09 AM
  4. How to Remote upload to Netload?
    By wolverineq32 in forum Technical Help Desk Support
    Replies: 0
    Last Post: 10th Sep 2010, 01:59 AM

Tags for this Thread

BE SOCIAL