[Solved] PHP require_once ‘………..’;
[ad_1] To avoid this type of problems, and for best practice, i advice to use the root path: $root = realpath($_SERVER[“DOCUMENT_ROOT”]); The code above will assign to $root your realpath on the server. After that just use the require/include etc according to your localhost/webserver root : require_once($root/Api/Autotask/vendor/autoload.php) For example, if your file is located in … Read more