Recent content by ricardodinucci

  1. R

    Uploading to FileSonic Using cURL

    Anyone can make a download php script to me? I can pay for it.
  2. R

    Uploading to FileSonic Using cURL

    I'm not familiar with cookie, can you make a code example for me? p=md5(md5(password)email) PHP exemple: $clearTextPassword = '1234'; $email = 'a@b.c'; $encryptedPassword = md5(md5($clearTextPassword) . $email); And yes they show the code, but how I send those...
  3. R

    Uploading to FileSonic Using cURL

    I know that, I'm trying to make one for downloading, could you give a help? Follow the code for filesonic: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.filesonic.com/user/login"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS...
  4. R

    Uploading to FileSonic Using cURL

    I'm trying to use this code to make a download. The problem is that I can't get the download link. Any idea?
Back
Top