Categories
CakePHP PHP WAMP Server

How to Resolve Errors in CakePHP while installing it on Local Server

How to Resolve Errors in CakePHP

If you are newbie to CakePHP and getting the errors like below while installing CakePHP on Local Server.
“Please change the value of ‘Security.salt’ in app/config/core.php to a salt value specific to your application”
“Please change the value of ‘Security.cipherSeed’ in app/config/core.php to a numeric (digits only) seed value specific to your application”

Then the simple solution to resolve the errors is as follows-:
You just need to do as it says –

1. Edit yourInstallation/app/config/core.php
2. Search for Security.salt and change some random characters (this is so your application doesn’t have the same security seed as a billion other installations, which would be a serious security loophole.
3. Do the same with Security.cipherSeed but use only numbers for this.
4. Save core.php and the issue will be resolved