From c8919acbe2c330b3309f4848dd75907bdf431983 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Sat, 8 Feb 2014 09:31:38 -0500 Subject: [PATCH] Rephrased FAQ question on 403 Error --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c04b55e6f7..ade68eebf3 100644 --- a/README.md +++ b/README.md @@ -291,14 +291,14 @@ add `app.locals.pretty = true;` to **app.js** with the rest of the Express confi FAQ --- -### Why do I keep getting `403 Error: Forbidden` on submitting a **POST** request? +### Why do I get `403 Error: Forbidden` when submitting a POST form? You need to add this hidden input element to your form. This has been added in the pull request [#40](https://github.com/sahat/hackathon-starter/pull/40). ``` input(type='hidden', name='_csrf', value=token) ``` -### What is cluster_app.js? +### What is `cluster_app.js`? From the [Node.js Documentation](http://nodejs.org/api/cluster.html#cluster_how_it_works): > A single instance of Node runs in a single thread. To take advantage of multi-core systems > the user will sometimes want to launch a cluster of Node processes to handle the load.