From 762666d6e143c4258111f99b7950f74ab9005d1a Mon Sep 17 00:00:00 2001 From: darkalchemy Date: Sun, 2 Sep 2018 21:20:55 +0000 Subject: [PATCH] update: remove leading dots in cookie_domain example --- CHANGELOG | 1 + README.md | 4 ++-- public/install/extra/config.phpsample.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 534da791d..267abc86b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,5 @@ 02 Sept, 2018 +update: remove leading dots in cookie_domain example add: tag @username anywhere update: add columns year, rating updated from api calls update: api calls to ajax requests for faster initial page load details.php diff --git a/README.md b/README.md index b843c4fd3..4412c9ca3 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ CREATE DATABASE Pu-239; # goto website and complete install, all fields must be completed and each fields includes an example and tooltip explanation when hovered # set permissions and create necessary files -sudo php bin/uglify.php sudo php bin/set_perms.php +sudo php bin/uglify.php # set ownership sudo chown -R www-data:www-data ../Pu-239 @@ -114,8 +114,8 @@ git pull composer install composer dump-autoload -o npm install -sudo php bin/uglify.php sudo php bin/set_perms.php +sudo php bin/uglify.php # set ownership sudo chown -R www-data:www-data ../Pu-239 diff --git a/public/install/extra/config.phpsample.php b/public/install/extra/config.phpsample.php index 3de2f7add..6b656f46a 100644 --- a/public/install/extra/config.phpsample.php +++ b/public/install/extra/config.phpsample.php @@ -4,7 +4,7 @@ $site_config['sessionName'] = '#sessionName'; // A single word that identifies this install. $site_config['cookie_prefix'] = '#cookie_prefix_'; // This allows you to have multiple trackers, eg for demos, testing etc. $site_config['cookie_path'] = '#cookie_path'; // generally '/' is good -$site_config['cookie_domain'] = '#cookie_domain'; // set to eg: .somedomain.com or is subdomain set to: .sub.somedomain.com +$site_config['cookie_domain'] = '#cookie_domain'; // set to eg: somedomain.com or is subdomain set to: sub.somedomain.com $site_config['cookie_lifetime'] = '#cookie_lifetime'; // length of time cookies will be valid $site_config['domain'] = '#domain'; $site_config['sessionKeyPrefix'] = '#cookie_prefix_'; // useful if serving multiple sites