Valhalla Legends Archive

Programming => Web Development => Topic started by: Stellarchase on September 28, 2008, 01:33 PM

Title: Free Image Hosting for everyone :)
Post by: Stellarchase on September 28, 2008, 01:33 PM
Hey guys, I made http://www.imglot.com/ for some free image hosting for you.  The server will be up as it's prepaid for quite some time.  I've got enough hard drive and bandwidth as well.  Hope to see you guys use it, it's probably one of the faster servers as well.

Thanks :)
Title: Re: Free Image Hosting for everyone :)
Post by: Yegg on September 28, 2008, 10:57 PM
It took ages for me to upload a song. After about a 2 minute wait it tells me that the file type I chose (m4a) is not supported. It should have checked for that earlier on. It'd be nice if it first checked for unsupported file formats according to file extension first. If the extension typically represents an unsupported audio format, a message window should notify the user and ask if they would like to continue anyway. If they decide to, then it should check the file data for the format. I hate having to wait forever for something to upload just to find out that it's not supported.

Besides all of that, RapidShare uploaded faster for me.
Title: Re: Free Image Hosting for everyone :)
Post by: Stellarchase on September 29, 2008, 04:07 AM
haha, well considering this is free IMAGE hosting, I didn't think you'd try uploading a song.

But i'll look into the precatch.  Thanks for the heads up :)
Title: Re: Free Image Hosting for everyone :)
Post by: Yegg on September 29, 2008, 12:13 PM
Quote from: Stellarchase on September 29, 2008, 04:07 AM
haha, well considering this is free IMAGE hosting, I didn't think you'd try uploading a song.

But i'll look into the precatch.  Thanks for the heads up :)

Lol. It wasn't even that late either, not quite sure how I missed that one.
Title: Re: Free Image Hosting for everyone :)
Post by: iago on September 30, 2008, 10:04 AM
When you hit "browse" and submit a form, your browser submits the name, the data, and everything else, all at the same time. As such, there's no way to pre-check without some voodoo (Javascript would probably work, if you're into the black arts).
Title: Re: Free Image Hosting for everyone :)
Post by: MyndFyre on September 30, 2008, 01:20 PM

String.prototype.endsWith = function(str) {
    return this.match(str + '$') == str;
};

function validateUploader()
{
    var valid = false;
    var uploader = document.getElementById('uploader');
    var validExtensions = [ 'PNG', 'GIF', 'JPG', 'JPEG' ];
    for (var i = 0; i < validExtensions.length; i++)
    {
        if (uploader.value.toUpperCase().endsWith(validExtensions[i]))
        {
            valid = true;
            break;
        }
    }
    return valid;
}

[/black-arts]
Title: Re: Free Image Hosting for everyone :)
Post by: DeathRoad on June 15, 2009, 02:15 AM
I use imageshack.us - its fast and does the job. It is aswel as simple to use and it gives you the Direct link to that image.
Title: Re: Free Image Hosting for everyone :)
Post by: chrish4161 on April 30, 2010, 09:42 PM
Quote from: Stellarchase on September 28, 2008, 01:33 PM
Hey guys, I made http://www.imglot.com/ for some free image hosting for you.  The server will be up as it's prepaid for quite some time.  I've got enough hard drive and bandwidth as well.  Hope to see you guys use it, it's probably one of the faster servers as well.

Thanks :)
Well I would like to appreciate the work of yours that you are developing the server or the hosting plan for uploading the images but I am afraid to say that the uploading process is pretty slow overhear and sometimes the format is not supported so I suggest to change the settings of your server.
Title: Re: Free Image Hosting for everyone :)
Post by: smithshn on May 17, 2010, 11:41 AM
If the extension typically represents an unsupported audio format, a message window should notify the user and ask if they would like to continue anyway. If they decide to, then it should check the file data for the format. I hate having to wait forever for something to upload just to find out that it's not supported.