xampp

xampp mysql and phpmyadmin dont work

Deadly 提交于 2020-08-23 03:44:30
问题 yesterday i worked with my xampp and i used apache and mysql services. Today i want to start mysql service and did not worked. I try to search on forums a solution but i cant find anything, so i ask you. In the log file i find this message after the mysql stopped working: 2015-10-29 12:04:02 148c InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal

xampp mysql and phpmyadmin dont work

只愿长相守 提交于 2020-08-23 03:44:06
问题 yesterday i worked with my xampp and i used apache and mysql services. Today i want to start mysql service and did not worked. I try to search on forums a solution but i cant find anything, so i ask you. In the log file i find this message after the mysql stopped working: 2015-10-29 12:04:02 148c InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_malloc and with the InnoDB's internal

Update PHPunit Xampp

为君一笑 提交于 2020-08-21 05:36:47
问题 This morning, I realized that the version of PHPUnit supplied with Xampp has been deprecated for quite a while... . The version 3.7.21. installed in Xampp, but the actual version (at the time of this writing) is 6.0.13. I tried some solution proposed on google (all old 5 years + solution), including https://wehuberconsultingllc.com/wordpress/2007/08/18/updating-phpunit-on-xampp/ How to configure PhpUnit in Xampp? http://www.righthandedmonkey.com/2012/09/setting-up-phpunit-with-xampp.html http

彻底卸载mysql

允我心安 提交于 2020-08-20 05:11:00
  最近本地安装了XAMPP,xampp是一个集成软件,里面包含了mysql,apache服务器等等,但我通过xampp创建mysql连接和启动的时候,一直提示端口占用, 一直没找到解决的办法,只能卸载了,卸载了xampp之后,手动安装mysql安装包,发现之前卸载的不干净,也没找到卸载的入口,所以记录下如何卸载干净mysql的操作。   1.Windows管理工具-》服务 或 win+r 输入 services.msc ,打开服务列表,找到mysql项,并禁用关闭      2.打开注册表,删除注册信息 用快捷键win+R,输入“regedit”,回车,打开注册表编辑器。 找到下面两个路径 主要删除路径 路径1:\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\eventlog\Application\MySQL 路径2:\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\services\eventlog\Application\MySQL 删除整个MySQL文件夹即可 3.重新安装即可 来源: oschina 链接: https://my.oschina.net/u/4393870/blog/4289771

Windows server支持WordPress自动发邮件

心不动则不痛 提交于 2020-08-13 17:04:42
当我们的WordPress网站使用了 数据库备份插件后,很多时候支持自动把备份的数据库发送到我们的指定邮箱,当前提是我们的服务器要支持 mail()函数在windows下调用,下面网络的方法完全可以解决,小编已经测试。 1、从官网 http://glob.com.au/sendmail/ 下载 sendmail.zip 2、解压到C:下,例如C:\php\sendmail,最好短路径,长路径名有可能产生问题。 3、修改php.ini如下 sendmail_path = "C:\wamp\sendmail\sendmail.exe -t" 4、根据你自己的配置环境修改 sendmail.ini 。 第一次最好启用 debug.log_file,error_logfile ,以查看sendmail是否生效。 5、重启apache 用sendmail结合其它的smtp服务器,如smtp.163.com来实现发邮件。现在大部分邮箱都要求smtp验证,所以要在sendmail.ini中加入用户名和密码。 php.ini配置 (以用163邮箱为例) [mail function] ; For Win32 only. SMTP = smtp.163.com smtp_port = 25 ; For Win32 only. sendmail_from = yourusername@163.com