Please I want to know how to find old version tiny tiny rss to download?

because I need to install tiny tiny rss in my web hosting,
but the latest version must use docker
but I can not use docker with my web hosting,
please help, thank you

https://git.tt-rss.org/fox/tt-rss

sometimes i read the posts here and i just don’t know what to say

No, it doesn’t ‘must use’. I’m not using docker.

Shake you[quote=“fox, post:3, topic:4673, full:true”]
sometimes i read the posts here and i just don’t know what to say
[/quote]

Just shake your head and walk away, that’s the only real way to preserve sanity.

I still can not install it, please help

I still can not install it, please help

Tell us what you are struggling with.

please help thank you, when I upload the tiny tiny rss on web hosting. it shows…

Exception while creating PDO object:SQLSTATE[08006] [7] could not connect to server: No such file or directory

Is the server running locally and accepting

connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?

Like it shows … do you have the database server setup ?
Have you created a database and user for tt-rss ?
Once you’ve done that you will need to put the same details into tt-rss/config.php

thank you so much, my web hosting provide mysql for me,
and I already change the tt-rss/classes/config.php



Config::DB_TYPE => [ “pgsql”, Config::T_STRING ],
Config::DB_HOST => [ “db”, Config::T_STRING ],
Config::DB_USER => [ “xqnccuxxxx”, Config::T_STRING ],
Config::DB_NAME => [ “xqnccuxxxx”, Config::T_STRING ],
Config::DB_PASS => [ “rnRCjMhxxxx”, Config::T_STRING ],
Config::DB_PORT => [ “5432”, Config::T_STRING ],
Config::MYSQL_CHARSET => [ “UTF8”, Config::T_STRING ],
Config::SELF_URL_PATH => [ “https://rss.mywebsitelink.com/tt-rss/”,

but it still doesnt work, I am so sad

Exception while creating PDO object:SQLSTATE[08006] [7] could not connect to server: Connection refused
Is the server running on host “localhost” (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host “localhost” (127.0.0.1) and accepting
TCP/IP connections on port 5432?

Don’t change tt-rss/classes/config.php
Copy tt-rss/config.php.dist to config.php and edit that.

Please, just stop. You’re basically doing everything wrong.

This is not the forum to educate you about setting up a web stack. You’ll need to learn that elsewhere.

For starters, if you’re not going the Docker route, that’s fine. It’s technically not supported but many people do. I do not use Docker and TT-RSS runs just fine. What you want to do is SSH into your web server and git pull the repository into a directory (e.g. tt-rss).

You shouldn’t be modifying any files in the classes directory. Do what markwaters said above with the config file.

If you’re setting this up on a shared host, you probably need to use MySQL and not PostgreSQL because most shared hosts simply don’t offer anything other than MySQL.

Next, read the wiki. You can start with GlobalConfig since you’ve mentioned you’re trying to set that up.

https://git.tt-rss.org/fox/tt-rss/wiki/InstallationNotesHost

i’m feeling uncharacteristically merciful so i’ve updated host installation notes to reflect the removal of easy installer and recent move to new configuration schema.

if i’ve missed something, suggestions to add/change are welcome.

thank you so much, now I change put tt-rss/classes/config.php to be old default one,
and I copy tt-rss/config.php.dist to config.php and edit it.

now my tt-rss/config.php is that


<?php putenv('TTRSS_DB_HOST=myserver'); putenv('TTRSS_SELF_URL_PATH=https://rss.myebsite.com/tt-rss'); putenv('TTRSS_SESSION_COOKIE_LIFETIME='.(86400*30)); define('LEGACY_CONSTANT', 'value'); putenv('TTRSS_SESSION_COOKIE_LIFETIME='.(86400*30)); putenv("TTRSS_SESSION_COOKIE_LIFETIME='2592000'"); # => 0, because '2592000' is an invalid number putenv('TTRSS_SESSION_COOKIE_LIFETIME=86400*30'); # => 86400, because expression is not evaluated, so you're just casting a string literal "86400*30" to integer ?>

thank you so much, let me try it again

thank you so much I will read it