Skip to content
Snippets Groups Projects
Commit 4e0f3e81 authored by ale's avatar ale
Browse files

Set COOKIEHASH to a fixed value

Avoids an extra SQL lookup on every request (a drop in the
ocean, but still).
parent 63165bf1
Loading
......@@ -109,6 +109,12 @@ define('SMTP_FROM', 'noreply@autistici.org');
define('SMTP_NAME', 'NoBlogs');
define('SMTP_DEBUG', 0);
/* Set the cookie hash once and for all. Avoids one SQL
* lookup on every request. This is just md5(https://noblogs.org/)
* to match the value that Wordpress would compute itself.
*/
define('COOKIEHASH', '7d12c307721c1cbe9412c639209d72aa');
/**#@+
* Authentication Unique Keys and Salts.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment