SSL integration
http添加ssl 转为https 参考方法 https://www.digitalocean.com/community/tutorials/how-to-install-an-ssl-certificate-from-a-commercial-certificate-authority
2019-01-25 english
performance review :绩效考核 I got your email, thanks! :我收到你的邮件了,谢谢!
Linux centos install Apache
1、下载apache 官网:http://httpd.apache.org/ 使用wget下载: wget http://mirrors.cnnic.cn/apache//httpd/httpd-2.2.32.tar.gz 解压以及安装: [root@localh…
Nginx introduce
Nginx (“engine x”) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。Nginx是由Igor Sysoev为俄罗斯访问量第二的Rambler.ru站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类…
http in post and get
做Web开发就一定会涉及到浏览器和服务器的交互,所以了解浏览器和服务器交互的方式就尤为重要。从接触B/S开始就已经接触到了get和post。 HTTP协议 说道GET和POST,就不得不提HTTP协议,因为浏览器和服务器的交互是通过HTTP协议执行的,而GET和POST也是HTTP协议中的两种方法。…
在Magento中显示原生SQL语法(Magento sql debug调试)
Magento标准对资料库存取的方式都是使用ORM ,需要除错的时候就会想要印出原生SQL来看看,完整的SQL到底长什么样子呢? 第一种方式 getSelect()显示sql的语句方式 只需要输出下面语句即可。 下面是操作案例: 上面是取得资料库资料的程式码,因为有getCollection,所以内…
magento get block content
magento获取block内容的方式 $this->loadLayout();$toplink = $this->getLayout()->getBlock(‘top.links’)->toHtml(); 最后直接输出 $toplink;
Git use
git使用方式集合
Git learn
Git 学习资源网站 https://www.liaoxuefeng.com/ https://git-scm.com/ https://www.yiibai.com/git
$this->getLayout()->getBlock()
获取block的内容使用方法: $sidebar_block=$this->getLayout()->getBlock(‘minicart_content’)->toHtml();