I tried to install symphony on my localhost xampp. My Php version is: 7.0.5. After I filled all of the inputs (db connection, username password, etc) I got this error message:
Symphony Warning: mt_srand() expects parameter 1 to be integer, float given
95 * @return string
96 * a hexadecimal string
97 */
98 public static function generateSalt($length)
99 {
100 mt_srand(microtime(true)*100000 + memory_get_usage(true));
101 return substr(sha1(uniqid(mt_rand(), true)), 0, $length);
102 }
103 }
How can move forward this this ? I am newbie and this is the first time when I tried to install Symphony. Thx in advance.