#Hi

zip error: Nothing to do! (try: zip -qr /home/backup/20170903195/home/pro1)

错误可能:zip命令编辑错误或者是目录错误zipI/Oerror:Nosuchfileordirectory目录未创建(-->脚本不自动创建目录)...
开发笔记 ·2024-10-21

解决Authentication plugin caching_sha2_password cannot be loaded问题

登录mysql时报错Authenticationplugin‘caching_sha2_password‘cannotbeloaded解决办法 报错信息如下:ERROR2059(HY000):Authenticationplugin'caching_sha2_password&...

如何启动或关闭oracle的归档(ARCHIVELOG)模式

1.管理员身份连接数据库C:UsersAdministrator>sqlplussys/sys@prjdbassysdbaSQL*Plus:Release11.2.0.1.0ProductiononTueJun1723:50:552014Copyright(c)1982,2010,Oracle.Allrights...

js+thinkphp 实现jsonp跨域

1、使用js创建script动态插入页面//用来创建script标签//用来创建script标签(function(){//创建一个script标签varscript=document.createElement('script');//指定script的类型script.type='text/javascript';...

Mysql报错: ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

解决方法一:报错:ERROR1290(HY000):TheMySQLserverisrunningwiththe--secure-file-privoptionsoitcannotexecutethisstatement 二:分析:MySQL对于导入导出的目录是有限制的,只允许指定的目录才能导入导出。secu...

AI 与 Machine Learning

AI和机器学习 正在前端开发中逐渐得到应用。借助于TensorFlow.js和其他JavaScript库,前端开发者可以将AI功能直接集成到网页和应用中,实现实时图像处理、自然语言处理等功能。...
开发笔记 ·2024-08-31

Shiro集成Redis,shiro登录成功仍然认证失败,请求静态资源会updateSession

我再使用SpringBoot集成Shiro的时候,采用了Redis作为缓存,我的sessionDao大概是这样这个时候出现了两个非常令我苦恼和想不通的问题,shiro的过滤在最后设置/*=authc后登录的时候debug发现用户名密码都是对的但是返回的页面进行的重定向回到了登录页面也就是认证失败,还有一个问题就是每个页...

树莓派4B终端上输入gpio readall提示gpio: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: Error 40

如果你的系统是64位的话,在使用最新的树莓派的64位系统。使用旧版本的WiringPi来进行IO控制的时候,由于原版已经不再更新,对于新的树莓派使用时存在指令无法使用的问题。 ...

thinkphp5使用phpmailer进行发送邮件功能

1、使用composer工具安装,在tp5根目录下执行 默认使用1.0版本  composerrequirephpmailer/phpmailer 安装成功后显示下面目录 2、封装发送邮件方法我放置在了extra文件夹内function sendEmail($...

Thinkphp5获取访客用户ip地址的方法

用户访问tp5网站,可以通过内置ip()函数获取ip地址$request = Request::instance();echo '访问ip地址:' . $request->ip();...

thinkphp使用setInc和setDec进行字段加1减1

//score字段加1db('article')->where('id',1)->setInc('score');//score字段加5db('article')->where('id',1)->setInc('score',5);//score字段减1db('article')->whe...

thinkphp where中or多个like模糊搜索

$where['m_username|mnickname']=array('like',"%{$keyword}%",'or');['name|seo_title|keywords|description|desc|introduce_text...

thinkphp8升级更新命令

composerupdatetopthink/framework...

available: expected at least 1 bean which qualifies as autowire candidate

available:expectedatleast1beanwhichqualifiesasautowirecandidate这个错误我也是找了半天,最后排查的时候发现是自己的实现类写错了,所以注入不进去.出现这个错误一般有四个方向排查查看接口实现类是否加入注解,如service、repository等查看spring...

ORA-55605: Incorrect Flashback Archive is specified

文档解释ORA-55605:IncorrectFlashbackArchiveisspecifiedCause:AnattemptwasmadetooperateonaFlashbackArchivethatdoesnotexist,ortocreateaFlashbackArchivethatalreadyexist...
首页上一页12345...下一页尾页