最近在研究Civicrm

之前搞过一阵子,但是没有弄明白。

现在记录一些文档,这几天要重新啃啃:

Joomla Installation Guide for CiviCRM 4.1

CiviCRM user and administrator guide

http://joomlacode.org/gf/project/jcivicrm/frs/

CiviCRM Membership Authentication and ACL

Joomla CiviCRM Membership Authentication and ACL Plugin

CiviCRM Modules and Plugins

CiviCRM Events Module

CiviCRM Community Forums

https://www.transifex.net/projects/p/civicrm/language/zh_CN/

最近在捣鼓google map的开发

Code Playground ,好像里面有很多代码实例:

http://code.google.com/apis/ajax/playground/?exp=maps#map_simple

Google Maps JavaScript API V3

https://developers.google.com/maps/documentation/javascript/?hl=zh-cn

Google Maps JavaScript API V3 参考

https://developers.google.com/maps/documentation/javascript/reference?hl=zh-cn#Map

To create my Google API key:

  1. Visit the APIs Console at https://code.google.com/apis/console and log in with your Google Account.
  2. Click the Services link from the left-hand menu.
  3. Activate the Google Maps API v3 service.
  4. Click the API Access link from the left-hand menu. Your API key is available from the API Access page, in the Simple API Access section. Maps API applications use theKey for browser apps
Getting Started
https://developers.google.com/maps/documentation/javascript/tutorial#api_key

想读的书

《流动的世界――奔向移动互联网时代的生活》
《3G营销》
《互联网:碎片化生存》
《移动互联网改变商业未来》
《点亮社群:互联网营销的本质》
《社会化Web设计》

域名301跳转到另一个域名

<?php
$url="http://原域名".$_SERVER["REQUEST_URI"];
header("HTTP/1.1 301 Moved Permanently");
header ("Location:$url");
?>

今天实现了原域名:planboat.com跳转到新域名:iplantoo.com/blog

用php代码实现方式如上所示

wordpress必装插件

最近把该装的wordpress插件都装上了,

就像全身穿上了盔甲,充满战斗力,哈哈,清点一下这次的武器清单:

Akismet
Automatic SEO Links
Autoptimize
BackupWordpress
Backwpup
baidu sitemap generator
Broken link check
Google XML sitemaps
Link to post
Seo smart links
simple link
wp-log-robots
wp keyword link

Ubuntu下的计划任务 — cron的基本知识

cron是一个Linux下的后台进程,用来定期的执行一些任务。因为我用的是Ubuntu,所以这篇文章中的所有命令也只能保证在Ubuntu下有效,但其他系统应该也差不多。

 

想要让cron执行你指定的任务,首先就要编辑crontab文件。crontab是一个文本文件,用来存放你要运行的命令。你可以以下命令

阅读全文…

第 1 页,共 15 页12345...10...最旧 »