I've upgraded an ext. from TYPO 6.2 to 8.7 based on the fe_users table. But now image is not showing - only an id. Name and other information are showing correct.
How do I convert the uid to image path? I have followed the instructions on https://fluidtypo3.org/viewhelpers/fluid/master/ImageViewHelper.html
the result is
This is my code
<f:for each="{feUsers}" as="feUser" key="number" iteration="itemIteration">
<div class="feuser">
<f:if condition="{feUser.image}">
<f:image
treatIdAsReference="1"
src="uploads/pics/{feUser.image}"
title="{feUser.name}"
alt="{feUser.name}"
maxWidth="159"
maxHeight="220"
width="159c"
height="220c"
crop="true"
cropVariant="default"
/>
</f:if>
</div>
</for>