The free storage size is 1GB, please see the below URL for details.
http://code.google.com/intl/en/appengine/docs/quotas.html#Datastore
And you can add extra storage size by enabling the billing, please see
the below URL for details.
http://code.google.com/intl/en/appengine/docs/billing.html#Billable_Quota_Unit_Cost
My code is basically designed for GAE.
However there are still a lot of different solutions to saving data to
other repository instead of GAE, but you must write the code yourself.
For example, You can modify the 'action' and point to your URL that
can receive the uploaded files and process the job of saving files.
Then send the file getting URL back to GAE.
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="hidden" name="fileOwner" />
<div>FileId: <input type="text" name="fileId" size="50" /></div>
<div>FileObject: <input type="file" name="upfile" size="50" /></div>
<div><input type="submit" name="submit" value="Upload" /></div>
</form>
But I don't totally understand why you just need the "upload form"
here at GAE.
Since you have another hosting service, you can put the upload form on
that host, don't you?
Best,
tytung
> sample code? Thanks, my e-mail is:
hyll...@gmail.com, please contact me