The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
9 views

Workaround Django error on model delete due to empty file field w/Thumbnailer

I have a model with an EasyThumbnailer file field, using Boto storage and UnDelete, and some instances of that model have an empty file field that prevents me from deleting them: ...
0
votes
1answer
92 views

Extjs filefield button only with an image

Please help me. can I modify the browse button with an image? So, if user clik on image, browse dialog is shown. Im newbie with Extjs. I try with iconCls, but its not working :/ please check this ...
0
votes
1answer
98 views

How to save a local file in a FileField in django

I need to get a file through a SOAP Web Service and save it into a model using django's FileField. I've done the following: In my SOAP Wrapper, I save the file in a temp directory # ... get the ...
0
votes
2answers
61 views

Django models.FileField - store only the file name not any paths or folder references

I'm using Django's Admin site to manage some data - but not building a webapp. I need the file upload field to store only the file name in the database. Right now I can get absolute paths like: ...
0
votes
0answers
56 views

rails file_field full path

I have form to upload user *.rb file. <h1>File Upload</h1> <%= form_tag ({:controller => 'upload_plugin', :action => 'uploadFile'}) %> <p><label ...
0
votes
1answer
68 views

type error while creating a django model having a file-field

Getting the following error while trying to create(&save) a django model with file field : TypeError at /admin/app_name/template/add/ coercing to Unicode: need string or buffer, int found ...
-2
votes
2answers
77 views

How to display current image name from database in file field when editing in php? [closed]

I am using a file field in my webpage,my problem is when i clicking edit option in my webpage i want to show the current image name from database in the file field,now i cant show the image name so ...
0
votes
1answer
399 views

How do you style form file fields with zurb foundation?

I'm trying to create a button with Zurb Foundation using Rails for uploading a picture. I tried this: <input class="tiny round disabled button" name="picture[picture]" type="file"> ...
0
votes
1answer
49 views

Drupal7 copy filefield to another node at submit

I have a content type that has unlimited filefield fields in addition to other fields. At node save/submit I would like to create an additional node for each file in the field, and assign that ...
0
votes
2answers
66 views

Django FileField, how to avoid long file copy delays?

I have the following class: class VideoFile(models.Model): media_file = models.FileField(upload_to=update_filename, null=True) And when I try to upload large files to it (from 100mb up to 2Gb) ...
0
votes
1answer
289 views

Extjs File Upload with C#

I know how the xtype: filefield works and I also realized that file upload does not use the regular ajax method to read and write data to database... I can set up filefield normally and when I click ...
1
vote
1answer
274 views

Yii: ClientSide Validaton on FileField and TextField

I have a yii form with a file field and a normal text field for supplying an external image url. I managed to get a normal server validation working which checks that only one of the two form fields ...
0
votes
1answer
602 views

Drupal 7: Rename files on upload (via filefield)

I am looking for a way to rename files that are uploaded by users through a filefield. For example, rename user profile photos using uniqid. I found a good solution for D6 at "Drupal 6: How to Change ...
0
votes
1answer
91 views

How to get filesystem path from mongoengine FileField

I need to obtain path from a FileField, in order to check it against a given file system path, to know if the file I am inserting into mongo database is already present. Is it possible? All I get is ...
0
votes
2answers
172 views

Drupal 7: multiupload with file entity fields support

Is there a way to have a multifileupload with "file entity"/"file entity inline" support?
0
votes
1answer
203 views

How to save via mongodb shell a file served by GridFS in a mongoengine/Django FileField

