Skip to content

Commit

Permalink
yuo
Browse files Browse the repository at this point in the history
  • Loading branch information
dvikan committed Dec 29, 2023
1 parent 4b86b23 commit 178bd18
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,14 +251,28 @@ Browse http://localhost:3000/
[![Deploy to Cloudron](https://cloudron.io/img/button.svg)](https://www.cloudron.io/store/com.rssbridgeapp.cloudronapp.html)
[![Run on PikaPods](https://www.pikapods.com/static/run-button.svg)](https://www.pikapods.com/pods?run=rssbridge)

The Heroku quick deploy currently does not work. It might possibly work if you fork this repo and
The Heroku quick deploy currently does not work. It might work if you fork this repo and
modify the `repository` in `scalingo.json`. See https://github.com/RSS-Bridge/rss-bridge/issues/2688

Learn more in
[Installation](https://rss-bridge.github.io/rss-bridge/For_Hosts/Installation.html).

## How-to

### How to remove all cache items

As current user:

bin/cache-clear

As user rss-bridge:

sudo -u rss-bridge bin/cache-clear

As root:

sudo bin/cache-clear

### How to fix "PHP Fatal error: Uncaught Exception: The FileCache path is not writable"

```shell
Expand All @@ -277,13 +291,13 @@ rm -rf /var/www/rss-bridge/cache/ && mkdir /var/www/rss-bridge/cache/

### How to fix "attempt to write a readonly database" (sqlite)

The sqlite cache file is not writeable.
The sqlite files (db, wal and shm) are not writeable.

chown -v rss-bridge:rss-bridge cache/cache.sqlite
chown -v rss-bridge:rss-bridge cache/*

### How to fix "Unable to prepare statement: 1, no such table: storage" (sqlite)

rm cache/cache.sqlite
rm cache/*

### How to create a new bridge from scratch

Expand Down

0 comments on commit 178bd18

Please sign in to comment.