1
I’m trying to add the following:
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/settings.php';
require_once __DIR__.'/resources.php';
require_once __DIR__.'/utils.php';
use Spire\Settings;
use Spire\Resources;
use Spire\Utils;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Silex\Application;
However the server returns me error where there is the use of the backslash (" "). What is the necessary configuration for the server to recognize in the correct way?
Configuration required: (PHP 5 >= 5.3.0)
– Papa Charlie
I will now check the PHP version
– touchmx
actually, the version of php on the server is 5.2.17. It wouldn’t have worked. Thank you
– touchmx