Tagged Questions
2
votes
1answer
378 views
How to upload files in Web Workers when FormData is not defined
How can I retrieve $_FILES in PHP when I upload through a Web Worker? When I tried to use FormData, I got the following error:
Error: FormData is not defined
This is my code:
function ...
0
votes
2answers
242 views
html5 chunk and webworker does not upload anything
I was working with html5 slice and webworker but when it goes to uploadFile function, nothing happened. nothing being upload
<html>
<head>
<title>Upload Files using ...
0
votes
1answer
354 views
Question about Job Queue management for PHP developer new to using worker processes
I'm attempting to create my first load-balanced PHP application that makes use of worker processes/servers. I use cloudcontrol for my hosting since they provide the convenience of a managed server ...
8
votes
2answers
1k views
Guide to using a worker server with a php application [closed]
I've built a PHP app, and I've read that it's a best-practice to use a 'worker' + queue server when calling api's or performing operations that are time consuming.
A quick search for a tutorial has ...
0
votes
3answers
2k views
How To Setup PHP Workers
Howdy, we are writing a PHP script which creates virtual machines via a RESTful API call. That part is quite easy. Once that request to create the VM is sent to the server, the API request returns ...
-1
votes
5answers
132 views
PHP/Browser Performance: Generating thumbnails by the browser
A user uploads a large resolution image to the server. A thumbnail needs to be created for this image. I thought about instead of having a GD intensive operation to create the thumbnail in PHP, can ...
1
vote
1answer
848 views
Asynchronous POST request from a Firefox's web worker
I am trying to make an asynchronous request with POST method from a web worker used in my extension. The thing is that it does not work for me.
On the server side I have PHP script listening for data ...