gotosocial/docs/faq.md
Phil Hagelberg b153808472
[docs] Add first draft of FAQ (#1086)
* Clarify that gotosocial doesn't use recommendation algorithms

It uses lots of algorithms.

    ~/src/gotosocial $ rgrep algorithm . | wc
        856    8971  143395

* Add first draft of the FAQ.

* Suggested FAQ changes.

Mention backfill of posts as not yet being implemented; link to FAQ
from readme/index.

Mention that GtS does serve up some UI; just not most interaction.
2022-11-21 13:19:51 +01:00

3.2 KiB

Frequently Asked Questions

  • Where's the user interface? GoToSocial is just a bare server for the most part and is designed to be used thru external applications. Pinafore and Tusky are the best-supported, but anything that supports the Mastodon API should work, other than the features GoToSocial doesn't yet have. Permalinks and profile pages are served directly thru GoToSocial as well as the admin panel, but most interaction goes thru the apps.

  • What happened to the gifs? While GoToSocial supports gifs, it doesn't support videos. This wouldn't be a big problem, except that Mastodon doesn't support gifs; it converts them into videos when they get uploaded. So if someone posts a gif from a Mastodon server, it won't be visible. At the time of this writing, the video will be dropped altogether, but in the future there should be at least a placeholder link.

  • Why aren't my posts showing up on my profile page? Unlike Mastodon, the default post visibility is Unlisted. If you want something to be visible on your profile page, the post must have Public visibility.

  • Why aren't my posts showing up on other servers? First check the visibility as noted above. TODO: explain how to debug common federation issues

  • Why am I getting frequent error responses? GoToSocial is configured to use per-IP rate limiting by default, but in certain situations it can't accurately identify the remote IP and will treat all connections as coming from the same place. In those cases, the rate limiting needs to be disabled or reconfigured.

  • My instance is deployed and I'm logged in to a client but my timelines are empty, what's up there? To see posts, you have to start following people! Once you've followed a few people and they've posted or boosted things, you'll start seeing them in your timelines. Right now GoToSocial doesn't have a way of 'backfilling' posts -- that is, fetching previous posts from other instances -- so you'll only see new posts of people you follow. If you want to interact with an older post of theirs, you can copy the link to the post from their web profile, and paste it in to your client's search bar.

  • How can I sign up for a server? Right now the only way to create an account is by the server's admin to run a command directly on the server. A web-based signup flow is in the roadmap but not implemented yet.

  • Why's it still in alpha? Take a look at the list of open bugs and the roadmap for a more detailed rundown, but the main missing features at the time of this writing are:

    • videos
    • reporting posts to admins
    • muting conversations
    • backfill of posts
    • web-based signup
    • profile metadata fields
    • lists of users
    • pinning posts to your profile
    • polls
    • scheduling posts
    • account migration
    • federated hashtag search
    • shared block lists across servers