@frissdiegurke said in Name of uploaded files:
@julian said in Name of uploaded files:
The numbers are actually a timestamp, they are not random.
They're not actual UNIX timestamps, but similar; Just with milliseconds instead of seconds. This might have confused @mechanix
Exactly. I understand that Unix time is great to have unique file uploads but it would be more intuitive to use standard time stamps.
@frissdiegurke No no, root was actualy that user I was sudo in. The forum runs as a non privilged user. I created that symbolic link but mails aren´ t sent.
Sending mails from the cli with the user www-data works also.
Found it
https://github.com/NodeBB/nodebb-theme-persona/blob/master/templates/partials/topic/post.tpl#L16
change that line to...
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->" itemprop="author" data-username="{posts.user.username}" data-uid="{posts.user.uid}">{posts.user.fullname}</a>
Full Name is an optional field so not everybody updates it in their profile. You might want to check if it's available before displaying it.
<a href="<!-- IF posts.user.userslug -->{config.relative_path}/user/{posts.user.userslug}<!-- ELSE -->#<!-- ENDIF posts.user.userslug -->" itemprop="author" data-username="{posts.user.username}" data-uid="{posts.user.uid}"><!-- IF posts.user.fullname -->{posts.user.fullname}<!-- ELSE -->{posts.user.username}<!-- ENDIF posts.user.fullname --></a>
@julian said in Recent cards localization:
@yariplus It's just the one string, isn't it?
Well, yes, and a few strings in the acp page. I just don't want to encourage the habit of manually editing strings in the template.