Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Salvatore, for Symphony in production users' client browsers can not access the js/css files in the vendor folder as it's private in contrast to the public folder. Therefore you would have to set each report's asset property to point to a folder (says, named "kool_assets") in the public folder like documented here:
https://www.koolreport.com/docs/architecture/assets_settings/
class MyReport extends \koolreport\KoolReport
{
protected function settings()
{
return array(
...
"assets"=>array(
"path"=>"../public/kool_assets", //absolute path or relative one to public/kool_assets from the current report path
"url"=>"/kool_assets" //url path to kool_assets so users' client browsers could access it https://server/<url-to-kool-assets>
)
);
}
}
Let us know if you need more details. Cheers,
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo