-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to debug the Outgoing Mentions functionality #9
Comments
Hey, I think I know what's causing this - MentionableMixin has the fields:
As you can see, So for outgoing webmentions to be processed you need to set Change default behaviourIf you always want your model to process outgoing mentions you can override the field on your model:
(You will need to run Outgoing mentions should then be processed every time you save your post. Keep default behaviourCreating/editing via Django Admin pagesIf you are editing your posts via the Django Admin and you are using
This will provide a checkbox that you can tick when you want to process outgoing mentions. (If you are not using Creating/editing manuallyIf you are creating the posts via
Let me know if that fixes the issue for you. I will add this to the documentation asap. |
Hey, Yes, your celery logs should show several messages while the task runs. Something like:
Also, I have just published an update which adds a new model to help track the status of outgoing mentions. I've also added a log message so you can see when the Please update to this version, run Sorry for the late response - I'm off until Tuesday now so I'll be more available until then! Michael |
What command do you use to check Celery logs on your server (or what file you look at)? I've googled this and read the documentation, but couldn't get it quite right. Thanks in advance. |
I'm not sure what the default behaviour is - you could try Otherwise, you can configure the log to go anywhere you like via the
Here's an example:
|
I have fully implemented the django-wm library. I tested for incoming webmentions via https://django-wm.dev/. Everything works fine, I can receive the Hcard information and the mention itself.
When it comes to outgoing mentions, here I am running into a couple of issues. I have tested the outgoing mention using https://django-wm.dev/ and https://webmention.rocks/. Neither worked. The link to a "mentionable" post is https://rasulkireev.com/writings/wm-test-1.
The problem is that I am not receiving any errors, so I am not entirely sure what to do. @beatonma Do you have any ideas or suggestions? Thanks a ton in advance.
The text was updated successfully, but these errors were encountered: