Describe the bug
I notice several issues, that I believe are related.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I would expect to see the following/follower status on the profiles and also the messages on the timelines
Client details:
Server details
Social app version: 0.1.3
Operating system: FreeBSD
Web server: apache
PHP version:7
Nextcloud version:15.0.2 (see Nextcloud admin page)
Logs
no relevant logs
no relevant logs
I imagine that this is a little sparse info to diagnose antyhing. What additional info shall I provide?
Can you give me the address of your nextcloud, and a valid social account so I can check the setup from here.
If this info is sensitive, please send a mail: [email protected]
done! thanks!
Can you make your redirect more like this (in the .htaccess at the root of your website)
Redirect /.well-known/webfinger https://cloud.example.net/nextcloud/.well-known/webfinger
Also, check the .htaccess which is at the root of your Nextcloud and see if the line about webfinger point to /nextcloud/public.php[...]:
RewriteRule ^\.well-known/webfinger /nextcloud/public.php?service=webfinger [QSA,L]
Hi, I have similar problem:


Details:
Can you make your redirect more like this (in the .htaccess at the root of your website)
Redirect /.well-known/webfinger https://cloud.example.net/nextcloud/.well-known/webfingerAlso, check the .htaccess which is at the root of your Nextcloud and see if the line about webfinger point to /nextcloud/public.php[...]:
RewriteRule ^\.well-known/webfinger /nextcloud/public.php?service=webfinger [QSA,L]
So you suggest sort of daisy-chaining the webfinger redirects, do I understand you correctly?
My current settings for webfinger are as follows:
.htaccess in website root:
RewriteRule ^\.well-known/webfinger https://cloud.example.net/nextcloud/public.php?service=webfinger [QSA,L]
.htaccess in nextcloud subfolder:
RewriteRule ^\.well-known/webfinger public.php?service=webfinger [QSA,L]
with this setup I get no warnings in the nextcloud settings page, and I can call the well-known webfinger both via
https://cloud.example.net/nextcloud/.well-known/webfinger
and
https://cloud.example.net/.well-known/webfinger
After your suggestion, I changed that to the following:
.htaccess in website root:
RewriteRule ^\.well-known/webfinger https://cloud.example.net/nextcloud/.well-known/webfinger [QSA,L]
.htaccess in nextcloud subfolder:
RewriteRule ^\.well-known/webfinger /nextcloud/public.php?service=webfinger [QSA,L]
After this, I cannot call the webfinger via https://cloud.example.net/nextcloud/.well-known/webfinger, nor via https://cloud.example.net/.well-known/webfinger. Also the check in settings fails and tells me something is wrong with my webfinger setup.
However if I change the .htaccess in nextcloud subfolder to:
RewriteRule ^\.well-known/webfinger public.php?service=webfinger [QSA,L]
I can call the webfinger again as before and the check in settings works again with the daisy chain in place.
However all this didn't change the initial problem with the empty timeline.
Thank you again for looking into this!
Dear, I face exactly the same problem as pongraczi.
I can follow mastodon accounts but I can't see their messages (nor when clicking on their profile nor in the global timeline).
Nextcloud 15.0.4
Social 0.1.4
Apache 2.4.38
my .htaccess shows:
RewriteRule ^\.well-known/webfinger https://my.server/public.php?service=webfinger [QSA,L]
Also, direct messages work well (between my nextcloud social & mastodon accounts)
Thanks for your help
This pull request helped fixing the empty timeline https://github.com/nextcloud/social/pull/490
is it fixed in 0.2.6 ?
Yes, although I'm not sure if it was fixed by 0.2.6 or by running the occ social:reset command.
Sorry!
Yes, it seems working well, there are posts as expected:

Most helpful comment
Dear, I face exactly the same problem as pongraczi.
I can follow mastodon accounts but I can't see their messages (nor when clicking on their profile nor in the global timeline).
Nextcloud 15.0.4
Social 0.1.4
Apache 2.4.38
my .htaccess shows:
RewriteRule ^\.well-known/webfinger https://my.server/public.php?service=webfinger [QSA,L]Also, direct messages work well (between my nextcloud social & mastodon accounts)
Thanks for your help