zoukankan      html  css  js  c++  java
  • laravel遇到的问题

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

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

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

    Php代码  收藏代码
    1. pen: D:javawampwwwsubwayvendorsymfonysecuritySymfonyComponentSecurityCoreUtilSecureRandom.php  
    2.                 $this->logger->info('OpenSSL did not produce a secure random number.');  
    3.             }  
    4.         }  
    5.    
    6.         // initialize seed  
    7.         if (null === $this->seed) {  
    8.             if (null === $this->seedFile) {  
    9.                 throw new RuntimeException('You need to specify a file path to store the seed.');  
    10.             }  
    11.    

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

    No supported encrypter found.

    RuntimeException in compiled.php line 6904: No supported encrypter found. The cipher and / or key length are invalid.
     
     
    laravel5.1开始APP_KEY必须是长度32且有cipher。去.env设置或者是config/app.php设置吧
  • 相关阅读:
    SQL Server 通用分页存储过程
    SQL 分页通用存储过程
    python 获取本机IP的三种方式
    Python代码打印出9*9 九九乘法表
    python进程.线程和协程的总结
    5.__魔法方法__开会喽
    css干货部分
    html干货部分
    pyinstaller 打包exe可执行文件
    3_3.黏包现象
  • 原文地址:https://www.cnblogs.com/canphp/p/4739884.html
Copyright © 2011-2022 走看看