Results 1 to 5 of 5
Threaded View
-
10th Dec 2011, 11:55 AM #1OPIt begins...
LulzImg API (sort of) Upload Example
I suppose this has already been posted somewhere, but I figured I'd post it once and for all. Good for people who're looking for it, and because ciaociao4 and Blaze wanted an example.
LulzImg's app.php is a very simple API-ish type script (lol) which I coded a few months back for private use. Eventually, I gave it out on a selective basis to people who needed it.
It accepts an image, a zip, or a rar file. If it encounters a zip/rar file, it'll extract it, and copy any images found in it. It'll dump everything else inside; dumping happens during run-time so don't bother trying to inject malicious files/code.
You basically need to make your script simulate this form:
Code:<form enctype="multipart/form-data" action="http://lulzimg.com/app.php" method="POST"> <input type="file" name="image" id="image" /> <br /> <input type="submit" name="submit" value="submit"></button> </form>
PHP Code:<?php
function curl($link, $postfields = '')
{
$ch = curl_init($link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
if($postfields)
{
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
}
$page = curl_exec($ch);
curl_close($ch);
return($page);
}
$img = "C:\Program Files\VertrigoServ\www\img.jpg"; //Or linux path
$post = array();
$post['image'] = "@$img";
$post['submit'] = "submit";
$page = curl("http://lulzimg.com/app.php", $post);
echo $page;
?>Lifetalk Reviewed by Lifetalk on . LulzImg API (sort of) Upload Example I suppose this has already been posted somewhere, but I figured I'd post it once and for all. Good for people who're looking for it, and because ciaociao4 and Blaze wanted an example. LulzImg's app.php is a very simple API-ish type script (lol) which I coded a few months back for private use. Eventually, I gave it out on a selective basis to people who needed it. It accepts an image, a zip, or a rar file. If it encounters a zip/rar file, it'll extract it, and copy any images found in it. 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
-
Can anyone upload the lulzimg.app
By Mr.Mirchi in forum Technical Help Desk SupportReplies: 0Last Post: 26th Jun 2012, 11:58 AM -
MediaFire API: want to sort...
By Mr. Goodie2Shoes in forum Web Development AreaReplies: 2Last Post: 12th Apr 2012, 11:00 AM -
Sort Thread By...
By itsHERO in forum vBulletinReplies: 1Last Post: 20th Oct 2011, 05:47 PM -
[REQ]lulzimg upload with php
By jokerhacker in forum Web Development AreaReplies: 26Last Post: 25th Apr 2011, 03:49 PM -
[phpBB2] How to sort this?
By pi0tr3k in forum phpBBReplies: 8Last Post: 2nd Apr 2010, 03:24 PM
themaManager - edit and manage...
Version 4.20 released. Open older version (or...