0
votes
1answer
48 views
PHP image file upload uppecase extension problem.
Hi,
I've a php script to deal with uploaded images.
it works fine if i upload a file like file.jpg.
But i got trouble if i try to upload file.JPG. Even if its the same file renamed.
The code:
…
2
votes
3answers
57 views
Is it possible to upload a whole folder instead of multiple files using Javascript?
Is it possible to upload a whole folder instead of multiple files using Javascript? If so, what is the approach. If there is no straighforward approach, is there any workaround to achieve the same? I …
0
votes
1answer
20 views
How to create an instance of an uploaded file programmatically in rails
I want to create an instance of "uploaded_file = ActionController::UploadedTempfile" from a File.new("path/to/file"), and then go on to do processing on "uploaded_file" like so:
uploaded_file = …
0
votes
1answer
16 views
C# - I cannot reference HttpPostedFileBase
I am using MVC .NET in a distributed environment with CSLA and I can reference HttpPostedFileBase from one of my web layers (eg Website.MVC), but I cannot reference HttpPostedFileBase from a separate …
0
votes
3answers
42 views
File upload PHP problem
Hi there,
Got this working
$i = 0;
foreach ($_FILES["image"]["error"] as $key => $error) {
if ($error == UPLOAD_ERR_OK) {
$tmp_name = $_FILES["image"]["tmp_name"][$key];
$image_name = …
1
vote
6answers
66 views
Is it theoretically impossible to get the size of a file that is going to be uploaded using Javascript?
How about
<script language="JavaScript">
function A()
{
var oas = new ActiveXObject("Scripting.FileSystemObject");
var d = document.a.b.value;
var e = oas.getFile(d);
var f = e.size;
var …
1
vote
3answers
46 views
Ajax file upload
Hi,
I have a form that upload a file, I would process the file inline with ajax but I don't know how I can get the data with ajax.
In my script I use this method:
$.ajax(
{
…
2
votes
2answers
40 views
Uploading & extracting archive (zip, rar, targz, tarbz) automatically - security issue?
I'd like to create following functionality for my web-based application:
user uploads an archive file (zip/rar/tar.gz/tar.bz etc) (content - several image files)
archive is automatically extracted …
0
votes
7answers
81 views
Php upload file
The code looks like this:
html
<form action="contact.php" method="post" enctype="multipart/form-data" onsubmit="return Validare();">
<input type="text" name="nume" value="Nume" …
0
votes
4answers
54 views
How can I create my ASP.NET MVC controller actions so they accept Files?
I've been working all weekend on a Messaging system for my website so users can send and receive messages on my site internally.
I have my table schemas worked out, and right now I can send basic …
1
vote
0answers
32 views
upload pics in stackoverflow [closed]
hi
how can i attach .png, .jpg files here in stackoverflow?
Thanks
0
votes
2answers
42 views
Buffer cannot be Null Paramter:Buffer
Hi all,
I am working on an image upload from iphone to an C# web service. Here is the iPhone code
NSString *soapMessage=[NSString stringWithFormat:
@"<?xml version=\"1.0\" …
0
votes
1answer
19 views
FCKeditor Upload feature not working, no error
Using FCKeditor (2.6.5) When I use the upload feature it acts as if it has worked (no errors) but does not upload a file. I can view other files in the upload folder with the file manager that I ftp …
0
votes
1answer
16 views
SVN FTP Upload with multiple FTP accounts
We have multiple ftp accounts for each website and recently have set up the folder with all the websites inside of a SVN Repository. What would be the best approach to set it up so it would upload on …
0
votes
1answer
37 views
how to preview an image before upload in various browsers
I want to show preview of an image before it is uploaded. I have found a partial solution that works for ie6 and firefox, and havent yet tested it in ie7 or ie8. But i want a solution that works in …
