类别:
win_lin_mac
作者:
sunshine / 2016-9-30 18:44 Friday
Part1:写在最前
在MysQL5.6版本中,可以把undo log 回滚日志分离到一个单独的表空间里;其缺点是不能回收空间大小,until MysQL5.7,but MariadDB10.1暂不支持。
本文介绍并演示MysQL5.7是如何在线收缩undo log的。
undo log日志是保存在共享表空间ibdat...
阅读全文>>
类别:
linux
作者:
sunshine / 2016-9-16 08:05 Friday
所谓多版本多版本PHP就是php5.4和5.5以及其他版本在同一台服务器。
假如php5.5是主版本已经安装在/usr/local/php目录下,那么再安装其他版本的php再指定不同安装目录即可。
安装第二个版本的PHP
# wget http://cn2.php.net/get/php-5.4.10.tar.gz/from/this/mirror
【下载完后修改名称,*.tar.gz】
# tar zxvf php-5.4.10.tar.gz
# cd php-5.4.10
#./configure --prefix=/usr/local/php5.4.10 \
--with-curl \
--with-freetype-dir \
--with-gd ...
阅读全文>>
类别:
win_lin_mac
作者:
sunshine / 2016-3-21 02:45 Monday
如何更改推荐品牌数量 ?
如图:添加一个产品 右边的就会随机变法 而且不断增加的问题
打开page_header.lbi
找到
<!--{foreach from=get_brands1($GLOBALS['smarty']->_var['cat']['id']) item=bchilder name=no2}-->
<li><a href="{$bchilder.url}">{$brand.logo}<img src="data/brandlogo/{$smarty.foreach.no.iteration}_{$smarty.foreach.no2...
阅读全文>>
类别:
杂七杂八
作者:
sunshine / 2016-3-5 07:09 Saturday
在firefox地址栏输入:about:support
点击如图是搜索找到。在Firefox的个人设置文件夹下,找到"search.json"这个文件;
阅读全文>>
类别:
linux
作者:
sunshine / 2016-2-1 12:20 Monday
日志里面有如下报错:
[error]
在 nginx.conf
的http段,加入下面的配置:
proxy_buffer_siz...
阅读全文>>
类别:
代码
作者:
sunshine / 2016-2-1 12:19 Monday
在安装Ecshop的时候,遇到两个问题:
1.Strict Standards: Non-static method cls_image::gd_version() should not be called statically in D:\X\www\ecshop\install\includes\lib_installer.php on line 31
解决:找到install/includes/lib_installer.php中的第31行 return cls_image::gd_version();然后在找到include/cls_image.php中的678行,发现gd_ve...
阅读全文>>