I have a file saved on GridFS, via mongofiles $ mongofiles -d dba put file.txt connected to: 127.0.0.1 added file: { _id: ObjectId('50c0a48f8d1d53325a7d7b01'), filename: "file.txt", chunkSize: ...
0
votes
1answer
237 views

File field tag is not displaying value in the browser

I am using the following line in my .html.erb file <@= file_field_tag 'file', :class => 'upload', value => 'index.html' %> When it is rendered in the browser, it is not displaying the ...
0
votes
0answers
213 views

Sending django FileField content as an email attachment with smtplib in python?

I want to send emails with various attachments. These attachments are stored as FileField in a django model. I manage to create the mail and to send an attachment, but the attachment is empty, whereas ...
0
votes
1answer
155 views

Watir. file_field clears in IE9 after setting the filepath

When I try to set the path in a file field using browser.file_field(:name, "upload").set(file_path), the file field is cleared on IE9 after setting the file path. The same code used to work fine, ...
0
votes
1answer
83 views

File is not uploading when there are multiple fields in model form

I am unable to upload file if there are multiple fields in my model other than file field. I didn't get any error on the page but the page simply displays same page without uploading of my image. ...
1
vote
0answers
121 views

Rails: set file to file_field

Having the following form: = form_for company, html: { multipart: true } do |form| = form.label :logo, 'Upload Image' = form.file_field :logo I want to set file_field value to another user ...
0
votes
0answers
169 views

Trying to validate Filefield using wtforms

I am trying to capture the filename of an uploaded file via a wtforms FileField in my validator def checkfile(form,field): print form print field the 'print forms' ...
1
vote
1answer
103 views

Easiest way to display uploaded (image)file?

I'm trying to my first attempt at django file-uploading, and all i need at the moment is a way to display an uploaded image (png/jpg) to the user that uploaded. No need to save it anywhere. My ...
2
votes
0answers
424 views

How to click on a file field button implemented in ExtJS using Selenium?

I an testing an application implemented in ExtJs. I need to click on a button implemented as a filefield to upload a file. I am not able to click on the button using Selenium IDE. Infact I have tried ...
0
votes
0answers
148 views

file_field rails as clickable picture

i wan't upload an image via paperclip. Thats working fine. How can i change the file_field as an clickable picure like in some social networks if you had no profile-photo uploaded. I don't like the ...
1
vote
2answers
367 views

Renaming files in Django FileField

I know that there is a very similar thread here, but I cannot find the solution to my problem. I need to rename a file which is save in django models.FileField I tried this os.rename(old_path, ...
0
votes
1answer
152 views

Django: Save a FileField before calling super()

I need to save an uploaded file before super() method is called. It should be saved, because i use some external utils for converting a file to a needed internal format. The code below produce an ...
0
votes
1answer
108 views

FileField not uploading the file

I am relatively new to python and Django. The form is displaying itself, but when i choose a file and hit save, the form just refreshes itself and the selected file in the FormField disappears and ...
0
votes
1answer
52 views

Display maximum number of fields

When adding a node it only displays one upload field at a time, however I allow for 3 images to be uploaded per node, so I would like to display this maximum number fields to the user adding the node. ...
0
votes
3answers
177 views

django - set the upload_to in the view

I have a model for storing files: class AFile(models.Model): path = models.CharField(max_length=256) name = models.CharField(max_length=256) file = models.FileField(upload_to=get_path) ...
0
votes
2answers
54 views

How to deselct something when selected previously in FileField Django Form?

I have a form which includes filefield to upload some files. Sometimes what happens is at first, I select one file from browse to upload but then i realize i do not want to upload it anymore.How can i ...
0
votes
0answers
124 views

Drupal cck filefield with remote upload

Is there a way to change the path of the upload in cck filefield for drupal 6 to upload a file in a remote server? I tried with filefield sources but it does'nt do what i want because it makes a copy ...
0
votes
1answer
301 views

Import CSV - No such file or directory

When I want to select a file via file_field, it gives me the error that my file is 'nil'. Here's the error: "No such file or directory - Book1.csv" May I know why? Below are the codes: controller ...
1
vote
1answer
94 views

File field is showing that my previously uploaded files are 0 bytes

Got a bit of a weird issue here. I recently started doing maintenance on a website that I did not originally build. The Drupal site has a bunch of nodes with an audio file field, and a jQuery player ...
0
votes
2answers
157 views

How to get the link of the file in a FileField?

how can I get the link of a FileField? I tried the url field, but it gives the file path: In [7]: myobject.myfilefield.path Out[7]: u'/home/xxxx/media/files/reference/1342188147.zip' In [8]: ...
1
vote
1answer
1k views

Extjs4, File uplaod

I'm tring to post file to server using Extjs4.1 filefield. but an error occur, it say result is undefined. :( In form, without filefield, it works fine.' This is the form. and it load OK. the ...
0
votes
1answer
225 views

Use FTP rather than HTTP for file transfer in Django

Is there any way to transfer huge files in Django using FileField..because eveytime i do using simple upload handler the Connection Timeout error occurs because of huge traffic generated. I was ...
0
votes
0answers
115 views

Drupal 7 - FileField - After Selecting File “Choose File” - browser locks for 20 seconds

I'm thinking it's client side, I can duplicate this in Chrome, Firefox. So either using the default Node edit form with a file field, or using form api with type=file... Anytime I select a file ...
4
votes
2answers
199 views

django accessing uploaded files in model custom save, best practice?

Ive recently been experiementing with using django I want to be able to run an uploaded file through imagemagick on the model save function, I realised this wasn't possible due to the file not being ...
0
votes
0answers
48 views

How can I attach extra fields to a file field in Drupal 7, or get Field Collection to recognise the node it's attached to

I'm using the 'file' field in Drupal 7 to upload software relevant to a product. I'd like to add extra information such as version number, OS, etc. so I can later filter on this information. I tried ...
0
votes
1answer
408 views

Disabling submit button file_field

I have a file_field option where I navigate to a csv file to upload a series of users. I currently am able to click on the upload users button without a file being added. I want to ensure that I catch ...
0
votes
1answer
402 views

Django: Change filefield name from admin interface

I'm developping a Django interface and i have a problem changing name of an uploaded file. Here's a part of my model class Test(models.Model): var = models.IntegerField() var1 = ...
0
votes
1answer
118 views

Django File Uploads using path

If I upload a file to my website via Ajax, and I have the path of it, is there a way I could submit this path to a Django form's built-in FileField?
0
votes
1answer
56 views

Django FileFields Using Values of DB Model

I have defined these models, class Header(models.Model): date1 = models.DateField() class Details(models.Model): header = models.ForeignKey(Header), field1 = ...
7
votes
4answers
955 views

How to mix Django, Uploadify, and S3Boto Storage Backend?

Background I'm doing fairly big file uploads on Django. File size is generally 10MB-100MB. I'm on Heroku and I've been hitting the request timeout of 30 seconds. The Beginning In order to get ...
1
vote
1answer
91 views

Making Drupal's FileField output HTML5 compliant

I'm trying to remove the "size" attribute from Drupal's FileField output. Right now, it outputs a tag like this: <input type="file" name="files[image]" class="form-file" id="edit-image" ...
0
votes
2answers
1k views

how to download a filefield file in django view

I have filefield in my django model: file=models.FileField(verbose_name=u'附件',upload_to='attachment/%Y/%m/%d',max_length=480) This file will display in the web page with link ...
1
vote
1answer
238 views

How to prevent Django from changing file name when a file with that name already exists?

In my case I allow user to upload an avatar picture and use user_id as filename, simply. So there will be 1.jpg, 2.jpg, etc. However I found if I upload a new avatar for some account that already has ...
2
votes
1answer
407 views

Renaming django FileField files

Some additional features were added to a django application, and as a result the upload_to function also expanded. Since django by default stores filenames in the database, and files on disk, no harm ...
1
vote
0answers
104 views

Wrong path return by a FileField in Django

I've got a FileField with the following upload_to option: def get_file_path(instance, filename): return os.path.join('rapports/rapports_journaliers', filename) class ListPCA(models.Model): ...

1 2 3