CentOS遇到Error: Cannot find a valid baseurl for repo: base错误解决办法

Centos运行yum update时候提示Error: Cannot find a valid baseurl for repo: base,具体如下

yum update
Loaded plugins: fastestmirror
Determining fastest mirrors
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
 Eg. Invalid release/repo/arch combination/
removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: base
继续阅读“CentOS遇到Error: Cannot find a valid baseurl for repo: base错误解决办法”

outlook超短邮箱申请

在2013年4月的时候,微软 Outlook.com 一口气推出了 32 个国际域名 Outlook.com 邮箱地址注册。很多后缀还是可以申请到2-3位的字符或者数字的邮箱的!
我们以lv域名为例!输入申请地址https://signup.live.com/signup.aspx?mkt=lv-lv&lic=1
不同国家地区的语言不同,不顾不用怕,大家走一遍流程就知道怎么回事了,还有个很简单的办法就是直接上浏览器自带的网页翻译。如果还觉得麻烦,你就用中文的outlook注册一遍,就知道怎么回事了。

下面是outlook域名地址列表,大家按需申请注册吧:

继续阅读“outlook超短邮箱申请”

python菜鸡——BMI计算

廖雪峰教程的练习:

小明身高1.75,体重80.5kg。请根据BMI公式(体重除以身高的平方)帮小明计算他的BMI指数,并根据BMI指数:

  • 低于18.5:过轻
  • 18.5-25:正常
  • 25-28:过重
  • 28-32:肥胖
  • 高于32:严重肥胖

if-elif判断并打印结果。

print('Hi there, plz input your name:')
name = input()
print('hi there, your name is:', name)
print('plz input your height(CM)')
height = input()
print('hi there, your height is:', height)
print('plz input your weight(KG)')
weight = input()
print('hi there, your weight is:', weight)
h = float(height)
w = float(weight)
BMI = w/h/h*10000
if BMI >= 32:
    a = '严重肥胖'
elif BMI >=28:
    a = '肥胖'
elif BMI >= 25:
    a = '过重'
elif BMI >= 18.5:
    a = '正常'
else:
    a = '太轻'
print('hi %s, here is all your info:' %name)
print('your height and weight is %d cm,'%h)
print('your weight is %d kg' %w)
print('BMI = %.2f, ' %BMI, a)

身高体重本来是int,测试ok,但是体重输了个带小数点的就报错了,就换为float了,取小数点后两位。

其实最后三句,想合在一句写的,但是目前还没法搞定,试了好几种都错了。所以只能分开,或者最后四句写在一起。2020.5.5

WordPress自动更新失败的解决办法

WordPress登录之后提示升级,然后点升级按钮之后卡住,再点会提示:

Notice: 发生了预料之外的错误。WordPress.org或是此服务器的配置可能出了一些问题。如果您持续遇到困难,请试试支持论坛。 (WordPress无法建立到WordPress.org的安全连接,请联系您的服务器管理员。) in /www/wwwroot/xxxxx.com/wp-admin/includes/update.php on line 131

错误产生原因: wordpress的官方网址wordpress.org国内无法访问(完全不懂这样做的意义何在,何必墙这个站)

解决办法:

继续阅读“WordPress自动更新失败的解决办法”

解决lnmp下WordPress升级需要输入FTP信息

========= 推荐使用方法 =========

还需要修改下Wordpress的配置文件,wp-config.php,加入这么三行:

define(“FS_METHOD”, “direct”);

define(“FS_CHMOD_DIR”, 0777);

define(“FS_CHMOD_FILE”, 0777);

然后再进入后台,点击升级,发现升级成功了!

 

其他解决方法:

假设你的wordpress安装目录为/home/wwwroot/lnmp.org

用Putty登录Linux VPS,执行:

chown -R www /home/wwwroot/lnmp.org

执行上面的命令就可以将/home/wwwroot/lnmp.org下所有文件的属主改为www,这样就可以解决自动更新必须填FTP的问题。

操作到这里,我的还是不行,依旧无法自动升级,