CubicleSoft

Results 63 comments of CubicleSoft

Is this going to be a new official PECL DLL build system? If so, I haven't seen any announcements on PECL-DEV or PHP Internals and windows.php.net still displays the 2022...

Chunk uploads require specific HTTP headers to be sent by the browser and received by PHP: `Content-Disposition` with an `attachment` and either `Content-Range` or `Range`. When those headers exist, the...

Hmm...the demo page seems fine with multiple file uploads in Firefox: https://barebonescms.com/demos/admin_pack/admin.php Since it works for me, it's hard to track down the source of the issue. Could be anything...

It's clearly a server side problem. Look in the Network tab of your Developer Tools to see what is coming back from the server.

Please provide some additional details. I haven't tried to upload 2,000 images all at once before. I don't think file size should be an issue but rather how many UI...

Well, I don't have that many images and my computer is fast/capable enough to not reproduce the issue. Hazarding a wild guess, what happens if you replace this code: ```js...

Do you really have two colons before port 8080 in your code? > url - A string containing the destination URL to use to send the data. The default behavior...

Is the server responding with valid JSON? Since you are using chunked uploads, failure responses are delayed until the next request cycle due to how the underlying library works. So...

`params: { 'action': 'somevaluehere' }` is the data to send with the form. It's not for a URL. I use 'action' as a PHP `$_REQUEST` variable in my other software....

For a discussion of blueimp's class, see issue https://github.com/cubiclesoft/jquery-fancyfileuploader/issues/2 The response from a successful chunk upload should be the same. You don't have to use the helper class but you'll...