Thursday, April 30, 2009

PHP faq

1. php代码如何换行?
直接回车即可
2.数据库查询超时的解决?
超时的原因是不是执行sql语句,而是查询后遍历数据集的时间太长。
可以把数据集缓存本地再访问http://blog.csdn.net/arcow/archive/2006/07/13/915378.aspx

Wednesday, April 15, 2009

EXT js datastore 更改数据

patientStore.getAt(code).set('recommend','');
patientStore.commitChanges();
//PatientStore.loadData(patients);
patientView.refresh();

Tuesday, March 31, 2009

Piwik Os and browser

Piwik处理浏览器和操作系统的代码在piwik/libs/UserAgentParser/UserAgentParser.php

Thursday, March 26, 2009

piwik相关

1. 调整visit默认时间为1秒,如此则可以记录每次页面访问
2. 在visitlog表中添加user_id字段和service_id字段

Mobile banking ideas

1. Acess Anywhere so pay anywhere
2. Location based service
3. Mobile marketing, which includes things such as loyalty programs, ads, and electronic coupons. MasterCard plans to offer rewards and special offers via text messages that customers can redeem when they visit stores, as an incentive for using its mobile services. Similarly, Visa will provide customers with electronic coupons on their cell phones as part of its payment-related services. Other companies have similar mobile marketing efforts under way.
4. SMS receipts, text alert
5. Mobile top up: 直接支付到手机号

see this http://www.ocbc.com.sg/personal-banking/banking/Bnk_Ebk_MobileBnk_mbrportal.shtm
and this http://www.lloydstsb.com/media/lloydstsb2004/flash_files/lloydstsb_mobile_banking_r1.swf

5. 曲线管理。 消费分析

Wednesday, March 25, 2009

Piwik安装后不显示数据

问题描述:在下列情况下,dashboard没有数据显示
1 选择日期为当天
2 数据库中,表格piwik_log_visit有访问数据

解决方法

设置php.ini中的时区为

date.timezone = Asia/Shanghai

若无修改php.ini的权限
修改piwik源码中的 index.php , piwik.php:


date_default_timezone_set("Asia/Shanghai");

php支持的时区列表