Hello, it asks for the “RESEND VERIFICATION EMAIL”. But the verification does not work and can not log out. Any mail reception does not work! Can I also send a private message with url and access?
Please help. Best regards
- MSAnswered
Hello,
Please edit
app/Http/Livewire/KnowledgeBase/CategoryList.php
and change the linereturn view('livewire.KnowledgeBase.category-list', ['knowledge_base' => $knowledge_base->latest()->paginate()])->layout('layouts. Public');
to
return view('livewire.knowledgebase.category-list', ['knowledge_base' => $knowledge_base->latest()->paginate()])->layout('layouts. Public');
I have typo there; the path is lower case
knowledgebase
but I mistakenly typedKnowledgeBase
I will fix this in next beta update.
Thank you
- AAnswered
Hello,
now I have bought 2 licenses. Unfortunately there are problems with the forum. When can I hope for support? I understand that they have to work. But it’s not my fault that there are problems. I want to start with my 2 forums! Now I ask for help once again. Articles I can write. Categories and topics does not work, upload images rarely funtioniert logo and icon not!
Best regards,
- MSAnswered
Hello,
Please check the Laravel log in the
storage/logs/
folder and let me know the error details.Thank you
- FAnswered
[2023-08-13 15:46:18] production.INFO: Notification email has been failed. Expected response code “250/251/252” but got code “550”, with message “550 relay not permitted”.
- MSAnswered
Hello,
The error message isn’t clear?
The domain you are sending from (your from address) is not one permitted by the mail server you are sending through. Please check your
.env
file and make sure that all the details are correct.If it’s the same as username then you need to check with your server admin with error message as they can guide further.
Thank you
- MSAnswered
Hello,
-
Most of the uploads have been moved to
public/assets
folder. I will change the user photo in the next update. -
Ad can have any html code as yours, make sure the image address is correct
<a href="https://tecdiary.net" target="_blank"><img src="https://images.unsplash.com/photo-1575936123452-b67c3203c357?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D&w=1000&q=80" alt="Tecdiary" style="max-width: 100%;"></a>
-
I can see image validation error but thread or category don’t have such field. Are you using beta 14?
-
Please don’t translate the word stating with colon like
:title
If you have translated them then please set back to origitanl as those are placeholders.
Thank you
-
- FAnswered
I don’t understand why the mail settings are so complicated. I use another Laravell script because I don’t have the problems, the mails are sent directly via the server, which I think is better. And I noticed that there is a 500 error when sending the contact form. What I didn’t have with the beta version v12.
- MSAnswered
Hello,
@Funnymaker Please use the same config and it should work. If you don’t want to use
smtp
you can usesendmail
(if your server supports it). For more information about mail, you can refer to Laravel Doc https://laravel.com/docs/10.x/mail@Andreas
- I see the error for the banned words, I will fix that for words having below 3 letters. That was supposed to be at least 3 letters long words.
- You can set
Allowed File Types
in settings as you need. The max. size is 2mb and for permissions, I will add it to the role so you can allow them per role. - n/a
- The language folder is
lang/
Please refer to documentation.pdf for adding language. If you want to share with others, you can translate thelang/en.json
and files inlang/en/
folder and send them to us. - Images in ads are working, please use the code I given you and check. You are using
Add.png
and the URL doesn’t have such image so it’s not being displayed. Can you open the image src URL in browser?
Thank you
- MSAnswered
Hello,
The number at the start of FAQ or Article is not the ssequence number but the id of the record. I will add the option to hide that or use loop itrate number.
You can’t change the id or any other data in database that will create problems. I won’t suggest this and can’t offer help with modify anything in database.
As the forum is still beta and if something missing you can suggest us and we will check in we could add it in updates or will suggest you to hire dveloper.
Thank you
- MSAnswered
Hello,
Please edit
app/Models/Traits/GroupPermission.php
and change line no 35 - 37 fromif ($user && $user->roles) { return $query->forRole($user->roles->first()->id, $user); }
to
if ($user && $role_id = $user->roles?->first()?->id) { return $query->forRole($role_id, $user); }
Thank you
- Login to Reply