Questions tagged [cloudconvert]
39 questions
0
votes
2 answers
Laravel job overwriting other jobs?
I'm not too sure how to word this one, but I've got a job called uploadFile, which uses CloudConvert to convert an uploaded file (e.g PDF) to a JPG.
Used in isolation, it all works great. I can upload a file, it'll be saved to S3, then CloudConvert…

MitchEff
- 1,417
- 14
- 29
0
votes
1 answer
Dropzone.js, how to refresh the page after action url is terminated
I use Dropzone.js to upload files to my server.
I Create dropzones programmatically inside an existing form.
My "url" parameter send the $_FILES array to my dropzone.php file who send the files submitted to cloudconvert to convert them to pdf…

Dimitri Lekien
- 23
- 3
0
votes
1 answer
PhP - CloudConvert: Peer certificate cannot be authenticated with known CA certificates.
I'm trying to use CloudConvert API in PhP and I'm getting the following error:
CURLE_SSL_CACERT (60)
Peer certificate cannot be authenticated with known CA certificates.
Reading their API source code I see that they use the GuzzleClient for…

André Luiz
- 6,642
- 9
- 55
- 105
0
votes
1 answer
Maximum execution time of 120 seconds exceeded laravel 5.2
I want to convert some GIFs to mp4. I tried to use CloudConvert, but when I installed the packages and configure the curl.cainfo I get that message that says
FatalErrorException in CurlFactory.php line 271:
Maximum execution time of 120 seconds…

Quantumass soufiane
- 13
- 3
0
votes
0 answers
CloudConvert via Laravel wrapper: converted file not saved on local disk
I'm trying out a Laravel wrapper for CloudConvert, so I'm using one of the examples from GitHub to check the basic file conversion. My code is the following:
$path =…

lesssugar
- 15,486
- 18
- 65
- 115
0
votes
1 answer
Calling cloudconvert API inside my REST API
I have created a test function in my REST API (using the SLIM framework) for testing my implementation of a wrapper class for the cloudconvert API.
$app->get('/test', 'authenticate', function() use ($app) {
$response = array();
$converter =…

DTH
- 1,133
- 3
- 16
- 36
0
votes
1 answer
Cloudconvert File not found (upload failed)
I plan on using cloudconverts API API for converting docx files to pdf but im stuck with a File not found (upload failed) error each time i have started a conversion process and request the status of the conversion.
To make sure the file can be…

DTH
- 1,133
- 3
- 16
- 36
-1
votes
1 answer
CloudConvert job returning null results on export, all tasks listed as waiting
I am trying to use cloud convert to convert a pdf into a docx file. when I do this on the job builder, I can see the file download link once the export task is finished. but in Node when I log the job after completion, all the tasks just say waiting…

Emil C.
- 101
- 1
- 11
-2
votes
1 answer
HTTP request to Cloud-Convert not working
I am trying to use fetch to POST an API call to Cloud Convert and getting the following error:
message: "The given data was invalid."
code: "INVALID_DATA"
errors: {...}
tasks: Array(1)
0: "The tasks field is required."
Here is my code (on…

Mennyg
- 330
- 2
- 11