Multiple File Uploader Script?
May 23, 2009
I've been trying to find a goof file upload script for a while. No luck really.I operate an internet radio station, and frequently artists want to send me music for airplay consideration. I've been struggling along giving them FTP login information and letting them send files using FileZilla or the like. You can probably imagine all the questions about how to do it I get!I'd really like to find an upload script to plug into my suite that would provide the capabilities found at MySpace or just about any photo site like Photobucket, that allow you to select multiple files from the local machine and have them uploaded to some folder on the web server. A progress bar would be nice, and the ability to select a folder rather than just selecting many individual files would be a plus. Nice Ajaxy interface gymnastics are desirable, too.
View 9 Replies
ADVERTISEMENT
May 15, 2011
Can anybody recommend a good free uploader that allows multiple file selection at the same time?
View 11 Replies
View Related
Mar 20, 2010
I have a site which requires the user to upload multiple images at once. Using jQuery I have set it up so that the user can select individuals individually (using the file browser) and then upload them all at the same time bty clicking 'Upload'. However, this is not really good enough...
What I need to happen is that when the user browses their machine to select their images, they are able to select multiple images through CTRL+click. At the minute they can only select one image at a time.
As I already have the upload process working perfectly, I would prefer that I was able to keep this intact and simply add some javascript which allowed multiple images to be selected by the file browser at the same time. I would also prefer, if possible, not to use flash.
View 1 Replies
View Related
Nov 30, 2011
I'm trying to get the full path of a file with a file uploader form with FF. I see HTML5 permits this but I cannot find any concrete examples to access this value from a normal html file uploader form.
View 2 Replies
View Related
Jul 28, 2011
i'm looking for suggestions on a jquery-based script that allows me to create a form along with the ability to upload a file at the same time.
View 3 Replies
View Related
Mar 20, 2010
I have a site which requires the user to upload multiple images at once. Using jQuery I have set it up so that the user can select individuals individually (using the file browser) and then upload them all at the same time bty clicking 'Upload'. However, this is not really good enough...
What I need to happen is that when the user browses their machine to select their images, they are able to select multiple images through CTRL+click. At the minute they can only select one image at a time. How can this be achieved?
As I already have the upload process working perfectly, I would prefer that I was able to keep this intact and simply add some javascript which allowed multiple images to be selected by the file browser at the same time. I would also prefer, if possible, not to use flash.
View 1 Replies
View Related
Nov 24, 2011
Using the search box in plugins to find a file uploader. File, upload, uploader, file upload, file uploader all return zero results. This seems a bit weird, what else can you call the thing? Are there really no uploaders in the repository?
View 1 Replies
View Related
Apr 11, 2010
I'm working on this project where I'm trying to use jquery to read from an xml file and generate added code to a html index file by creating dropdown select menus and then allowing the user to display pictures according to what of the 2 category 'select' types they select on the dropdown list.
The program works as far as generating the select dropdown list but only generates the images for the first selected option. When I select the second drop down category nothing happens it simply shows the pics from the first category. When I go into firebug and display the html file after the script is run there are an extra set of <p> tags without anything in them. I traced through the script and can't find where the <p></p> is coming from. It's not on the initial html page. I have the script below for the xml and jq.
<?xml version="1.0" encoding="ISO-8859-1"?>
<gallery>
<picture class="House and Home">
<listing>Pics/HouseHome/h1.jpg</listing>
[Code]......
View 2 Replies
View Related
Sep 2, 2011
I want to add an input box with a button next to it that, when you paste a link to an image in the input box and press the button it uploads or shows the image in the section below.
I want you to make it using the get element by ID functions and the append child functions and all that.
View 1 Replies
View Related
Apr 9, 2010
I have various images on a page. I want to edit an image. So, I should click on the image and a lightbox should appear asking me for a new image files to upload. I select an image and click upload. It uploads the file and then the lightbox closes and the original image on the page gets replaced by the new one.
I can create a lightbox(overlay) and call a php page on it to upload the image. But, then I don't know how to pass that back to the original page and update the image there through AJAX call.
View 2 Replies
View Related
Jan 20, 2011
I need multiple file upload as like mediafire file upload
View 2 Replies
View Related
Jan 3, 2010
I'm trying to in make in a single function, multiple calls to the same file changing one parameter the problem is thatit is taking it like if I wasn't changing the parameter and is sending only the last value all the times.Here is my code:
$(function(){
$('#btn_search').click(function(){
// what to search for
[code]....
View 2 Replies
View Related
Sep 10, 2009
Script works on the first attachment but not the other two?
<script type="text/javascript" language="JavaScript"><!--
function ExtensionsOkay() {
var extension = new Array();
var fieldvalue = new Array();
fieldvalue[0] = document.customApp.attachment_1.value;
fieldvalue[1] = document.customApp.attachment_2.value;
fieldvalue[2] = document.customApp.attachment_3.value;
extension[0] = ".doc";
extension[1] = ".docx";
extension[2] = ".txt";
extension[3] = ".pdf";
// No other customization needed.
for(var f = 0; f < fieldvalue.length; f++) {
var thisext = fieldvalue[f].substr(fieldvalue[f].lastIndexOf('.'));
for(var i = 0; i < extension.length; i++) {
if(thisext == extension[i]) { return true; }}
alert("Your upload field " + f + " contains an unapproved file name.");
return false;
}}
//--></script>
View 4 Replies
View Related
Dec 11, 2007
i have 4 images that expand onMouseOver and shrink onMouseOut
<script src = 'js/size.js'>
<div id = 'img1' onMouseOver = "expand(this.id)" onMouseOut = "shrink(this.id)">
<img src = ...>
</div>
<div id = 'img2' onMouseOver = "expand(this.id)" onMouseOut = "shrink(this.id)">
<img src = ...>
</div>
etc...
question: when i quickly move the mouse from one image to the other shouldn't i see one expand and one shrink simultaneously? i am currently seeing one shrink, then the other expand after. on occasion the shrink is skipped and the next image is expanded right away.
View 1 Replies
View Related
Jul 20, 2009
I have used AJAX lots before and I wondered if it was possible to set variables from an AJAX file E.g. an ajax file could set
var set1 = 10;
var set2 = 55;
with both variables coming from an external file called by AJAX. Which JS side perform the request and the format of the file that is requested.
View 4 Replies
View Related
May 12, 2009
How would i retrieve multiple (GET) values from a php file using AJAX..
Say i had the following function that ask's for a userID variable - how could i ask for more than one variable instead of just userID? [code]...
View 4 Replies
View Related
Sep 21, 2010
I always wanted to know how to arrange uploading of multiple files without resorting to Flash. I actually even know a great example of such an upload form: [URL] (you need to be logged into Google Docs to see this) It definitely doesn't use Flash, but the source code is so obscure and clogged that i couldn't decipher it so far. In fact, all i need is a possibility to invoke a file load dialog with the ability to select multiple files, and after they are selected, be able to fetch their absolute paths on a local PC. I don't even need to actually upload them afterwards.
View 2 Replies
View Related
Jul 5, 2011
I have Been trying to make a webpage that displays a googlemap with multiple markers based on data from an XML file but can't seem to get it to work. Would be ETERNALLY grateful to anyone who can pick out where I'm going wrong!
<html>
<head>
<script type="text/javascript">
function callXML(){
if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
[Code]...
View 9 Replies
View Related
Aug 7, 2005
example with <ol> as parent.
<script type="text/javascript"><!--
var gFiles = 0;
function addFile() {
var li = document.createElement('li');
li.setAttribute('id', 'file-' + gFiles);
li.innerHTML = '<input type="file" name="file[]"><span onclick="removeFile('file-' + gFiles + '')" style="cursor:pointer;">Remove</span>'
document.getElementById('files-root').appendChild(li);
gFiles++;
}
function removeFile(aId) {
var obj = document.getElementById(aId);
obj.parentNode.removeChild(obj);
}
--></script>
<span onclick="addFile()" style="cursor:pointer;">Add</span>
<ol id="files-root">
<li><input type="file" name="file[]">
</ol>
example using table:
<script type="text/javascript"><!--
var gFiles = 0;
function addFile() {
var tr = document.createElement('tr');
tr.setAttribute('id', 'file-' + gFiles);
var td = document.createElement('td');
td.innerHTML = '<input type="file" name="file[]"><span onclick="removeFile('file-' + gFiles + '')" style="cursor:pointer;">Remove</span>'
tr.appendChild(td);
document.getElementById('files-root').appendChild(tr);
gFiles++;
}
function removeFile(aId) {
var obj = document.getElementById(aId);
obj.parentNode.removeChild(obj);
}
--></script>
<span onclick="addFile()" style="cursor:pointer;">Add</span>
<table><tbody id="files-root">
<tr><td><input type="file" name="file[]"></td></tr>
</table>
I did the ol one first then he said he wanted it as a table for some reason.. so here they are..
View 2 Replies
View Related
Jan 9, 2006
I am currently testing StickBlog's Upload multiple files with a single file element and need some help. I would like the files to be placed into a definition list with the delete button before the file. Can anyone provide an example showing how I would do this?
View 2 Replies
View Related
Sep 21, 2007
I have a <input type = file> button for uploading a file in my php page. As soon as i select a file from the button, i need the file data to be displayed so that i check whether the file selected has the correct data. How can i do this.
View 1 Replies
View Related
Jan 4, 2010
My client will upload some pdf files in my php page.
I want to find a pdf file is normal file or shared review file. If it is shared review file then only i can allow to upload that file.
How can i find a pdf file is normal file or shared review file?
View 3 Replies
View Related
Mar 7, 2010
I've been stumped. I'm usually good at figuring this stuff out, but I'm completely confounded here.I have a form with tables in it to add items to a series. The rows are being added dynamically by Jquery on the click event.
$('#add_hybrid').click(function(){
$('#hybrid tr:last').after('<tr><td width="15%"><?=brands('hybrid');?><input name="clubtypes[]" value="6" type="hidden" /></td><td width="25%"><?
[code]....
View 5 Replies
View Related
Sep 27, 2010
I am using jquery with the cookie plugin and I have multiple image buttons that can hide/show multiple elements. My question is how can I add a cookie to this code to remember whether each separate element is opened or closed?
The code,
$(document).ready(function() {
// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='<div class="expanddown"></div>';
var hideText='<div class="expandup"></div>';
// initialise the visibility check
var is_visible = false;
// append show/hide links to the element directly preceding the element with a class of "toggle"
$('.toggle').prev().append('<a href="#" class="togglelink">'+hideText+'</a>');
// capture clicks on the toggle links
$('a.togglelink').click(function() {
// switch visibility
is_visible = !is_visible;
// change the link depending on whether the element is shown or hidden
$(this).html( (!is_visible) ? hideText : showText);
// toggle the display - uncomment the next line for a basic "accordion" style
//$('.toggle').hide();$('a.toggleLink').html(showText);
$(this).parent().next('.toggle').slideToggle('fast');
// return false so any link destination is not followed
return false;
});
});
HTML,
<a class="togglelink" href="#"></a>
<div class="toggle">
Content
</div>
View 6 Replies
View Related
Sep 5, 2010
I'm trying to search for the correct code to make my form work. I have 3 select boxes - one with 2 options, one with 8 options, and the last with 2 options... All of this adds up to 32 different url paths. Can anyone tell me how to get this done?This is what I have so far: (and yea, I know I suck... I honestly have absolutely NO clue)
<html>
<head>
<script>
[code]....
View 2 Replies
View Related
May 25, 2006
This is my first post to this forum. When a button in parent window is clicked multiple times, more than one popup window is opened. This problem is occurring in linux firefox and mozilla browsers. In windows the code is working fine. Is there any option in window.open() method to open a popup window once. s there any known issue regarding this case?. Need a workaround to fix this issue.
View 1 Replies
View Related