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

Results 1 to 9 of 9
  1.     
    #1
    Banned
    Website's:
    Seecure.me

    Default [PHP] A simpler way to log into wUpload using PHP and CURL

    [PHP] A simpler way to log into wUpload using PHP and CURL

    Code: 
    <?php
    /**
    * Author: Vick@PHPCanyon.net
    * Site  : www.PHPCanyon.net
    * Date  : 26/11/2011
    */
    
    // Variables to Post
    $username = "vickkumar2011@gmail.com";
    $password = "password";
    
    $postvars = array(
        'email'=>$username,
        'redirect'=>"/",
        'password'=>$password,
        'rememberMe'=>"1"
    ); 
    
    // Do Curl Request
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL,'http://www.wupload.com/account/login'); 
    curl_setopt($ch, CURLOPT_POST,1); 
    curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postvars); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $result=curl_exec ($ch); 
    curl_close ($ch); 
    
    // Do Stuff with Results
    echo $result;
    ?>
    _Vick Reviewed by _Vick on . [PHP] A simpler way to log into wUpload using PHP and CURL A simpler way to log into wUpload using PHP and CURL <?php /** * Author: Vick@PHPCanyon.net * Site : www.PHPCanyon.net * Date : 26/11/2011 */ // Variables to Post Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    0DayBlog.com ParadiseW.net Blog4Whores.com FilmsTube.org
    Sorry for asking, but why we need this?
    Click me

    I'll upload for you(paid), PM me.

    I need payza2paypal exchanged(urgent!)

  4.     
    #3
    Member
    Website's:
    sborg.us
    Can be used as an example for logging into other sites too Consider this as a snippet/tutorial.

    V3g3ta | Halcyon | Abhi

  5.     
    #4
    Banned
    Website's:
    Seecure.me
    Quote Originally Posted by stefan-te View Post
    Sorry for asking, but why we need this?
    Instead of noobs asking coders to write them expensive bots, they can read and learn from snippets to write their own for free. And as this is 'dev area'. I don't see why I can't post snippets?

  6.     
    #5
    Member
    btw logging in to filesonic works the same way, you just have to change the url. Makes more sense than wupload, which is dying right now..

  7.     
    #6
    It begins...
    http://api.wupload.com/doc
    http://api.filesonic.com/doc

    Use the API where you can. It's faster, and the overhead is lower.

  8.     
    #7
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    What LT said.

    Also, I see how you're thinking but newbies will not learn. They expect full scripts that work out of the box with fancy GUIs, they have no idea what to do with snippets.
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

  9.     
    #8
    It begins...
    +1 Jmz.

    Unless they are willing to learn; something you will find is quite the rarity in this forum.

  10.     
    #9
    Too busy :|
    Website's:
    L337Fx.com BeastieBay.net
    Quote Originally Posted by JmZ View Post
    What LT said.

    Also, I see how you're thinking but newbies will not learn. They expect full scripts that work out of the box with fancy GUIs, they have no idea what to do with snippets.
    Nah newbs like me take such classes, modify it according to our needs and make scripts

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Curl to Uploaded.to
    By skinner in forum Web Development Area
    Replies: 18
    Last Post: 12th Feb 2012, 07:05 AM
  2. [PHP] Log into WUpload using CURL
    By _Vick in forum Web Development Area
    Replies: 0
    Last Post: 25th Nov 2011, 06:58 AM
  3. Remove Wupload Internal Remote Upload(Wupload to Wupload)?
    By jbisana17 in forum File Host Discussion
    Replies: 57
    Last Post: 22nd Nov 2011, 01:26 AM
  4. Curl IPB help
    By xwarlordx in forum Web Development Area
    Replies: 3
    Last Post: 23rd Aug 2011, 06:33 AM
  5. need help in filesonic/wupload download using curl
    By saninokia in forum Web Development Area
    Replies: 1
    Last Post: 30th Jul 2011, 04:11 PM

Tags for this Thread

BE SOCIAL