Hi
Frontend: you can open that error file: root/templates/ja_fit/error.php
change the line of code:
<?php if($theme && is_file(T3_TEMPLATE_PATH . '/css/themes/' . $theme . '/error.css')):?>
to:
<?php if($theme && is_file(__DIR__ . '/css/themes/' . $theme . '/error.css')):?>
Backend: you can open the configuration.php
in the root folder of your site and set to enable some debug modes:
public $debug = true;
public $error_reporting = 'maximum';
Reload the backend again and it will give hint of where the error comes from.