# Hoe faq, privacybeleid en tos pagina te repareren?

**URL:** https://meta.discourse.org/t/how-to-fix-faq-privacy-policy-and-tos-page/179013
**Category:** Support
**Created:** [9 februari 2021 om 06:35 UTC](https://meta.discourse.org/t/how-to-fix-faq-privacy-policy-and-tos-page/179013 "2021-02-09T06:35:14Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![rieko](https://avatars.discourse-cdn.com/v4/letter/r/e480ec/32.png) [@rieko](https://meta.discourse.org/u/rieko)
#### Post date: [10 februari 2021 om 01:43 UTC](https://meta.discourse.org/t/how-to-fix-faq-privacy-policy-and-tos-page/179013/3 "2021-02-10T01:43:16Z")

</div>

@Thomas_G Hallo! Thanks for your help.  
I checked the existence of the pages.

```ruby
Topic.with_deleted.exists?(SiteSetting.guidelines_topic_id)
Topic.with_deleted.exists?(SiteSetting.tos_topic_id)
Topic.with_deleted.exists?(SiteSetting.privacy_topic_id)

```

The results are all true so I tried to recover.

```ruby
faq = Topic.with_deleted.find(SiteSetting.guidelines_topic_id)
tos = Topic.with_deleted.find(SiteSetting.tos_topic_id)
pp = Topic.with_deleted.find(SiteSetting.privacy_topic_id)

faq.recover!
tos.recover!
pp.recover!

```

The recover succeeded on terminal but `/faq`, `/toc` and `/privacy` showed error.  
Then I checked topic\_id of those topics from terminal and set urls to `/admin/site_settings/category/legal`.

Now the pages are fine. Thank you!

---

_[View the full topic](https://meta.discourse.org/t/how-to-fix-faq-privacy-policy-and-tos-page/179013)._
