File upload is the process of sending files to your web server using standard forms.
-1
votes
0answers
5 views
can multiple file upload files pass to next page without uploading?
I am designing multi step login process. in that user have to upload files. after submitting all info get displayed on the same page without refreshing. i want to show all the files he has selected ...
0
votes
1answer
9 views
Symfony 1.4 sfThumbnail not generating thumbnails
I have an upload form, it works well, the photo is being uploaded but the problem is that the sfThumbnail plugin doesn't seem to work. No thumbnail is being generated. Here's my code:
// ...
2
votes
3answers
12 views
Files are not changing when I update them via FTP
I made some changes to a CSS file, uploaded it and saw no change. I cleared my browser's cache, repeated the process and still nothing. I also tried another browser and then experimented with other ...
0
votes
1answer
12 views
basic file upload in rails with form helper
I'm trying to get my head around the basic file upload with the form helper in Rails using the edge rails guide (I'm using rails 4.0.0.rc1 and ruby 1.9.3p362) before I get into Paperclip or ...
2
votes
1answer
35 views
How to UPLOAD a file into my JS application?
I am working on extjs 4.2 application. Trying to create a menu toolbar where I can add and delete files. For example:
When I press Open, I want to see the file browser window. And when I finish ...
0
votes
0answers
5 views
blueiml file upload error slideshow
I am using the jquery file upload program of blueiml.
The problem is that the image isn't loaded in the slideshow.
The slide show is opened, but it's always white.
May somebody help me? thanks
0
votes
0answers
7 views
html5 file chunking and httphandler
I am using HTML5 to get file and slice the file. And then sending file chunks XMLHttpRequest to HTTPHandler. The HTTPHandler is implementing IHttpHandler and IRequireSesssionState. So the requests are ...
0
votes
1answer
25 views
What would be a valid OleDbConnection ConnectionString for an uploaded file?
I am certain I have missed something obvious.
A simple task is before me: 'Upload an Excel (2003) file via ASP.NET on a Forms page and push the contents of that file to a DataTable in preparation ...
2
votes
1answer
31 views
PHP: Send uploaded file with curl without uploading to initial server
I currently have a site which allows file uploads. When the user submits the form, I run a php script that sends off a curl request to my api.
Currently the php request looks like this:
$params = ...
0
votes
1answer
17 views
Save file if error reading with Stream Reader
I am trying to parse a uploaded txt file. I need to save the file if there is an error parsing it. The problem is that the parser is using a Stream Reader and if an error occurs it just saves the ...
0
votes
0answers
19 views
Request remains in pending even if function on server hits the return statemant
I have an XMLHttpRequest that carries a file. On the server, everything works perfectly, the file is saved and after that the return statement is hit but in the browser console, the request is shown ...
1
vote
1answer
36 views
File name from $_FILES not playing nicely with apostrophes
I am working on an image upload flow and am running into a weird issue after testing it. We're trying to test it using the following file name:
...
0
votes
1answer
28 views
WWW fileupload using VB.NET or Access/VBA
I would like to ask if there's a possibility to upload files to a webserver or an ftpserver using VB.NET or Access/VBA.
I think if there are possibilities - VB.NET is more powerful than Access/VBA, ...
0
votes
0answers
13 views
Upload data to S3 via POST using AWS SDK for Node.js/Restify
I'm trying to figure out how to upload data to an Amazon S3 bucket via a RESTful API that I'm writing in Node.js/Restify. I think I've got the basic concepts all working, but when I go to connect to ...
-1
votes
3answers
33 views
which is the best way to store small amount of permanent data in asp.net [closed]
I have to store uploaded file version and previous file name and version permanently, moreover, I need to update and retrieve that information, but I'm not using any databases for this application. Is ...
0
votes
1answer
29 views
load data into file upload MVC3
Html code:
@using (Html.BeginForm("Edit", "RoomInfo", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<input type="file" class="multi" />
<p>
<input ...
0
votes
1answer
16 views
webdriver how to focus on file upload window when the window Minimized or Maximize the window
everyone,i have a problem about file upload.
i use pc A to remote logining pc B;
PS:pc B has eclipse and webdriver code ;
i maximize the remoting window(PC B), the file upload window can focus ...
0
votes
1answer
19 views
Openshift File Uploading in Java
I am doing a program to file-uplaod in the openshift. In this program I am upload whole files documents in the uploads folder, which is given default folder of the Openshift server.
I am using the ...
0
votes
1answer
28 views
Uploading CSV to Flask for background processing
I'm looking to use Flask to host a single-page website that would allow users to upload a CSV that would be parsed and put into a database. All of the database shenanigans are complete (through ...
0
votes
0answers
14 views
Strange! openZip routine fails when foldername contains “-cache”
The script below handles upload, extraction and transfer of .zip files
I have a strange problem that is occurring on one server (currently only one) in which when the zip file contains a folder with ...
0
votes
1answer
18 views
Unable to Submit a Form with 4 file upload fields on IE9
I am unable to upload a form with 4 file upload fields on IE9/Win 7.
I am trying to upload 4 files using a multipart form.
It works fine for 1/2/3 files but somehow doesn't work when I am selecting ...
0
votes
1answer
20 views
File Upload throught HTTPS
I'm not quite sure how I'm supposed to write it down, but simply,
I was wondering, if I have standard php uploading
move_uploaded_file()
if I install https on the apache server, do I need to do ...
-2
votes
1answer
22 views
primefaces fileupload and download PDF
Please, can anyone tell how can i implement some code to upload a PDF file to my database, using Primefaces ou just JSF?
The entity property is a BLOB.
att,
Diego Sabino
0
votes
4answers
35 views
RegularExpressionValidator error message fails to appear
I'm trying to add a check for file types to a file upload form:
<asp:FileUpload ID="FileUpload1" runat="server" />
<asp:RegularExpressionValidator id="FileUpLoadValidator" runat="server" ...
0
votes
0answers
22 views
Azure file upload
I'm using the standard file upload control on my site hosted with Azure:
<input id="input-file" name="file" type="file" />
I'm uploading to: MySite/images/profiles. Whenever I try to upload I ...
0
votes
0answers
15 views
Method for User uploading Large ZIP file to server
I am using OpenCart right now to allow customers to buy products from my website.
Once they have successfully purchased an item, I would like them to be able to upload a large file (preferrably via ...
0
votes
3answers
39 views
PHP - Upload an image file to other domain with CURL
I have two domain, as example site1.loc and site2.loc. In site1.loc i have a php form file like this:
<?php
$c_name = "";
$c_phone = "";
if($_SERVER['REQUEST_METHOD']=="POST"){
$c_name = ...
0
votes
0answers
4 views
file open dialog blocked on android
Hi i have a webapplication where the user is able to open a picture with the following code:
editImage: function (input) {
if (input.files && input.files[0]) {
var reader ...
0
votes
1answer
12 views
upload file to my server using pentaho data integration(pdi)
On my pdi transformations, a file is created and then a table on my database_1 is updated with the information on that file.
That work perfectly fine.
What i need now is to upload the file to some ...
0
votes
1answer
19 views
HttpPostedFileBase always returns null
I am using MVC 4 and I tried for upload file concept.
Here is my code:
<div class="complianceSubDiv">
<div class="complianceLeftDiv">
@Html.Label("Upload the file")
</div>
...
0
votes
1answer
20 views
Upload file in Ruby on Rails: how to choose the folder
I wrote a function in Ruby on Rails for uploading a PDF.
The file is uploaded to a folder in public, but every time I deploy to staging or production, the folder on the server seems to become empty.
...
0
votes
3answers
38 views
asp file upload control, which one should be use?
ok, i found this on internet to upload some files.
if (FileUpload1.HasFile)
{
//create the path to save the file to
string fileName = Path.Combine(@"E:\Project\Folders", ...
0
votes
1answer
31 views
HTML5 File upload with AngularJS
I'm trying to get angular to read the contents of a file that the user selects through an <input type="file" control. Even though angular does not have directives for file upload controls, it ...
0
votes
1answer
52 views
Is there a reliable way to limit the size of a file upload via java servlet?
I'm running tomcat and Java EE. I am using apache's FileUpload library to handle file uploads. This is working great actually except when a user tries to upload a large file. There is a way to set a ...
0
votes
0answers
30 views
Php issue uploading file zip
I'm having trouble with an application in creating, the user submits a file then it gets analized.
The issue I have is that I can't get the file to upload properly, when it reaches the 100% upload ...
0
votes
3answers
44 views
AJAX not posting to WebMethod
The Form:
<form action="upload-document.aspx" onsubmit="sendAndClose();" method="post" enctype="multipart/form-data">
<input name="fileToUpload" id="fileToUpload" type="file" />
...
0
votes
1answer
20 views
How to create a working drag and drop to upload view in MVC that works in IE9 without Silverlight dependencies?
I intend to create an ASP.Net MVC form that does the following:
1) Allows the user to drag a file from windows explorer into IE9
2) Once dropped in IE9, the file will then upload
3) The solution ...
0
votes
1answer
21 views
Simple Progress Bar to input file
I have a basic html form with a <input type="file" /> field:
<form class="form-horizontal" action='helper.php' method="POST" enctype="multipart/form-data"> ...
0
votes
1answer
45 views
How to programmatically cancel file upload in blueimp
i'm using the jquery plugin "file-upload"
With automatic upload, i wish i can cancel the uploads of some files before it starts (for any reason i would check server-side : duplicated file / file-type ...
-1
votes
1answer
50 views
How to upload file in Servlet/JSP with other input fileds or parameters? [closed]
I want to upload a doc file in Servlet/ JSP with additional information like file name and tag name etc.
Is it possible to upload file with other input fields of html form?
0
votes
0answers
14 views
Middleware issue with file upload in Node.js/Express when uploading files
I'm using https://github.com/aguidrevitch/jquery-file-upload-middleware to upload files.
Before I let a user upload files, though I want to perform an authentication check.
The uploading works fine ...
0
votes
0answers
60 views
BlueImp jQuery FIle Upload - Adding addition data to each file help [urgent]
I have recently undertaken a project to create a simple multiple file upload system where you can assign a title to each file uploaded. Now I was recommended to go with Blueimp's jQuery File uploader ...
0
votes
1answer
31 views
Processing HttpPostedFile.InputStream before saving using SaveAs()
I need to check if a file is compressed before saving it. I have created the following extension method to check if the file is compressed using ZipFile (from the SharpLibZip library):
public static ...
0
votes
0answers
25 views
.net image upload component for low bandwidth
I don't know if this is possible, or even if this is the right forum to ask this. Apologies if not. We have built a asp.NET application part of which allows clients to upload images. We are repeatedly ...
0
votes
0answers
16 views
Validating an uploaded file in a callback function, based on its content
I have a Symfony2 form entity validated by a callback function (See Doc). It works well :
/**
* Callback assertion to validate
*/
public function isValid(ExecutionContext $context)
{
if( ...
0
votes
1answer
12 views
File Input on FirefoxOS (Boot2Gecko!==Gecko?)
I was developing a webapp for firefoxos (Boot2Gecko) and noticed, that there is no file-picker when clicking on an input(type=file). I came across this bug and it seems as if there hasn't been any ...
0
votes
1answer
49 views
How to call UploadHandler.php with PHP - blueimp jQuery File Upload
Does anyone know how to upload images using PHP and calling the UploadHandler.php?
I'm not sure what information needs to be passed and in what format.
Here's what I have so far:
$prop="test";
...
-7
votes
0answers
49 views
How to upload zip file from android to web server?
I have xxx.zip file in my app internal storage. i want to upload this zip file into web server when user click the button. that zip file contains text files.
i need to send userid and filename when ...
1
vote
0answers
56 views
+50
phpBB remote file upload
I want to be able to upload a remote file to my server through phpbb without having the file downloaded to my PC first. How can this be achieved?
I have some simple code that I have tested and it ...
0
votes
2answers
52 views
Django ajax file upload
So i am trying to upload a file without any external plugins, but i am running into some errors.
<form method="" action="" name='upload_form' id='upload_form' >
...




