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

Results 1 to 10 of 10
  1.     
    #1
    Respected Member

    Default Help with Uploading.com batch Link Checker and Curl ..

    Has anyone been able to get a batch link check to uploading.com to work from a php script usng curl? I get a 503 server busy every time.
    All help appreciated.
    Lock Down Reviewed by Lock Down on . Help with Uploading.com batch Link Checker and Curl .. Has anyone been able to get a batch link check to uploading.com to work from a php script usng curl? I get a 503 server busy every time. All help appreciated. Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Respected Member
    No one with uploading.com experience?

  4.     
    #3
    Respected Developer
    Website's:
    wrzc.org
    No I never used the batch link check for their site. I just checked for a phrase on the download page to confirm the link was working on my link checker. I've never had the need to do large amount of back link checks for uploading.com. Only Hotfile and Rapidshare.

    Have you CURLOPT_FOLLOWLOCATION and CURLOPT_RETURNTRANSFER?

    EDIT: maybe this should be moved to Technical Help Desk Support
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  5.     
    #4
    Respected Member
    Yes I have them both. I have it working for RS, HF, MU, FF, FS but keep getting that 503 error on UP. I now get 100s of UP links a day and doing an individual link checks takes an enormous amount of resources and time.

    Thanks for the reply.

    PS: Your linkzbot.com site does not work for me or in zend2.com.

  6.     
    #5
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by Lock Down View Post
    Yes I have them both. I have it working for RS, HF, MU, FF, FS but keep getting that 503 error on UP. I now get 100s of UP links a day and doing an individual link checks takes an enormous amount of resources and time.

    Thanks for the reply.
    Ya it does. I can totally understand that. I used to check over 300k links a day.

    Uploading.com uses ajax in it's link checker unlike hotfile, rapidshare, filefactory etc. which may be causing the problem. No idea what FS is. It would be so much easier if they had a propper api like RS, sendspace etc

    If you want PM me what you have and I'll have a look at it. Going to a gig tonight so it will be tomorrow before I get to look at it though.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  7.     
    #6
    Member
    Website's:
    litewarez.net litewarez.com triniwarez.com
    shwo the header informaton dumped here ?
    Join Litewarez.net today and become apart of the community.
    Unique | Clean | Advanced (All with you in mind)
    Downloads | Webmasters


    Notifications,Forum,Chat,Community all at Litewarez Webmasters


  8.     
    #7
    Respected Member
    Here you go.
    HTTP/1.1 503 Server too busy Server: nginx Date: Wed, 24 Feb 2010 22:03:00 GMT Content-Type: text/html Transfer-Encoding: chunked Connection: keep-alive Set-Cookie: SID=7b5c1b856aff24f1a68865a611da5832; expires=Thu, 25-Feb-2010 00:03:00 GMT; path=/; domain=.uploading.com Set-Cookie: cache=99c5010e54c36a91c0fa9b08e900dd20; expires=Wed, 24-Feb-2010 23:03:00 GMT; path=/; domain=.uploading.com
    [url] => http://uploading.com/files/checker/
    [content_type] => text/html
    [http_code] => 503
    [header_size] => 403
    [request_size] => 240
    [filetime] => -1
    [ssl_verify_result] => 0
    [redirect_count] => 0
    [total_time] => 0.040844
    [namelookup_time] => 0.009417
    [connect_time] => 0.020572
    [pretransfer_time] => 0.02058
    [size_upload] => 103
    [size_download] => 0
    [speed_download] => 0
    [speed_upload] => 2521
    [download_content_length] => -1
    [upload_content_length] => 0
    [starttransfer_time] => 0.040822
    [redirect_time] => 0

  9.     
    #8
    Respected Member

    Default Here is the code as Mr Happy box is still full. :)

    PHP Code: 
    <?php
    echo  "<br><pre><xmp>"
      
    $data['urls'] = "http://uploading.com/files/c8764714";
        
    $ckfile tempnam ("/tmp""CURLCOOKIE");
        
    $ch curl_init ("http://uploading.com/filechecker/");
        
    curl_setopt ($chCURLOPT_COOKIEJAR$ckfile); 
        
    curl_setopt ($chCURLOPT_RETURNTRANSFERtrue);
        
    $output curl_exec ($ch);
        
    $ch curl_init();
        
    curl_setopt($chCURLOPT_URL,'http://uploading.com/filechecker/');
        
    curl_setopt($chCURLOPT_COOKIEFILE$ckfile);
        
    curl_setopt($chCURLOPT_REFERER,'http://uploading.com');
        
    curl_setopt($chCURLOPT_USERAGENT'Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)');
        
    curl_setopt($chCURLOPT_HTTPHEADER,array("Expect:"));
        
    curl_setopt($chCURLOPT_CONNECTTIMEOUT60);
        
    curl_setopt($chCURLOPT_TIMEOUT60);
        
    curl_setopt($chCURLOPT_HEADERtrue);
        
    curl_setopt($chCURLOPT_FOLLOWLOCATIONtrue);
        
    curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
        
    curl_setopt($chCURLOPT_POST1);
        
    curl_setopt($chCURLOPT_POSTFIELDS$data);
        
    $content curl_exec($ch);
        
    curl_close($ch);

    echo  
    "<br>$content<pre><xmp>"; echo  "<br>"print_r($_REQUEST);

    ?>

  10.     
    #9
    Member
    Website's:
    bramjlive.com
    can i share my account?

  11.     
    #10
    Respected Member
    Sorry I don't know what you mean? The routine does not work as of now.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Uploading to FileSonic Using cURL
    By Gaurav in forum Web Development Area
    Replies: 71
    Last Post: 14th Jan 2012, 03:00 AM
  2. [help] Uploading images to imageporter with curl
    By hover in forum Web Development Area
    Replies: 3
    Last Post: 23rd Apr 2011, 10:23 PM
  3. [guide] Uploading to Hofile using curl
    By desiboy in forum Tutorials and Guides
    Replies: 19
    Last Post: 30th May 2010, 07:40 PM
  4. Batch Link check to uploading.com
    By Lock Down in forum General Discussion
    Replies: 0
    Last Post: 21st Feb 2010, 03:38 AM

Tags for this Thread

BE SOCIAL