$thumb = OW::getPluginManager()->getPlugin( 'pluginkey' )->getUserFilesDir() . $item->id . '.jpg';
it works because it the right path but doesn't work to display image because it display the whole host path /home/host/public_html/ow_userfiles/plugins/pluginkey/86.jpg
instead I need it to be like this
website.com/ow_userfiles/plugins/pluginkey/86.jpg
what am I doing wrong