|
I'm planning to let my site users upload photos through their mobile devices specifically Iphone.Currently, they can only upload photos through their desktop or laptop.What would be the best approach using ASP.NET 3.5 and Visual Basic?Thanks in advance...
Started by joe capi on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Write a web service which accepts photos and write a client on the iPhone which sends to your web, or set up a system that allows users to e-mail in their photos to a unique e-mail address associated.
|
|
I'm creating an site which allows users to upload photos. It's a linux server.
I was wondering what would be the best directory structure to to save these images? And is there a limit of number of files a folder can have?
Would it be better to save every...
Started by Lost_in_code on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can determine this figure by executing:
df -i
The figure reported as IFree is the upper bound on the number of files you can hold in a directory, but... .
The only limit to the number of files a directory can hold in linux in the number of free inodes .
|
|
My specific situation
Property management web site where users can upload photos and lease documents. For every apartment unit, there might be 4 photos, so there won't be an overwhelming number of photo in the system.
For photos, there will be thumbnails...
Started by resopollution on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit on caching: If you want to cache the file while the user uploads it to ensure the operation finishes as soon as possible, dumping it straight....
The data has to go through a lot more layers when you store it in the db .
No contest.
File system.
|
Ask your Facebook Friends
|
My website would like users to upload their photos...but how do I keep our server safe from harm? Allowing only JPGs should avoid virus trouble, but what if someone selects a 10Gb file - will that slow the whole website down?
We're using Classic ASP and...
Started by Magnus Smith on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In Persists....
Check it out
http://www.codeproject.com/KB/aspnet/FlashUpload.aspx
This appears to enforce file upload size: http://www.aspupload.com/
I am not sure how it handles it.
There is a great component that uses Flash to upload files.
|
|
While uploading new photos to a linux server with PHP, I'm having to give them unique names (using it's file name is ruled out). There's no interaction with a DB so getting unique IDs is also not possible.
I thought of using DATE+TIME.jpg , but that's...
Started by Lost_in_code on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
upload too much..
|
|
I got a javascript code like this to validate the file extension for my users when they upload pics on my server.It should allow both .jpg and .jpeg photos however only .jpg files are accepted and it invalidates if the photo ends with .jpeg.Here's the...
Started by jamal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Probably best to set a flag in the comparison and not... .
This means it won't get a chance to try the second extension in the list .
Looks to me like it is going to compare the file extension against the first item in the list (.jpeg != .jpg) and return 0 .
|
|
The default photo uploader used in Facebook is based on Java. It opens up fine, I can choose the photos and Facebook even pops up a dialog showing the upload progress. After it is done, I always get an Upload Failed message. I end up using the Simple ...
Started by Ashwin on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
It! :D happy day!! :D
Sometimes antivurus blocks it as well so turn it off while you try to upload.
|
|
Some photos have not been uploaded on instant upload. if i ask to load all the photos, it starts from zero and uploads all the photos i already have. is there a way to make it upload only the missing photos?
Started by ddrago on
, 2 posts
by 2 people.
Answer Snippets (Read the full thread at google):
Hello Does this happen on both wifi and the wireless network? Where on your phone are your photos.
|
|
After looking I did come accross this post on the facebook forums:
link
They are feeding the facebook object a UIImage. That seems logical, but where is this documented? The API documentation is generalized to all platforms. Where are the iPhone specific...
Started by Corey Floyd on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Self; dialog.permission = @"photo_upload"; [dialog show]; } - (IBAction)publishPhoto:(id)target.
|
|
Have just enabled instant upload- All photos on my phone were uploaded, however I added two not taken on my phone but sent to me and then put in album. Why won't these two photos upload. What do i have to do to get them to upload? Thanks
Started by WB on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at google):
Hello instant upload only upload those picture,which you have taken from your phone native camera.
|