On 11/20/2012 06:00 PM, Charles Bujold wrote: > > Installed Poweradmin and when I log in I receive the following error: > > > > Error: Default session encryption key is used, please set it in your > configuration file. > > > > How do I fix this? What configuration file and where do I find the > encryption key > > > > Thanks > > > > cjb > > Hi,
Add variable $session_key with some random string to your inc/config.inc.php file. An example: 1. Generate random string with openssl: $ openssl rand -base64 32 BGHfCJUh5VcB4qaRpjaXMBnXMFxyCesybeXx2h+4PCA= 2. Put this generated string to your config: $session_key = "BGHfCJUh5VcB4qaRpjaXMBnXMFxyCesybeXx2h+4PCA="; -Ed
_______________________________________________ poweradmin-users mailing list [email protected] http://lists.poweradmin.org/cgi-bin/mailman/listinfo/poweradmin-users
