perloader

低成本防DDOS/80host的OVH加拿大高防机房/49元/2G内存

低成本防DDOS,80host的OVH加拿大高防机房,限量优惠只要49元 特价服务器 – 促销-加拿大/法国高防VPS 2G 促销-加拿大/法国高防VPS 2G ¥49RMB » 机房选择: 加拿大 ¥0RMB » 操作系统: Centos 6 64bits ¥0RMB » 操作系统语言: English ¥0RMB » 额外IP地址(最大16个): 默认1个IP地址 ¥0RMB » 额外硬盘: 无 ¥0RMB 安装费: ¥0RMB 月付: ¥49RMB 当前总计: ¥49RMB https://my.80host.com/aff.php?&pid=190

.

Read more

WORDPRESS调取文章第一张图片地址 支持外链

替换原本特色图像功能,设置外链缩略图。 Functions.php: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 add_theme_support( ‘post-thumbnails’ ); function catch_that_image() { global $post, $posts; $first_img = ”; ob_start(); ob_end_clean(); $output = preg_match_all(‘/<img.+src=[\’”]([^\’”]+)[\’”].*>/i’, $post->post_content, $matches); $first_img = $matches [1] [0]; […]

.

Read more

Hostodo:$16/年/1GB内存/3TB流量/OpenVZ/达拉斯/迈阿密

Hostodo,其洛杉矶亚洲优化VPS,国内速度很不错。本站使用的正是这家的。现在推出了一款达拉斯、迈阿密vps,如下: TXVZ-1024 内存:1 GB vSwap:1 GB 空间:90 GB(RAID10) 流量:3 TB / 月(1 Gbps 带宽) IPv4:1 $16/年 优惠码:2O9N2QP6TH 相当于三六折哦 达拉斯 https://hostodo.com/portal/aff.php?&pid=91 迈阿密 https://hostodo.com/portal/aff.php?&pid=44 达拉斯:155.94.243.4 http://TX.hostodo.com/100mb.test 迈阿密:104.223.122.101 http://mia.hostodo.com/100mb.test

.

Read more

多IP的VPS:impactvps-$6/4核/5IP/4g内存/50gSSD/西雅图

impctvps.com的几个特价VPS,目前为5折促销。服务器配置:10G端口接入,价格超低,服务器配置:Dual E5v3, 128GB of DDR4 , 4-6 x 1TB SSD,10Gbps。说明:VDR系列的VPS都是可以拆分的,比如下面这个VPS你可以拆分给最多4个VPS,每个VPS确保至少有1个独立IP和1核CPU… 所有VPS支持3天内退款。 VDR4 4 核 4G内存 45G SSD 2T 流量 5 IPv4 IPv6 西雅图、达拉斯、纽约 优惠码:summerishere 价格:6美元/月 http://subnetlabs.com/billing/aff.php?&pid=23 西雅图: 107.155.106.130 达拉斯: 162.212.59.218 纽约: 172.110.20.1

.

Read more

离岸VPS列表

排名分先后,更新中。。。 Hosting list below will ignore all kind of DMCA/Copyright notice. And also prevent your privacy. https://www.privatelayer.com Switzerland http://www.ecatel.info Netherlands https://www.voxility.com Romania https://www.server.lu Luxembourg http://www.swiftway.net http://www.dedikuoti.lt Most of the big torrent guys using this service. Sale staff said to ignore DMCA on lowendtalk: https://www.xhostfire.com/clientarea/cart.php?gid=10 Latvia&Finland http://en.hostsolutions.ro/hosting/vps-hosting/kvm-vps-hosting/ Romania http://www.hostclean.net/kvm Romania voxility Home Romania voxility http://www.warez-host.com/ ———————— added on 2016/06/27 https://webcare360.com/offshore-vps-servers.html http://www.parkinhost.com/russia-vps.php   […]

.

Read more

WordPress配置Memcached内存缓存

使用lnmp的,进入lnmp解压后的目录, 执行:./addons.sh install memcached 使用oneinstack的,安装时记得选择memcached 然后安装MemcacheD Is Your Friend wordpress插件 yum install xinetd yum install telnet –server 查看Memcached内存使用情况,可以执行: telnet 127.0.0.1 11211 然后输入stats就可以看到Memcached缓存使用情况了。 看cmd_get,cmd_set,get_hits,get_misses, 上图是一个日流量一二十万的wordpress网站运行一周产生的数据。使用oneinstack安装nginx+mysql 5.7+php 7+Zend OPcache+Redis+Memcached+Jemalloc效果很明显。负载平均不过1.0。 如何退出? Ctr+] 然后输入quit  

.

Read more

BalkanVps:$10/月/1G内存/科索沃/离岸VPS/无版权/KVM

很少见的地区的VPS,FAQ在这里,收到投诉会转发,可以退款,1-7个工作日,接受Bitcoin和Paypal付款。 1 CPU Core 15 GB HDD 1 GB RAM Windows/Linux KVM Virtualisation 1 Gbit/s Unmetered Port (Shared) Republic of Kosovo Order here: https://my.balkanvps.eu/cart.php?a=add&pid=6 测试IP:185.75.56.65 / 84.22.50.247

.

Read more

wordpress 无插件 配置smtp发送邮件

在主题的functions.php里面加入 //使用smtp发送邮件(请根据自己使用的邮箱设置SMTP) add_action(‘phpmailer_init’, ‘mail_smtp’); function mail_smtp( $phpmailer ) { $phpmailer->FromName = ‘xxx’; //发件人名称 $phpmailer->Host = ‘smtp.xxxx.com’; //修改为你使用的邮箱SMTP服务器 $phpmailer->Port = 465; //SMTP端口 $phpmailer->Username = ‘admin@xxx.xxx’; //邮箱账户 $phpmailer->Password = ‘xxxxxx’; //邮箱密码 $phpmailer->From = ‘admin@xxx.xxx’; //邮箱账户 $phpmailer->SMTPAuth = true; $phpmailer->SMTPSecure = ‘ssl’; //tls or ssl (port=25时->留空,465时->ssl) $phpmailer->IsSMTP(); }

.

Read more

install XFileSharing Pro 2.4

根目录下记得添加.htaccess CentOS 6.5 64 Bit 首先yum安装lamp. 官方停止更新CentOS6之后手工更新yum源 cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo-backup wget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/repo/Centos-6.repo wget -O /etc/yum.repos.d/epel.repo http://file.kangle.odata.cc/repo/epel-6.repo yum makecache yum update yum install httpd ifconfig eth0 | grep inet | awk ‘{ print $2 }’ echo ‘ServerName 127.0.0.1’ >> /etc/httpd/conf/httpd.conf iptables -F firewall-cmd –zone=public –add-port=80/tcp –permanent firewall-cmd –reload service httpd restart ip访问 “It works!” yum install mysql-server […]

.

Read more
xyz