Tagged Questions
The image-upload tag has no wiki summary.
6
votes
2answers
580 views
Store user profile pictures on disk or in the database?
I'm building an asp.net mvc application where users can attach a picture to their profile. This picture will obviously be displayed in the profile, but other parts of the system too, like a messaging ...
6
votes
3answers
7k views
Best practice for uploading and image file with Django Forms (Django 1.0)
could you please help me to get image upload working on a view with django forms
Models.py
class User_Profile(models.Model):
user = models.OneToOneField(User, unique=True, related_name='profile')
...
5
votes
3answers
6k views
How do I Pass an Image from Flash to ASP.NET?
Quick version:
How do I get an image that was generated on the users browser back to the server?
The current plan is this:
The Flash developer will convert the bitmap to JPEG
He will then POST the ...
3
votes
1answer
151 views
How can I save multiple images to a temporary folder to preview before confirming the upload?
I have a site where I would like to let users select multiple images to upload to the site, show them a preview of the images they uploaded and then give them the option to either change any of the ...
3
votes
2answers
571 views
processing an image upload form in django: when to use save() vs chunks() vs cleaned_data?
I have successfully uploaded an image using the following code:
views.py
from django.conf.urls.defaults import *
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts ...
3
votes
3answers
251 views
In Drupal 6, what's the quickest way to set up a WYSIWYG editor with code syntax highlighting and image upload?
I've seen numerous posts in random places about how to set up a WYSIWYG editor for Drupal 6. I've had luck with CKEditor and FCKEditor via the WYSIWYG Drupal module. All is well there, but I hit a ...
3
votes
1answer
3k views
How to upload image to remote server in iphone?
I am trying to upload a image which i am clicking with the help of the camera. I am trying the following code to upload the image to the remote server.
-(void)searchAction:(UIImage*)theImage
{
...
2
votes
1answer
106 views
Having a succesfull image upload in mvc 3 but when editing the image goes away
I'm reading Pro ASP.NET MVC 3 Framework by Apress. I'm following the example of uploading and displaying images. The problem is that it works fine when uploading images to products, but if I later ...
2
votes
1answer
41 views
How to submit a file without POSTing it to the server?
I'd like my users to be able to upload a picture to my server and without having them switch pages have that image bounced back to a div on that site once the upload has finished.
This is for a ...
2
votes
1answer
132 views
image uploading too slow php
i am doing multiple image upload with php using ajax . i am submitting the image upload form with file inputs targetted to a hidden iframe .
after that i do 'move_uploaded_file()' and then i ...
1
vote
1answer
54 views
Codeigniter multi image upload with folder create
first please be gentle im a really big begginer.
Ok im making a real estate site and i really have no clue, i tried several things but i cant make it work.
My problem is when i add a new real estate ...
1
vote
1answer
146 views
asp.net : A generic error occurred in GDI+
I create an asp.net 4.0 web application which has a web service for uploading images. I am uploading images by sending the image in form of Base64 string from my mobile app to the web service.
...
1
vote
1answer
248 views
How to upload image from C# application to SQL Server 2005 [closed]
Possible Duplicate:
Upload image to server using C#/.NET and storing filename in DB
How to upload image from a C# application to SQL Server 2005
1
vote
0answers
137 views
rails 3 saving default image while uploading using paperclip
i use paperclip to upload images to the server in rails 3. If the user didn't choose any file to upload i want to store a default image in the server i.e., storing a default image in different size ...
1
vote
1answer
464 views
How do I find an image generated by Dragonfly with Cucumber/Capybara?
In the comments to the solution for How do I find an image on a page with Cucumber/Capybara, somebody asked:
I can't seem to figure how to get this
to work with URLs generated by
Dragonfly. ...
1
vote
2answers
336 views
Best Multi-Image Uploader for Attached Functions
Let me better explain this title.
What I am looking for is an image uploader that uploads multiple images (around 200 would be ideal). The image uploader would need to be able to handle:
a) Some sort ...
1
vote
2answers
773 views
Django image file uploads
I just can't figure out how to upload images in django. I've read dozens of blog posts and questions here, but most of them just confuse me more.
Here is what I have so far. This is my model:
class ...
1
vote
1answer
197 views
Codeignter and GD image manipulation
In codeigniter I am creating an application that allows the user to upload multiple files in one go, to this I am using this library, ...
0
votes
1answer
32 views
php image upload with jquery post
ı want to upload image with jquery post. ı dont want to use form.
the problem is ı just got image name, ı cant use this:
$size=filesize($_FILES['image']['tmp_name']);
$copied = ...
0
votes
1answer
18 views
Asp:File Upload losses value inside update panel(mode=conditional) when below events has autopostvalue set to true?
After i upload a image in "UploadImage" ctrl i clicked on below Radio Butons "rbtnDisplayDetails_Yes , rbtnDisplayDetails_No" the UPload ctrl losses value as soon as... also the page gets refreshed ...
0
votes
1answer
24 views
creating jpeg image data for jquery file upload script
I'm using the Jquery File Script to replace my existing upload script. In my current script I capture the raw image data and push it to my database but it doesn't seem to work with the jquery upload ...
0
votes
0answers
80 views
Upload image file in server using ASIHTTPRequest from IPhone app
I want to upload images in server using ASIHTTPRequest library in my IPhone app.
For image upload, i am using ASIFormDataRequest to upload into server.
I have tried the below codes in my app but it ...
0
votes
0answers
35 views
getting blank 'temp_name' in image upload
I'm working in my site which is in zen cart, actually a want to add a little fuctionality on it, and that is.... When i upload a image for a product i also want to create a thumbnail size of that ...
0
votes
1answer
32 views
Multiple File upload isnt working, nor is is_upload_file
I cant seem to get this thing to work right, I will think I have it and something else wont work. Take a look...
I am trying to upload multiple files, here is my php, as it sits it always says there ...
0
votes
2answers
78 views
Save Image in MySQL via C# application
I have a client application in C#, which is meant to take in the location of an image (DataType: VarChar). This application is then supposed to invoke a web service, which in turn will store the Image ...
0
votes
1answer
58 views
Magento File/Image Upload on Front Product View
I want to add file uploader on front product view of product. here are some simple steps which describe its working.
currently page loads with a big product image which has 4-6 image map points.
on ...
0
votes
1answer
72 views
Multiple File uploads using .ashx
I have been looking at this for several days now with no success. I am trying to create a multi-file upload system for a website. I have tried several jQuery plugins, including SWFUpload and ...
0
votes
1answer
35 views
Codeigniter multi image upload error message
I have a problem with my multi image upload.
The code
function tester($yourUniqueId){
$this->load->library('upload');
for($i=0; $i<count($_FILES); $i++)
...
0
votes
0answers
52 views
CKFinder 2.1 Multiple Uploads and Hooks
There seems to be an issue with the use of Hooks and the new multiple file uploads. Trying to call the AfterFileUpload hook when the flash uploader is used does not work.
Hook call being used:
...
0
votes
2answers
33 views
How should I setup my table for image uploading for users?
I want to create an image upload for users to upload a profile picture and be able to resize it. However, I was wondering how should I do the database table. I think I should have a field for user id, ...
0
votes
4answers
61 views
How do I allow users to select multiple files out of a single input field using php and jquery?
I have a rental listing site where users can create a page and show photos of their listing. I have created a form with multiple file input fields for the users to pick the files to upload as well as ...
0
votes
1answer
44 views
Upload Pic(s) from blogger and showing them on blog created in Symfony 1.4
I have created a blog application with Symfony 1.4(ORM:Doctrine).
Bloggers can blog via backend only.I have also integrated TinyMCE for better formatting.
My question is how can a specific blogger ...
0
votes
2answers
166 views
how to validate image size and dimensions before saving image in database
I am using ASP.NET C# 4.0, my web form consist of input type file to upload images.
i need to validate the image on client side, before saving it to my SQL database
since i am using input type= ...
0
votes
2answers
85 views
Really Confused about ajax image upload
Over the last couple of weeks I have asked a couple of questions on this subject. It seems as though the harder I try to figure this out, the further away from a solution I appear to be. That may ...
0
votes
0answers
80 views
Drupal wysiwyg image upload problem in IE
In the project I'm on we have installed the CKEditor WYSIWYG editor in Drupal 6. We also added an Image upload plugin to it, but it in IE it bricks the whole editor and produces following javascript ...
0
votes
0answers
43 views
Upload image and same multiple versions with many resolution best practice
I'm wondering what is the best practice of uploading an image and saving multiversions of this image with different resolution?
one solution is to save only one version and use handler to resize on ...
0
votes
1answer
80 views
How to upload an image with other form inputs via ruby on rails?
I was wondering how to implement an image upload using ruby on rails v3?
What I got so far is the image is uploaded to my public/uploads directory but in the database the hashed value from the form is ...
0
votes
2answers
45 views
PHP thumbnail generation
I'm trying to generate thumbnails of the images my users upload. I have got the basic functionality to work by having my thumbnail class generate a thumbnail that is 50% of the width and height of the ...
0
votes
1answer
54 views
File rename on upload
I have this very basic file upload script:
$prefix = "sitename";
$targetPath = "/uploads/sitename/"
$prefix = $prefix . "_";
$filename = $prefix . md5(basename($_FILES['image']['name'])) . ...
0
votes
1answer
117 views
How to handle image uploads with jquery post submit
I have the html form and i am submittng the form with jquery with following
var queryString = $('.form1').formSerialize();
$.post('book/create/', queryString);
But if i submit form without ajax ...
0
votes
2answers
228 views
Which is best way to store uploaded images in php website
I am making the small finance management website in php. I have to store quite a few images for my application but i am confused where should i store them. My Scenario is
The user will have
Saving ...
0
votes
2answers
434 views
cakePHP meioupload, upload image to a different folder for each model
I use meioupload to upload images in cakePHP, i use a table called 'attachment' to save the uploaded image's information, this is the structure of my attachment table:
CREATE TABLE IF NOT EXISTS ...
0
votes
1answer
177 views
Web Based WYSIWYG Editor with Photo Upload support
Does anyone know what my options are for Web-based WYSIWYG editors (the type which acts like a textarea but produces HTML) are?
I need one with support for image uploads - This would be for a basic ...
0
votes
1answer
142 views
Unlink only if there is a new image to upload
Issue:
Hello,
I have an edit page which enables the client to update the sale information, what I would like to do is that if a new image is not uploaded it will keep the original but if a new ...
0
votes
1answer
120 views
Can anybody suggest some open source of image upload in JSP?
I want to implement a function that support image upload from client side to server side
I search for long time but I cannot find good source
Although there are many source, but it mainly requires ...
0
votes
2answers
1k views
Magento image uploader in Admin product page doesn't work
All the permissions are correct and the php.ini is fixed, and there's no problem with SSL or secure admin interface but it still won't upload.
I click on a product, go to the Image section, select an ...
0
votes
2answers
388 views
PHP Image Upload object won't create directory on windows
I'm writing a class that excepts a product_id and a $_FILES array as it's constructor. The class saves these variables and uses them to create a new directory named by product_id and attempts to copy ...
0
votes
1answer
423 views
Uploaded django image ends up with wrong filename
I don't know if this is expected behavior or not, but if I create a project with a single model with an ImageField field and upload a photo with the filename "árvórés", the uploaded file is saved with ...