Posted by MarketStone on November 30, 2015 at 6:36pm
would like to let people down load a copy of my site.
Do not have time to make a profile and plan to give the: sites, theme and module folder and the database .sql file.
i plan to have people change the database & user name and password plus change admin name/password. i noticed there is a new unique number generated in sites/files and i am sure the salt encryption number is site unique.
My question to any d8's can You think of any other single site specific numbers i need to change before i hand out copies.
Thank You!
if joomla and wordpress are a 10, d7 is a 13, d8 is a 89 lov the quick edit button!

Comments
Hi MarketStone I think the
Hi MarketStone
I think the generated number you are talking about is
hash_salt.hash_saltis used to salt transient hashes like image style tokens and one-time login links.I would recommend against giving out copies with the same hash salt. You can generate a new one, and then you will need to add it to
settings.phpas$settings['hash_salt'] = 'your salt';. You can generate a secure hash here:: http://www.sha1-online.com/Good luck!