dd

piaoling  2015-02-06 11:00:24

clickCount=1&subBtnClick=0&keyPress=66&menuClick=0&mouseMove=150&checkcode=0&subBtnPosx=434&subBtnPosy=175&subBtnDelay=72&keycode=0,0,0,0,8,8,8,8,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,8,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,9,0,0,0,0&winWidth=1280&winHeight=264&userAgent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:35.0) Gecko/20100101 Firefox/35.0 ......

类别 :  默认(738)  |  浏览(4098)  |  评论(0)

REG

piaoling  2015-02-05 17:59:13

//console.log(weiboRegController); var inputs = document.getElementsByTagName('input'); //console.log(inputs); var data = '{'; var temp = ''; var tempv =''; for(var i=0;i   temp = inputs[i].name;   tempv = inputs[i].value;   if(i>0){     data += ',"'+temp+'":'+'"'+tempv+'"';   }else{     data += '"'+temp+'":'+'"'+tempv+'"';   }    // eval('('+'data.'+temp+' = tempv'+')'); } data += '}'; conso......

类别 :  默认(738)  |  浏览(4299)  |  评论(0)

Magento1.7多语言或多店铺产品URL跳转问题

piaoling  2015-01-19 15:55:39

http://www.chinaz.com/web/2013/0116/289780.shtml 在Magento1.7或 以前的版本中,当你启用多语言或多店铺,并在“系统->配置->Web”里设置Url Options “Add Store Code to Urls”为YES 。这个时候,很多SKU多语言或多店铺的产品URL也会跟关不同的语言或店铺发生变化,直接切换语言或店铺时就会出现404页面。 解决方法: 1、修改文件: /app/code/core/Mage/Core/Model/Url/Rewrite.php 第252行: // $targetUrl = $request->getBaseUrl(). ‘/’ . $this->getRequestPath(); 注释......

类别 :  magento(258)  |  浏览(4676)  |  评论(0)

让盒子里的图片垂直居中显示

piaoling  2015-01-16 16:48:16

在表格布局还盛行的年代,根本就不存在这种垂直居中的问题,因为表格内部默认是垂直居中的。但是自从非表格布局开始普及了一个,垂直居中的问题就层出 不穷的,有时候人们为了一个小小的垂直居中,还是用了表格去实现它,这太浪费!构造表格需要花费大量的标签,完全没必要。其实元素本身的display就 可以设置成table,因此任何元素都可以实现表格的垂直居中效果。不过这个方法有一个弊端,如果元素使用了浮动,这个方法就会失效,所以我们必须找到更 直接的方法来解决这个问题......

类别 :  默认(738)  |  浏览(4330)  |  评论(0)

支付失败的提示是:“目前不支持中国账户间的付款”

piaoling  2015-01-16 16:29:52

 解决方案: 1.您可以登录paypal账户,看看客户绑定的银行卡是不是完成了确认 。 2.如果您的银行卡没有完成确认,您可以给银行打电话(客服团队很乐于帮助您打电话),向银行要用来确认银行账号的4位代码,然后把4位代码填到中国paypal相应的位置上,完成银行卡的确认。完成银行卡的确认后,您再次尝试支付。 3.如果支付还是失败,您可以给中国的paypal打电话(客服团队很乐于帮助您打电话),向中国的paypal说明情况。 注意 :不要向paypal说支付失败的原因是“目前不支持中国账户间的付款”而是说......

类别 :  默认(738)  |  浏览(4975)  |  评论(0)

etc/resolv.conf

piaoling  2014-11-03 15:11:22

etc/resolv.conf它的格式很简单,每行以一个关键字开头,后接配置参数。resolv.conf的关键字主要有四个,分别是: nameserver   #定义DNS服务器的IP地址 domain           #定义本地域名,这个是对域名没有加.的加上域名,即在进行不完全域名解析时,默认的附加域名后缀。 search            #定义域名的搜索列表,同上,一般不能跟domain并存 sortlist            ......

类别 :  默认(738)  |  浏览(4063)  |  评论(0)

How To Install and Configure DKIM with Postfix on Debian Wheezy

piaoling  2014-10-27 15:24:23

The frustration of getting falsely flagged as a spammer is not strange to most of the mail server admins. By excluding the possibility of a compromised server, a false flag is usually caused by one of the following: the server is an open mail relay the sender's or server's IP address is blacklisted the server does not have a Fully Qualified Domain Name (FQDN) and a PTR record the Sender Policy Framework (SPF) DNS record is missing or it is misconfigured the DomainKeys Identified Mail (DKIM) implementation is missing or it's not properly set up ......

类别 :  默认(738)  |  浏览(4342)  |  评论(0)

php command use root

piaoling  2014-10-22 16:59:35

function mycommand($command,$pwd=''){       $descriptorspec = array(             0 => array("pipe", "r"),  // 标准输入,子进程从此管道中读取数据             1 => array("pipe", "w"),  // 标准输出,子进程向此管道中写入数据             2 => array("file", "/tmp/error-output.txt", "a") // 标准错误,写入到一个文件     );     $currentCommand = 'su ......

类别 :  默认(738)  |  浏览(4323)  |  评论(0)

ubuntu 重启网络

piaoling  2014-10-20 18:33:30

重启网络 /etc/init.d/networking restart 清除DNS缓存 /etc/init.d/dns-clean start ......

类别 :  默认(738)  |  浏览(3863)  |  评论(0)

spf 验证

piaoling  2014-10-17 11:43:52

http://www.kitterman.com/spf/validate.html http://mxtoolbox.com/ 可以到以下地址来测试DKIM和SPF服务是否正常: http://www.brandonchecketts.com/emailtest.php http://www.openspf.org/Why?show-form=1 ......

类别 :  默认(738)  |  浏览(4052)  |  评论(0)
  • Page:7/144  1438 Blogs
    <<
    >>
    20088
    周日 周一 周二 周三 周四 周五 周六

    文章分类