Package Details: freshrss 1.24.0-1

Git Clone URL: https://aur.archlinux.org/freshrss.git (read-only, click to copy)
Package Base: freshrss
Description: A free, self-hostable aggregator…
Upstream URL: http://freshrss.org/
Licenses: AGPL-3.0-only
Submitter: cgirard
Maintainer: cgirard
Last Packager: cgirard
Votes: 10
Popularity: 0.007553
First Submitted: 2016-06-22 09:12 (UTC)
Last Updated: 2024-05-30 15:18 (UTC)

Dependencies (7)

Sources (1)

Latest Comments

1 2 Next › Last »

BlackLotus89 commented on 2024-05-17 11:37 (UTC)

Maybe add something like /etc/systemd/system/freshrss-actualize.service

[Unit]
Description=FreshRSS actualize script

[Service]
User=http
ExecStart=/usr/bin/php /usr/share/webapps/freshrss/app/actualize_script.php

/etc/systemd/system/freshrss-actualize.timer

[Unit]
Description=Run FreshRSS actualize script every 15 minutes

[Timer]
OnUnitActiveSec=15min
Unit=freshrss-actualize.service

[Install]
WantedBy=timers.target

yochaigal commented on 2024-03-12 17:00 (UTC)

A note for those of you running this as a subdirectory in an nginx reverse proxy: I had to add the directory /usr/share/webapps/freshrss to my php.ini file for permissions to work properly, as well as symlink freshrss/p to /srv/nginx/freshrss.

MarsSeed commented on 2024-01-03 10:19 (UTC)

Hi,

I'd like to suggest that you please kindly remove optdepends=cherokee, an insecure abandonware server which has been unbuildable for a long time.

cgirard commented on 2021-01-29 12:53 (UTC)

Sorry my bad, seems only 1.18.0 will be compatible with PHP 8. These kind of change are not in the latest release: https://github.com/FreshRSS/FreshRSS/pull/3207

cgirard commented on 2021-01-29 12:43 (UTC)

Did not test yet, but this issue lead me to think it is ok: https://github.com/FreshRSS/FreshRSS/issues/3082

bjo commented on 2021-01-29 12:16 (UTC)

@cgirard: Oh, nice. So, sorry for the noise. I just thougt it's incompatible with PHP 8 like nextcloud and wallabag.

cgirard commented on 2021-01-29 08:34 (UTC)

@bjo Upstream claims to support PHP 8. Do you have a different experience? (Or maybe those comments are just from a bot?)

bjo commented on 2021-01-29 07:49 (UTC)

Please update the php dependencies according to https://archlinux.org/news/php-80-and-php-7-legacy-packages-are-available/

DanSman commented on 2019-12-02 20:36 (UTC)

It's all working again.
I forgot to add the path /var/lib/webapps/freshrss/ to the php.ini.
open_basedir =

DanSman commented on 2019-12-02 18:27 (UTC)

Yep.

root     2059119       1  3 07:26 ?        00:00:00 php-fpm: master process (/etc/php/php-fpm.conf)
http     2059120 2059119  0 07:26 ?        00:00:00 php-fpm: pool www
http     2059121 2059119  0 07:26 ?        00:00:00 php-fpm: pool www

I had to change the /etc/php/php-fpm.d/www.conf file because it wont start after the update to 7.4:

;listen.owner = http
;listen.group = http

to

listen.acl_users = http
listen.acl_groups = http

That's the only thing what I changed after the php update.