0
votes
0answers
60 views

How can I show spinners during different Ajax requests?

I want to show spinners when making differebt Ajax calls.Now, I can show a spinner under a combobox, but I want also to show one more spinner(it can have the same properties with the other spinner) in ...
0
votes
0answers
198 views

Jquery, ajax beforeSend not working

These are the photo uploading code: $.ajax({ url: "php/uploadPhoto.php", type: "POST", data: formdata, processData: false, contentType: false, beforeSend: ...
1
vote
1answer
66 views

XHR onProgress completed

I'm trying to implement a label with the percentaje of upload using ajax. The problem is that after the xhr returned 100%, it still takes about 17 seconds until the readyState==4 and status==200. I ...
2
votes
0answers
102 views

Can onprogress functionality be added to jQuery.ajax() by using xhrFields?

As suggested here: https://gist.github.com/HenrikJoreteg/2502497, I'm trying to add onprogress functionality to my jQuery.ajax() file upload. The upload works fine, and the onprogress event is ...
-2
votes
1answer
275 views

How to create progress update control programatically in c# non visual web part in Sharepoint

How can I create progress update control programmatically in a c# non visual web part in Sharepoint? I am using c# and the goal is to creates a text of "Loading..." inside the ProgressUpdate control ...
0
votes
2answers
349 views

Use Ajax to show progress of a PHP script called by another Ajax request

I make a jQuery Ajax call to a PHP script that runs for a decent amount of time (between 1- seconds and 3 minutes). It constantly logs a percentage of completion in a database. How can I continually ...
1
vote
1answer
166 views

AJAX and PHP Loop progress in wordpress

I try to make some kind of progress indicator for a simple php loop. There are a lot of ajax / php questions here regarding progress and php loops, but after reading a lot of them, I still can not ...
1
vote
1answer
441 views

PHP Ajax Shell Exec() Progress

What I'm trying to do is quite simple. echo "doing a...." Start progress bar then exec("commandA") stop progress bar echo "doing b...." Start progress bar then exec("commandA") stop progress bar ...
2
votes
4answers
523 views

Is there AJAX progress event in IE and how to use it?

I tried all I could think of to at least get to the progress function in IE9 but nothing works. All other browsers get inside of the progress function and write test text without any problems. ...
3
votes
3answers
668 views

PHP script to run in background with visible progress [duplicate]

Possible Duplicate: Show progress for PHP long script I have a PHP script that generates large PDF document on request. This usually takes about 1-2 minutes, and the only way it lets the ...
4
votes
3answers
827 views

“Loading Record Number [##] of [Total]” progress bar

I have a problem that may not have a solution, but hopefully someone out there can figure this out. I developed a website in PHP/MySQL that uses HTML/CSS to process payroll. When the user submits the ...
0
votes
1answer
370 views

PECL Uploadprogress Will Not Give Me Upload Progress

I am trying to implement a very basic AJAX upload progress bar using the PECL uploadprogress extension. I have found this sample code which works across all browsers: ...
0
votes
0answers
185 views

ajax load page instead of load in div

Ok, I have a file upload form. I have included a file upload progress bar which when people upload it shows a file upload progress % bar. When the file is uploaded, the server side software does a ...
2
votes
1answer
188 views

Show progress of a script called through ajax in a div

I am calling a script using ajax. I want to show the progress of script execution on the page. I mean I want to display the following messages in a div progressively: //after execution of section 1 ...
1
vote
2answers
603 views

JQuery Ajax to PHP update div during query

I'm importing 4000 rows from a CSV file. Page 1 shows CSV file on server with PROCESS button. Onclick button, I use JQuery Ajax to call the necessary PHP code that does the import. After doing the ...
2
votes
4answers
3k views

AJAX/PHP based upload with progress bar for large files

I've been trying to create a non-flash upload panel which also shows a progress bar. On our server we have PHP 5.3 (cannot upgrade to 5.4 for now, so the new upload progress feature cannot be used => ...
4
votes
1answer
1k views

ajax php file upload without iFrame or flash engine

I've simplified my code for uploading a file without iFrame or flash engine, and i came up to this ajax function: <input type="file" name="uploadfile" id="myfile" /><label for="file" ...
0
votes
1answer
649 views

upload with ajax and php without iFrame or flash engine

I am trying to make an ajax upload function with progress bar, i was trying to simplify an example i found of the internet and i came to this function: <form> <input type="file" ...
3
votes
1answer
452 views

ajax post upload progress - client side only

I have a form from which users can select 100s of files to upload to my server. When submitting the form a post request is made to the server which may be 100s of MBs long. I would like the users ...
3
votes
1answer
410 views

How are AJAX progress indicators for modern PHP web applications implemented?

I've seen many web apps that implement progress bars, however, my question is related to the non-uploading variety. Many PHP web applications (phpBB, Joomla, etc.) implement a "smart" installer to ...
0
votes
1answer
229 views

Best SSE method for getting file upload progress?

I am coding a backwards compatible file upload progress for AJAX. In HTML5 there is the xhr.upload.progress event; this would be an alternative for non-XHR2 browsers. I am using the APC extension to ...
1
vote
0answers
239 views

Using XHR's progress events to monitor PHP/MySQL query

I have made a progress bar to show how much 'progress' an XHR request has made, but it only seems to work with the testing method I used which got a URL's content then JSON encoded it - this was a ...
0
votes
1answer
178 views

Div showing a activity indicator rails

I'm uploading some text to my rails app. It is then processing it (adding tags, etc ...) and that takes a couple of seconds. Ideally I'd like to have a "Processing div" similar to what is happens ...
0
votes
1answer
619 views

XmlHttpRequest2 progress event and ExtJS 3.3 Ext.Ajax

I'm trying to use XmlHttpRequest Level 2 to create a file upload page which includes a progress bar, in a fashion similar to a tutorial I found on Matlus.com. The catch is, the page I'm working on ...
1
vote
1answer
556 views

MD5 hash decoding website which displays progress using AJAX

I'm creating a website which tries to decode md5 hashes (up to 5 chars). Users can enter the MD5 hash they wish to decode and the website first checks whether the hash already is in the database. ...
1
vote
1answer
60 views

Is there a jQuery or plain javascript plug-in that uses XHR upload progress feedback primarly and flash as an alternative?

FF4 and Chrome have a built in support for upload progress feedback via ajax. I'm looking for a plugin that uses that method if available and a flash alternative if the browser is older. Do you know ...
1
vote
2answers
946 views

Batch PDF invoicing/generation with PHP and AJAX progress indication

OK so I'm coming to the stage of a current project where I will be implementing invoicing, and thinking about it I thought I would see how you guys would approach this problem. If it's relevant, I'm ...
2
votes
5answers
662 views

File uploader with progress bar?

How would I go about creating an HTML/PHP/AJAX file uploader with a progress bar? I have no idea where to start.
0
votes
2answers
676 views

CakePHP, AJAX - showing progress of a method run in the background

I'm not sure how to go about this. I have an administration panel for a small gallery script. You create galleries, and then upload images through FTP (to a specified folder, with 100 images for ...
0
votes
2answers
235 views

update browser via asp.net from background processes trace alerts

I have a webservice method which takes an Id and then will kick off a class library to process some infomration about the Id given. The Processor uses the Trace.Write() stuff to report progress ...
0
votes
3answers
978 views

PHP file upload - Track bytes uploaded with AJAX

I'm trying to figure out if there's a way to get the progress of a file upload with PHP and/or Kohana. My script can upload images, videos, zip, exe, whatever I want really. However the larger the ...
0
votes
1answer
363 views

WordPress plugin, track ajax progress

I'm working on a WordPress plugin. At the admin page, I have a ajax call that does a lengthy process behind. The ajax call was done using jQuery. I can't find much option to implement progress ...
1
vote
1answer
150 views

return upload progress as raw integer?

How would i use PHP AJAX to return upload progress as a number between 1 to 100. I am not very familiar with AJAX, but im pretty good with PHP, any suggestions?
3
votes
1answer
3k views

Upload progress (with or w/o XMLHttpRequest 2) with Javascript

XMLHttpRequest 2 has a new thing. It can upload files. I got that working (it's super easy). Now I'm wondering if there's a way to get the upload progress of that file. I wouldn't be interested in ...
0
votes
2answers
304 views

Progress of heavy php using sessions

I'm doing some heavy image manipulation in php and I would like to show the user how things are progressing. So I tried doing something like this: for($i = 0; $i < $rowCount; $i++) { ...
1
vote
1answer
1k views

Progress bar for File Uploading?

I am using servlets to upload files in my web application. I want to show progress bar while uploading. I have went through some Ajax+Progresslistener examples, one here. In the doPost() method they ...
0
votes
1answer
1k views

how to show progress immediately using ajax?

I have a demo using jQuery ajax to invoke web service,at the same time,another of a request shows the progress. Why it not show progress immediately, while the last to show all the progress. The code ...
0
votes
1answer
1k views

Ajax progress with PHP session

I have an app that processes images and use jQuery to display progress to the user. I done this with writing to a textfile each time and image is processed and than read this status with a ...
3
votes
4answers
2k views

Best “Loading” feedback for ASP.Net?

So, we have an ASP.Net application - fairly standard - and in there are lots of updatepanels, and postbacks. On some pages we have <ajax:UpdatePanelAnimationExtender ID="ae" runat="server" ...
2
votes
1answer
2k views

Realtime progress of AJAX call (asp.net)

I'm trying to make a progress bar that updates the user on the progress of the AJAX call. My immediate thinking was that I need an AJAX call to start a thread on the server, allowing the starting ...
0
votes
1answer
2k views

CakePHP Jquery Ajax Progress Indicator - Update DIV

I have what should be a simple requirement, however, I am keen to get an opinion on the best solution. Firstly, I am using CakePHP and JQuery on a LAMP dev server. The site uses a simple search form ...
1
vote
1answer
877 views

Ajax loading progress

Hey guys, i need to track progress of an async ajax request for some file downloads. Is this possible and in what browsers?
1
vote
2answers
4k views

Calculate progress bar percentage

I am building a file upload progress bar. Currently I have an upload form which returns the current amount of uploaded data. So, it starts at zero, and returns the current size in bits, but I have ...
0
votes
1answer
1k views

AJAX upload in Python (WSGI) without Flash/Silverlight, with progress bar

I am looking for a pure Javascript/Python upload example, that uses server polling instead of client-side SWF to display upload progress (like the one on rapidshare.com for example) Currently, ...
22
votes
4answers
6k views

Stop the browser “throbber of doom” while loading comet/server push iframe

When using Comet, or Ajax Long Pull techniques - an iframe is usually used. And while that iframe is waiting for the long connection to close, the browser is spinning its throbber (the ...