- 博客(286)
- 资源 (9)
- 收藏
- 关注
原创 Mac XAMPP 安装 intl PHP 插件(安装Magento2缺少intl 插件)
Firstly, checkwhich phppath is set. it should be/Applications/XAMPP/xamppfiles/bin/php. If not you can change it byPATH=”/Applications/XAMPP/xamppfiles/bin:${PATH}”.More detail here.Before you begin make sure you have installed Xcode. Also, install ...
2020-08-09 15:38:04 423
转载 Mac Catalina WMWare Fusion 虚拟机黑屏解决方法
Always has something to do when you upgrade your MACTurn Off the RootlessReboot your MAC and hold CMD+R to enter the recovery mode. Open the terminal. Entercsrutil disableReboot your MAC Again...
2020-05-06 22:51:38 524
转载 jira插件破解
https://blog.csdn.net/alittleyatou/article/details/815067041、安装java环境注意:jira需要oracle的java,默认的openjdk是不行的http://www.oracle.com/technetwork/java/javase/downloads/index.html,下载jdk-8u131-linux-x64...
2019-07-10 18:02:05 10365 4
转载 git使用随笔:如何忽略已提交到仓库的文件或者文件夹
一、前言我们以Android项目为例子,在新建项目的时候我们提交项目到仓库之前,会有一个.gitignore文件用于过滤文件或者文件夹,本人强烈建议在第一次新建的时候把该考虑到的都考虑进去,以免后期团队协作开发的时候引起不必要的麻烦,毕竟,时间就是金钱,哪怕是几分钟的事儿。不过,很多朋友可能是中途接手项目,项目中的忽略文件不合理,此时此刻,我们第一会想到去修改.gitignore文件去忽略...
2019-06-04 21:16:58 862
转载 Windows 拷贝文件到Linux
PSCP是Putty安装包所带的远程文件传输工具,使用和Linux下scp命令相似。2. 建议将PSCP.EXE放到C:\WINDOWS\system32下面,这样就可以在任何地方调用了。3. 使用PSCP.EXE ?查看命令参数与选项。4. PSCP.EXE的常用方法:1) 把本地文件file传输到Linxu服务器的/tmp/E:\p...
2018-12-05 14:29:16 3779
转载 CentOS 7.0关闭默认防火墙启用iptables防火墙
操作系统环境:CentOS Linux release 7.0.1406(Core) 64位CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙步骤。1、关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firew...
2018-12-05 14:26:27 164
转载 centos7:安装部署jira7.11.0
注意:如果是虚拟机安装测试的话,运行内存多给一点。1、test-envhost-ip:20.20.20.20host-name:centos7-sshsoft:2、安装jdk$ sudo rpm -ivh jdk-8u181-linux-x64.rpm$ sudo vim /etc/profile ---> 在最后面添加下面这几行 JAVA_HOME=/usr...
2018-12-05 14:24:03 358
原创 mysql 创建新的数据库并且设置新的用户名和密码
四步搞定:0. root 登录mysql1. create database jira default character set utf8 collate utf8_bin;2. grant all on jira.* to 'jira'@'%' identified by 'jira';3. grant all on jira.* to 'jira'@'localhost' i...
2018-11-24 09:45:19 11790
转载 解决httpd: Could not reliably determine the server's fully qualified domain name
vi /etc/httpd.conf将里面的 #ServerName 127.0.0.1:80 注释去掉即可。
2018-03-31 18:59:19 3427
转载 CentOs7 Mysql开启 远程访问
然后设置root用户的远程访问权限在mysql控制台执行:1. GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'MyPassword' WITH GRANT OPTION;2. FLUSH PRIVILEGES;
2018-03-29 15:00:04 2518
转载 Centos7下yum安装PHP,Apache,Mysql
安装php7由于yum源的php版本较低,所以需要找到高版本的rpm源yum -y install epel-releaserpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpmyum install php70w123安装常见扩展yum install php70w-commonyum install php70w...
2018-03-29 14:44:43 969
转载 CentOS 7.2 yum方式安装MySQL 5.7
CentOS 7.2 yum方式安装MySQL 5.7CentOS 7之后的版本yum的默认源中使用MariaDB替代原先MySQL,因此安装方式较为以往有一些改变:下载mysql的源wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm 安装yum库yum localinstall -y mysql57-c...
2018-03-29 13:42:59 185
转载 mysql 报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executin
解决办法1、 修改用户密码mysql> alter user 'root'@'localhost' identified by 'youpassword'; 2、刷新权限mysql> flush privileges;
2018-03-28 22:29:17 1813 1
转载 MySQL添加新用户、为用户创建数据库、为新用户分配权限
登录MySQL[plain] view plain copy mysql -u root -p 添加新用户允许本地 IP 访问 localhost, 127.0.0.1[plain] view plain copy create user 'test'@'localhost' identified by '123456'; 允许外网 IP 访问[plain] view plain copy c...
2018-03-28 17:02:11 196
转载 mac 连接mysql提示 mysqli::real_connect(): (HY000/2002): No such file or directory
mac 连接mysql提示 mysqli::real_connect(): (HY000/2002): No such file or directory1.首先登录MySQL命令行,查看unix socket所在目录。 mysql> STATUS--------------/usr/local/mysql/bin/mysql Ver 14.14 Distrib 5.7.15, for o...
2018-03-28 16:45:52 2569
原创 eclipse 安装完Maven插件之后启动时候弹出错误:'Updating indexes' has encountered a problem.
只需要:Window 》Preferences 》Maven,将:Download reponsitory index updates on startup 勾掉就可以了。
2017-04-07 16:11:52 5109
原创 eclipse 安装完Maven插件之后启动时候弹出错误:'Updating indexes' has encountered a problem.
只需要:Window 》Preferences 》Maven,将:Download reponsitory index updates on startup 勾掉就可以了。
2017-04-07 16:11:05 1433
原创 eclipse提示:Eclipse is running in a JRE, but a JDK is required
只需要在eclipse.ini文件下第一行加上:-vmC:\Program Files\Java\jdk1.8.0_91\bin\javaw.exe注意,一定是在第一行,试过在最后一行加入,不生效。
2017-04-07 16:01:08 486
原创 eclipse修改xml文件默认的打开方式为text editor
1.菜单:Window -> Preferences -> General -> Editors -> File Associations 2. 点击右边的:Add 按钮,在弹出的窗口中输入: *.xml3. 在下面的:Associated editors: 选中:Text Editor..., 然后点击右边的“Default”按钮
2016-07-14 12:38:11 10932 1
原创 如何更改eclipse的 Explorer的字体大小
win7下面,先找到类似的目录:C:\Program Files\eclipse\plugins\org.eclipse.ui.themes_1.1.0.v20150511-0913\css然后修改css文件:e4_default_win7.css在文件最后面加上:.MPart Tree{ font-size:13px;}重启你的eclipse,好了。
2016-07-14 11:45:59 1578
原创 CentOS7 配置sendmial + PHP mail函数发送邮件
直接上步骤~~~~~~~~~~~~~~`1. 关闭IPV6(默认是开启的,IPV4和IPv6的地址不一样,关闭后记得检查IP地址) sysctl -w net.ipv6.conf.all.disable_ipv6=1 sysctl -w net.ipv6.conf.default.disable_ipv6=12. 安装sendmail(也可能是已经安装好了
2016-07-06 17:00:53 7551 2
原创 CentOS Git
1.By pass https verfication:git config --global http.sslVerify false2. Clonegit clone url
2016-02-19 10:41:30 360
原创 cenos7虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器?
1.安装“samba” yum install samba2. 配置 Samba a) vi /etc/samba/smb.conf b) 找到以下几行把注释去掉 setsebool -P samba_domain_controller on setsebool -P samba_enable_home_dirs on s
2016-02-18 18:04:55 3133
原创 CentOS7 Magento 链接Redis提示:Connection to Redis failed after 2 failures
如果Redis服务器已经启动,而且Magento端也正确配置,访问magento还是显示:Connection to Redis failed after 2 failures 。按照如下步骤操作:1. sestatus查看状态2. sed -i 's/enforcing/disabled/g' /etc/selinux/config /etc/selinux/co
2016-02-15 14:49:37 2554
原创 CentOS开启mcrypt模块
yum -y install epel-releaseyum -y install php-mcryptsystemctl restart php-fpm
2016-01-20 15:03:30 713
原创 Magento 在CentoOS7下提示没有写入的权限 - 即使用了chmod -R 777
I have try to install magento CE Version 1.9.0.1.But when i am trying to install magento from browser.it show permission issue :Path "/var/www/html/magento/app/etc" must be writable.Path "/var/www/
2016-01-20 14:23:49 2735
原创 magento在Nginx下的Rewrite(伪静态规则)
magento在Nginx下的Rewrite伪静态规则困扰了不少学者,很多少就会问为什么在Nginx下的空间安装magento打开里面的网址会出来404呢,这就是重写的原因,下面就来介绍下具体修改的部分。nginx.conf 文件server 部分的内容:server {server_name _; //服务器名称,一般填写域名的,只是测试,就算了。access_log log
2016-01-19 22:36:22 3483
原创 windows下 Tomcat 7 + solr3.6.2 + Magento企业版1.14 配置说明
Magento官方文档如下:http://devdocs.magento.com/guides/m1x/other/ht_magento-solr.html#install-prereq-software1,安装solr:3.6.22. 将magento solr配置文件copy进solr文件夹:cd /etc/solr/apache-solr-3.6.2/ex
2015-12-28 13:07:00 1126
原创 Windows下Magento企业版如何配置Redis存储缓存
1,Redis在windows上面的安装和运行1)- 官方网站:http://redis.io/- 官方下载:http://redis.io/download 可以根据需要下载不同版本- windows版:https://github.com/mythz/redis-windows2)启动Redis用命令行的形式进入redis的解码包,比如:C:\xampp\redis
2015-12-25 17:05:10 787
转载 数据库中清空log日志
SET FOREIGN_KEY_CHECKS=0;TRUNCATE `log_customer`;TRUNCATE `log_visitor`;TRUNCATE `log_visitor_info`;TRUNCATE `log_visitor_online`;TRUNCATE `log_quote`;TRUNCATE `log_summary`;TRUNCATE `lo
2015-12-17 11:15:36 1560
转载 Magento调试页面空白 - 解决方法
问题:Magento页面一片空白 没显示什么东西,无法判断是否程序错误,所以要把错误显示打开使之能调试解决: 1. 在网站根目录的.htaccess文件里加上php_flag display_errors onphp_value error_reporting 2039详情看另外一篇文章:(用.htaccess设置 PHP错误显示) 2. 然后找到/errors
2015-12-07 17:22:06 1641
转载 通过RSS订阅优酷视频
想要通过rss订阅优酷视频?优酷开放的rss订阅只有笼统的分类视频,而个人视频订阅却没有开放。作为一个google reader控(点击查看《Google Reader入门教程》),我崇尚万事聚合、一切极简的思想——足不出户,知天下事。现在不常玩dota了,但是看看一些dota视频解说还是很惬意的。优酷确实可以进行站内视频订阅,但是,我觉得麻烦。我的目标是:all in one!“
2012-07-24 18:08:16 6236 1
原创 把index.php 从magento后台的url中移除掉
## enable rewrites Options +FollowSymLinks RewriteEngine on## Rewrite to subfolder magento RewriteCond %{HTTP_HOST} ^(www.)?mydomain.cxm$ RewriteCond %{REQUEST_FILENAME} !-f RewriteCo
2012-06-27 13:10:40 4420
原创 What is misconfigured when Drupal homepage works ok, but all links fail?
have recently renamed the root folder of a development Drupal site from:www.example.com/foo/to www.example.com/bar/The site stayed on the same host. During this transition, I made sure to incl
2012-06-04 10:53:54 2869
转载 pdf加书签
复制到记事本,另存为Bookmark.js文件.放到安装目录 X:\Program Files\Adobe\Reader 10.0\Reader\Javascripts文件夹下(X代表盘符,Reader 10.0这个版本随你安装的版本而不同) 重新打开PDF会在“视图(view)”下面出现4个选择项: Add Mark:添加书签 Turn Mark:转到书签 Drop One Mark:删除一个书
2012-05-28 11:02:44 707
原创 国家语言代码
php 各国语言代码一个php表现的形式,在网上找的一个表格的形式,写成php数组,以后会用到。function lang(){return array('zh-cn'=>'简体中文(中国)','zh-tw'=>'繁体中文(台湾地区)','zh-hk'=>'繁体中文(香港)','en-hk'=>'英语(香港)','en-us'=>'英语(美国)','en-g
2012-05-15 14:06:51 1180
Keith Peters的Flash ActionScript 3.0动画高级教程 书中实例
2010-01-08
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人