Results 1 to 10 of 19
Hybrid View
-
22nd Aug 2011, 06:00 AM #1Respected MemberWebsite's:
DL4Everything.com Soft2050.inUse WUPLOAD API:
You might be having fso with there api, just change the user/pass and link and everything else should be same :)
I just did teh homework for you so no need of above:
PHP Code:<?php
// Wupload Plugin using there API by Soft2050
$wuuser = 'myusername';
$wupass = 'mypass';
function wuploadup($filename, $username, $password) {
$geturld = file_get_contents("http://api.wupload.com/upload?method=getUploadUrl&u=$username&p=$password&format=xml");
preg_match('/(http:\/\/.*?format=xml)/i', $geturld, $matches); // Ahh You could make teh regex better but this was one which works fine and was easy too
$upurl = $matches[0];
$post = array('files[]' => "@$filename");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, trim($upurl));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$getresult = curl_exec($ch);
curl_close($ch);
preg_match('/\<url\>(.*?)\<\/url\>/i', $getresult, $matches); // Ahh You could make teh regex better but this was one which works fine and was easy too
$resulturl = $matches[0];
return $resulturl;
}
echo wuploadup( 'myfilelink', $wuuser, $wupass);
?>
soft2050 Reviewed by soft2050 on . wupload upload plugin asap hey mates, i need help coding an upload plugin for wupload, every time i make a call, it gives me HTTP/1.1 411 Length Required i need help asap, thanks in advance. Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Remove Wupload Internal Remote Upload(Wupload to Wupload)?
By jbisana17 in forum File Host DiscussionReplies: 57Last Post: 22nd Nov 2011, 01:26 AM -
Need Wupload.com Upload RapidLeech Plugin
By Wanted in forum File Host DiscussionReplies: 29Last Post: 28th Oct 2011, 08:43 PM -
[Rapidleech] Wupload upload plugin is not working anymore ?
By MrCheetoDust in forum Web Application/Script SupportReplies: 4Last Post: 15th Oct 2011, 05:57 AM -
[Need] wupload.com Upload/Download Plugin
By anneloveamale in forum Webmaster ResourcesReplies: 1Last Post: 21st Aug 2011, 01:22 AM -
Upload Plugin Creation - Wupload
By viruz99 in forum Technical Help Desk SupportReplies: 2Last Post: 1st Jun 2011, 06:33 AM
themaCreator - create posts from...
Version 3.53 released. Open older version (or...