#thin

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

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

js+thinkphp 实现jsonp跨域

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

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...

ORA-12841: Cannot alter the session parallel DML state within a transaction

文档解释ORA-12841:CannotalterthesessionparallelDMLstatewithinatransactionCause:TransactioninprogressAction:Commitorrollbacktransactionandthenre-executeORA-12841:不能在...

ORA-12485: new effective label not within effective clearance

文档解释ORA-12485:neweffectivelabelnotwithineffectiveclearanceCause:Youattemptedtoenteravalueforaneffectivelabelthatdidnotdominatetheeffectiveminlabelorwasnotdomina...

ORA-06565: cannot execute string from within stored procedure

文档解释ORA-06565:cannotexecutestringfromwithinstoredprocedureCause:Thenamedprocedurecannotbeexecutedfromwithinastoredprocedure,functionorpackage.Thisfunctioncanonl...

ORA-14516: subpartition corrupt. all rows do not fall within subpartition bounds

文档解释ORA-14516:subpartitioncorrupt.allrowsdonotfallwithinsubpartitionboundsCause:Thesubpartitioncontainsrowswhichshouldreallybeinsomeothersubpartition.Possiblydu...

ORA-16290: cannot alter the session logical replication state within a transaction

文档解释ORA-16290:cannotalterthesessionlogicalreplicationstatewithinatransactionCause:Atransactionwasalreadyinprogress.Action:Commitorrollbackthetransactionandthenr...

ORA-30346: hierarchy name must be unique within a dimension

文档解释ORA-30346:hierarchynamemustbeuniquewithinadimensionCause:Thesamenamewasusedformorethanonehierarchyinadimension.Action:Checkthespellingofthehierarchyname.ORA...

ORA-64102: Cannot create an XMLIndex with a structured component on a CLOB column within the object-relational storage model.

文档解释ORA-64102:CannotcreateanXMLIndexwithastructuredcomponentonaCLOBcolumnwithintheobject-relationalstoragemodel.Cause:AnattemptwasmadetocreateanXMLIndexwithastr...

ORA-14507: partition corrupt. all rows do not fall within partition bounds

文档解释ORA-14507:partitioncorrupt.allrowsdonotfallwithinpartitionboundsCause:Thepartitioncontainsrowswhichshouldreallybeinsomeotherpartition.Possiblyduetoanexchang...
首页上一页12345...下一页尾页