I have copy my new Laravel project in my new directory. But my project is not included with "vendor" directory. So I run command:
composer install
And everything run smoothly vendor direcotory created and filled in with packages.
Then I refresh my web page, suddenly I get an error. But usually I do like this without error.
You need to specify a file path to store the seed
The error was in file D:wwwlaravelmyprojectvendorsymfonysecuritySymfonyComponentSecurityCoreUtilSecureRandom.php
...
$this->logger->info('OpenSSL did not produce a secure random number.');
}
}
// initialize seed
if (null === $this->seed) {
if (null === $this->seedFile) {
throw new RuntimeException('You need to specify a file path to store the seed.');
}
...
When I check my Laravel version, my Laravel updated to version 4.1.28.
I use wamp for Windows 7 64bit.
Is there a something that I missed? Thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…