打开“服务器管理器”,在左侧列表中选中“本地服务器”将右侧“远程桌面”功能的选项修改为“启用”,注意取消下面复选框的选中状态“Win键”+R 组合键调出运行窗口,输入“gpedit.msc”调出组策略编辑器计算机配置->管理模板->Windows 组件->远程桌面服务->远程桌面会话主机->连接 的路径,找到“将远程桌面服务的用户限制到单独的远程桌面会话”配置项打开配置界面,选择“已禁用”选项
由于误操作导致数据库表被删除,但是只开启了每日的定时更新,当天的数据丢失,通过这个方法找到指定表相关的当天的操作记录。前提:需开启mysql日志/www/server/mysql/bin/mysqlbinlog /www/server/data/mysql-bin.000048 |grep 'table_name' >>binlog20200611.sql/www/server/mysql mysql的安装目录/www/server/data/mysql-bin.000048 mysql日志文件table_name 指定表的名称binlog20200611.sql 执行操作后保存sql文件的路径及名称 未指定路径的话则保存在当前操作的目录
栈内存:存储局部变量,使用完毕,立即消失堆内存:存储new出来的内容(实体,对象),使用完毕,会在垃圾回收器空闲的时被回收
已按照作者的介绍配置,但是还是会提示重定向次数过多导致安装失败1、找到使用的PHP版本,并注释如使用7.0版本,路径如:/www/server/nginx/conf/enable-php-70.conf注释 pathinfo.conf location ~ [^/]\.php(/|$) { try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi-70.sock; fastcgi_index index.php; include fastcgi.conf; # include pathinfo.conf; }问题解决
备份navicat数据库连接信息,导入后需要输入密码才可以连接数据库<?php class NavicatPassword { protected $version = 0; protected $aesKey = 'libcckeylibcckey'; protected $aesIv = 'libcciv libcciv '; protected $blowString = '3DC5CA39'; protected $blowKey = null; protected $blowIv = null; public function __construct($version = 12) { $this->version = $version; $this->blowKey = sha1('3DC5CA39', true); $this->blowIv = h
月初到月末时间戳$y = date("Y", time()); //年 $m = date("m", time()); //月 $d = date("d", time()); //日 $t0 = date('t'); // 本月一共有几天 $start_month = mktime(0, 0, 0, $m, 1, $y); // 本月开始时间戳 $end_month = mktime(23, 59, 59, $m, $t0, $y); // 本月结束时间戳时间戳//获取今日开始时间戳和结束时间戳 $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y')); $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1; //获取昨日起始时间戳和结束时间戳 $
CentOS系统服务器安装的宝塔环境,composer安装依赖提示当前服务器php版本为7.0,安装的依赖需要7.1以上先删除rm -f /usr/bin/php再将版本改成7.2ln -sf /www/server/php/72/bin/php /usr/bin/php
远程仓库一直正常使用,近期在服务器拉远程仓库代码的时候报错error: The requested URL returned error: 401 Unauthorized while accessing https://gitee.com/imxgr/console.git/info/refs fatal: HTTP request failed网上找了一些提供的解决办法,最终使用更换远程地址这个办法解决,记录一下git remote set-url origin https://xuguorui@gitee.com/imxgr/console.git
常用到的几个模糊匹配的方法实例<div> <input id="id1" type="text" name="name1" value="1" id_temp="haha"/> <input id="id2" type="text" name="name2" value="2"/> <input id="id3" type="text" name="name3" value="3" /> <input id="id4" type="text" name="name4" value="4"/> </div>1、利用id获得id1的value值var i
公司使用的软件供应商的软件只开发了备份功能,没有覆盖和定时删除,磁盘经常会占满,需要手动删除,便有了这个需求。A*.zip 开头为A的.zip文件-6 6天前文件@echo off forfiles /p D:\test /m A*.zip /d -6 /c "cmd /c del @path"