04 2021 档案
摘要:ssh-keygen -t rsa ssh-copy-id -i ~/.ssh/id_rsa.pub -p [端口号] "[用户名]@[IP/域名]"
阅读全文
摘要:采用wordpress官方镜像启动了容器,现在需要配置https登录。 登录阿里云,发现曾经赠送了一个1年的SSL服务,且刚好有一个阿里云的DNS解析,因此可以通过阿里云获得SSL证书。 完成SSL证书申请,并下载证书(阿里云的SSL服务和DNS解析需要购买) 检测发现wordpress容器中的服务
阅读全文
摘要:安装WP-PostViews插件 找到外观 → 主题编辑器中的index.php和single.php //index.php中找到while ( have_posts() ) :,在循环中添加 if(function_exists('the_views')) { the_views(); }
阅读全文
摘要:docker 搭建wordpress https://www.cnblogs.com/old-cha/p/12926434.html https://www.imooc.com/article/276628 docker pull wordpress:latest docker pull mysql
阅读全文
摘要:当dataframe中有元素为numpy array时,进行pandas.HDFStore.put时会报warning: your performance may suffer as PyTables will pickle object types that it cannot map direc
阅读全文