Whoops, looks like something went wrong

Whoops, looks like something went wrong.

这是由于访问laravel项目报错的,解决几种可能出现的错误。

1)打开:D:javawampwwwsubwayappconfigapp.php 修改:'debug' => true, debug基本为true

2)打开debug后出现这个错误,报错:OpenSSL did not produce a secure random number

pen: D:javawampwwwsubwayvendorsymfonysecuritySymfonyComponentSecurityCoreUtilSecureRandom.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.');  
            }  

解决:php.ini 启用 extension=php_openssl.dll 扩展后,重启wamp服务。

原文地址:https://www.cnblogs.com/soonfly/p/4884686.html