您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
wordpress实现QQ微信钉钉Github手机号登陆的方法
灵槐2023-06-26 22:45:26WordPress教程已有人查阅
导读wordpress用wechat-social-login插件实现QQ微信钉钉Github手机号登陆,图形验证码加载不出来。最近利用wordpress建站的时候
wordpress用wechat-social-login
插件实现QQ微信钉钉Github手机号登陆,图形验证码加载不出来。
最近利用wordpress建站的时候,用到了wechat-social-login
插件实现微信、QQ、钉钉、Github
登陆功能时,开启图形验证码功能后,看到图形二维码一直加载不出来,F12
看到状态码为200,但没有返回值,报错This request has no response data available
wordpress版本:wordpress:4.9.8版本
php版本:v7.2.12
dockcer镜像为:wordpress:4.9.8
打开wordpress日志后,发现debug
日志文件中报以下的错误。开启debug日志方法请移步历史文章如何开启WordPress调试模式(报错提示),将日志打印到wp-content
目录下的debug.log
中。
[08-Feb-2020 07:37:42 UTC] PHP Fatal error: Uncaught Error: Call to undefined function GregwarCaptchaimagettfbbox() in /var/ /html/wp-content/plugins/wechat-social-login/includes/captcha/CaptchaBuilder.php:327
Stack trace:
#0 /var/ /html/wp-content/plugins/wechat-social-login/includes/captcha/CaptchaBuilder.php(440): GregwarCaptchaCaptchaBuilder->writePhrase(Resource id #7, '84sx', '/var/ /html/w...', 150, 40)
#1 /var/ /html/wp-content/plugins/wechat-social-login/includes/social/class-xh-social-ajax.php(203): GregwarCaptchaCaptchaBuilder->build()
#2 /var/ /html/wp-content/plugins/wechat-social-login/includes/social/class-xh-social-ajax.php(209): XH_Social_Ajax::{closure}()
#3 /var/ /html/wp-includes/class-wp-hook.php(286): XH_Social_Ajax::captcha('')
#4 /var/ /html/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array)
#5 /var/ /html/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
#6 /var/ /html/wp-admin/admin-ajax.php(99): do_action('wp_ajax_xh_soci...')
#7 {main}
thrown in /var/ /html/wp-content/plugins/wechat-social-login/includes/captcha/CaptchaBuilder.php on line 327
网站查询资料说:图形验证码功能需要安装gd库
和freetype
等依赖,通过phpinfo()查看到详细信息里:gd扩展没有freetype
:
在网站的根目录下新建一个php-info.php
的文件,内容为:
<?php
phpinfo();
保存后,用域名访问,如https://action.liabio.cn/php-info.php
,即可看到。
Dockerfile文件如下:
FROM wordpress:4.9.8
RUN echo 'deb http://mirrors.163.com/debian/ stretch main contrib non-freendeb http://mirrors.163.com/debian/ stretch-updates main contrib non-freendeb http://mirrors.163.com/debian/ stretch-backports main contrib non-free' > /etc/apt/sources.list
RUN apt update
&& apt install -y libwebp-dev libjpeg-dev libpng-dev libfreetype6-dev
&& docker-php-source extract
&& cd /usr/src/php/ext/gd
&& docker-php-ext-configure gd --with-webp-dir=/usr/include/webp --with-jpeg-dir=/usr/include --with-png-dir=/usr/include --with-freetype-dir=/usr/include/freetype2
&& docker-php-ext-install gd
&& php -m | grep gd
执行以下编译命令:
docker build -t wordpress-freetype:4.9.8 .
结果编译报错。
docker编译镜像报错OCI runtime create failed: container_linux.go:346: starting container process caused "process_linux.go:319: getting the final child's pid from pipe caused "EOF"": unknown
因为我使用的是19.03.5版本的docker,在网上查了资料,大致意思是需要18版本的docker编译才不会报错。
果然,18版本的docker编译没有报错:使用集成了freetype的新镜像使用新镜像后,可以看到freetype成功集成。可以看到二维码已经成功的显示出来了。
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress安装主题时提示超时的解决方法
wordpress安装主题时提示超时要怎么处理?这段英文的意思是下载文件超时,由于你的主机网速比较慢,建议将这一时间调的长一些 -
wordpress可以使用html5吗
wordpress可以用html5吗,wordpress是可以用html5的,可以为WordPress开启 HTML5 支持。WordPress 也可以通过在 header.php -
wordpress调用另外一个网站文章的方法
我们在做wordpress主题的时候,想在主题设置的某个位置专门来显示作者网站里某个分类下的文章;或者我们想在一个网站里调用另外一个wordpress网站内的文章 -
看到好看的wordpress主题怎么扒
怎么抄别人的wordpress主题?抄别人wordpress主题的方法:首先打开想要仿制的WordPress网站;然后右键查看源代码
留言与评论 (共有 条评论) |