设计开发

设计是视觉主观形式的表现手段和结果,开发是根据需求设计编写出产品的过程。

使用JavaScript检测广告拦截器的最有效方法

使用JavaScript检测广告拦截器的最有效方法

使用JavaScript检测广告拦截器的方法 如果您想知道您网站上的访问者是否正在阻止百度联盟、阿里妈妈、Google AdSense和其他在线网络广告,则可以借助一些JavaScript轻松地做到这一点。常见的广告拦截器有哪些...

解决AttributeError: module ‘enum’ has no attribute ‘IntFlag’

解决AttributeError: module ‘enum’ has no attribute ‘IntFlag’

项目pip3 install -r requirements.txt的时候报错: AttributeError: module 'enum' has no attribute 'IntFlag' 检查代码发现没有问题,只能是环境或包的问题。 网上的说法是因为enum34这个包 ,...

MySQL8修改重置root密码,远程连接权限设置

MySQL8修改重置root密码,远程连接权限设置

MySQL8 修改重置root密码 这里要单独强调是MySQL8,因为在MySQL 8.04前,执行:SET PASSWORD=PASSWORD('[新密码]');可行,但是MySQL8.0.4开始,这样默认是不行的。因为之前,MySQL的密码认证插件是“mysql_nat...

解决Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin

解决Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin

登录PhpMyadmin的时候它一直说“Failed to set session cookie. Maybe you are using HTTP instead of HTTPS to access phpMyAdmin”,本文提供3种解决该问题的方法。 您可以轻松解决此问题。请按照以下步骤操...

解决A non well formed numeric value encountered

解决A non well formed numeric value encountered

A non well formed numeric value encountered PHP message: PHP Notice: A non well formed numeric value encountered……,格式错误的数值。 从PHP5切到PHP72后报如上错误,官方文档对这种错误的解释: ...

WordPress判断用户特定内容只对管理员可见

WordPress判断用户特定内容只对管理员可见

WordPress特定内容只对管理员可见 之前判断登录用户的角色用的是current_user_can()方法,比如判断当前用户是否是作者用current_user_can('author'),但对于WordPress 5不再可行。current_user_can的用法变了...

解决MySQL错误:ERROR 1175: You are using safe update mode

解决MySQL错误:ERROR 1175: You are using safe update mode

Error Code: 1175. You are using safe update mode 错误提示:正在使用安全更新模式,尝试更新表没有使用键列的where条件。 解决方法与,查看当前模式: show variables like 'sql_safe%'; 原因是...

解决Job for mysqld.service failed because the control process exited with error code. See “systemctl status mysqld.service” and “journalctl -xe” for details.

解决Job for mysqld.service failed because the control process exited with error code. See “systemctl status mysqld.service” and “journalctl -xe” for details.

Mysql突然无法启动了,报错: Job for mysqld.service failed because the control process exited with error code. See "systemctl status mysqld.service" and "journalctl -xe" for details. 根据提示...

解决MySQL8 #1227 – Access denied; you need (at least one of) the SYSTEM_USER privilege(s) for this operation

解决MySQL8 #1227 – Access denied; you need (at least one of) the SYSTEM_USER privilege(s) for this operation

很奇怪今天MySQL8突然出现一些莫明的错误,比如我昨天在用的帐户,今天操作时报如下错误: 1227 - Access denied; you need (at least one of) the SYSTEM_USER privilege(s) for this operation 具有root...

如何重新加载/重启php7-fpm/php5-fpm/php-fpm服务

如何重新加载/重启php7-fpm/php5-fpm/php-fpm服务

是Linux和Unix系统的新用户。我想重新加载或重新启动我的PHP-fpm服务。Linux如何重新启动PHP-fpm?如何在Ubuntu Linux 16.04 LTS服务器上重新启动php7.0-fpm? PHP-FPM仅仅是一个简单而强大的PHP FastCGI Pro...