I'm trying to upload an image to CloudConvert, using a PHP wrapper, for format conversion. My short test html/php code is:
<html>
<body>
//html form...
<?php
require __DIR__ . '/vendor/autoload.php';
use \CloudConvert\Api;
$api = new Api("*********");
//various $process objects
?>
When I hit the form Submit button I get the following errors.
Warning: require(C:\xampp\htdocs\test_site/vendor/autoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\test_site\REST_test.php on line 14
Fatal error: require(): Failed opening required 'C:\xampp\htdocs\test_site/vendor/autoload.php' (include_path='C:\xampp\php\PEAR') in C:\xampp\htdocs\test_site\REST_test.php on line 14
I'm a novice at this and simply do not understand how the require
and use
statements
- which I copied from CloudConvert's API docs -
actually work in the context uploading a file to a webservice.
I can't see how they provide any kind of path to CloudConvert's site
and don't understand the error messages.
It would be great if anybody can throw some light on this.
Thanks in advance for any help.