diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -32,14 +32,12 @@ We are a friendly community. * Light server running Linux or Windows * It even works on Raspberry Pi 1 with response time under a second (tested with 150 feeds, 22k articles) * A web server: Apache2 (recommended), nginx, lighttpd (not tested on others) -* PHP 5.3.3+ (PHP 5.3.7+ recommended, and PHP 5.5+ for performance, and PHP 7 for even higher performance) - * Required extensions: [PDO_MySQL](http://php.net/pdo-mysql) or [PDO_SQLite](http://php.net/pdo-sqlite), [cURL](http://php.net/curl), [GMP](http://php.net/gmp) (for API access on platforms < 64 bits), [IDN](http://php.net/intl.idn) (for Internationalized Domain Names) - * Recommended extensions: [iconv](http://php.net/iconv), [JSON](http://php.net/json), [mbstring](http://php.net/mbstring), [Zip](http://php.net/zip), [zlib](http://php.net/zlib) - * Enabled by default: [DOM](http://php.net/dom), [XML](http://php.net/xml)… +* PHP 5.3.3+ (PHP 5.4+ recommended, and PHP 5.5+ for performance, and PHP 7 for even higher performance) + * Required extensions: [DOM](http://php.net/dom), [XML](http://php.net/xml), [PDO_MySQL](http://php.net/pdo-mysql) or [PDO_SQLite](http://php.net/pdo-sqlite), [cURL](http://php.net/curl) + * Recommended extensions: [JSON](http://php.net/json), [GMP](http://php.net/gmp) (for API access on platforms < 64 bits), [IDN](http://php.net/intl.idn) (for Internationalized Domain Names), [mbstring](http://php.net/mbstring) and/or [iconv](http://php.net/iconv) (for charset conversion), [Zip](http://php.net/zip) (for import/export), [zlib](http://php.net/zlib) (for compressed feeds) * MySQL 5.5.3+ (recommended) or SQLite 3.7.4+ * A recent browser like Firefox, Internet Explorer 11 / Edge, Chrome, Opera, Safari. * Works on mobile -* The browser HTTP `Referer` header must not be disabled when using the form login method  @@ -61,13 +59,16 @@ sudo apt-get install apache2 sudo a2enmod headers expires rewrite ssl # (Optional) If you want a MySQL database server sudo apt-get install mysql-server mysql-client php5-mysql -# Main components (git is optional if you manually download the installation files) -sudo apt-get install git php5 php5-curl php5-gmp php5-intl php5-json php5-sqlite +# Main components (for Ubuntu <= 15.10, Debian <= 8 Jessie) +sudo apt-get install php5 php5-curl php5-gmp php5-intl php5-json php5-sqlite +# Main components (for Ubuntu >= 16.04, Debian >= 9 Stretch) +sudo apt install php libapache2-mod-php php-curl php-gmp php-intl php-mbstring php-sqlite3 php-xml php-zip # Restart Web server sudo service apache2 restart -# For FreshRSS itself +# For FreshRSS itself (git is optional if you manually download the installation files) cd /usr/share/ +sudo apt-get install git sudo git clone https://github.com/FreshRSS/FreshRSS.git # Set the rights so that your Web browser can access the files cd FreshRSS @@ -126,6 +127,7 @@ mysqldump -u user -p --databases freshrss > freshrss.sql * [jQuery](http://jquery.com/) * [ArthurHoaro/favicon](https://github.com/ArthurHoaro/favicon) * [lib_opml](https://github.com/marienfressinaud/lib_opml) +* [jQuery Plugin Sticky-Kit](http://leafo.net/sticky-kit/) * [keyboard_shortcuts](http://www.openjs.com/scripts/events/keyboard_shortcuts/) * [flotr2](http://www.humblesoftware.com/flotr2) |
