diff --git a/README.md b/README.md
index 6cb79cb8b3b9bc05af41796e7324109f59dda76d..f911807dbdd0a01de51b6899432021d2b0315105 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,8 @@ Nginx configuration sample:
 ```
 location ~ \.php$ {
     include fastcgi_params;
-    fastcgi_pass unix:/run/php5.sock;
+    fastcgi_read_timeout 1d; #avoid timeout when importing bank data
+    fastcgi_pass unix:/run/php7.3.sock;
 }
 location / {
    # try to serve file directly, fallback to index.php
diff --git a/app/controller/admin.php b/app/controller/admin.php
index ecd9f7a9feb47197bc5ffab6c33674a728a6dbc4..27cbb21c6bbd6f444c81cb90e221bae41855380e 100644
--- a/app/controller/admin.php
+++ b/app/controller/admin.php
@@ -1591,7 +1591,7 @@ class Admin extends Controller
         $datas['update'] = $update; //! recurrent transactions remisées just added
         $datas['comptabilise'] = $comptabilise; //! recurrent transactions remisées already added
         $datas['sans_cumul'] = $sans_cumul; //! empty
-        $log->write('Processing recurrent donation finished.');
+        $log->write('Processing recurrent donations finished.');
         return $datas;
     }