zoukankan      html  css  js  c++  java
  • xammp环境配置

    xammp 配置修改
       apache/conf/httpd.conf
           DocumentRoot "E:/111www2"  #修改目录
           <Directory "E:/111www2">
       apache/conf/extra/httpd-vhosts.conf
           <VirtualHost *:80>   #修改虚拟域名
            ServerAdmin dev.xhadmin.com
            DocumentRoot "E:/111www2/xhadmin/public"
            ServerName dev.xhadmin.com
            ServerAlias dev.xhadmin.com
            ErrorLog "logs/dummy-host.example.com-error.log"
            CustomLog "logs/dummy-host.example.com-access.log" common
        </VirtualHost>
        C:WindowsSystem32driversetchosts
            127.0.0.1   dev.xhadmin.com  #修改host
        php/ext
           里面放入PHP的扩展
        php.ini
           extension=php_igbinary.dll  #添加扩展信息
           extension=php_redis.dll
           extension=php_pdo.dll
           extension=php_pdo_mysql.dll
    
        redis扩展下载和本地redis服务安装  
        E:111gongji
    edis64bit64bit
    edis-server.exe
        php7.3配置redis
        https://www.cnblogs.com/dayue/p/9522467.html
        https://windows.php.net/downloads/pecl/releases/igbinary/2.0.8/
        https://windows.php.net/downloads/pecl/releases/redis/4.2.0/
  • 相关阅读:
    持续集成概念
    性能测试,负载测试,压力测试有什么区别
    安全测试
    接口测试及常用接口测试工具
    python-Csv 实战
    Python3 + Appium学习链接
    python-Txt实践
    python-ddt实践
    保险--总结
    selenium与页面的交互
  • 原文地址:https://www.cnblogs.com/suxiaolong/p/11828149.html
Copyright © 2011-2022 走看看