설치형 lifestreaming tool 이 있더군요. Sweetcron 이라는 툴입니다. 먼저 홈페이지에 접속해서 E-mail 입력창에 자신의 E-mail을 입력하면 초대 메일이 옵니다. 날아온 E-mail 전문을 올립니다. (E-mail로 초대하는 방식을 취하고 있긴 하지만, 구글 코드로 공개된 곳이더군요.)
Thanks!
Your subscription to the Sweetcron list has been confirmed.
So what’s this Sweetcron thing all about then? Sweetcron is open source lifestreaming software that you host on your own server. It’s a little like FriendFeed or Tumblr, but it’s something that you can put on your own site, in place of – or in addition to – your blog.
Sweetcron is available right now for immediate download and tinkering-with!
It’s an open source project so you can grab the latest download from here:
http://code.google.com/p/sweetcron/downloads/list
Ongoing documentation is here, but it should be enough to get you started:
http://code.google.com/p/sweetcron/w/list
And finally…if you’re having trouble with installing Sweetcron, lets use this discussion group:
http://groups.google.com/group/sweetcron/topics
I’ll keep an eye on the group and try to help as much as I can (but I do have to sleep sometimes).
Thanks and have fun!
Yongfook
http://www.yongfook.com
http://www.sweetcron.com
For your records, here is a copy of the information you submitted to us…
Email Address:
virtuemace@gmail.com
If at any time you wish to stop receiving our emails, you can unsubscribe here
You may also contact us at:
support@egg-co.com
다운로드 받고 계정에 올리는 것 까지는 기본이겠죠? sweetcron을 설치하기 위해서는 3개의 파일을 건드려 줘야 합니다. .htaccess 파일과 config.php database.php 이렇게 3개의 파일입니다.
만약 가장 메인에 설치시에는 .htaccess는 건들 필요 없을 것 같습니다. 만약에 서브 디렉토리에 설치하신다면.
Options +FollowSymLinks
RewriteEngine On
RewriteBase / ==> RewriteBase /서브 디렉토리/ 이렇게 수정.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
system/application/config/ 아래에 있는 config-sample.php 와 database-sample.php 를 수정해주면 됩니다. 파일 이름을 config.php와 database.php로 수정한 뒤 파일 내용을 수정해주면 되는데요.
database.php 파일을 열면 긴 주석 뒤에 아래와 같은 내용이 나옵니다.
$active_group = "default";
$active_record = TRUE;
$db['default']['hostname'] = "localhost";
$db['default']['username'] = "유저네임 입력";
$db['default']['password'] = "mysql 비번 입력";
$db['default']['database'] = "데이타베이스 입력";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "mysql 테이블에 문두 문자 sweetcron이니까 sc_ 정도로 입력하시면 되겠네요.";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
자 그럼 config.php 수정해줍시다.
$config['base_url'] = "http://www.your-site.com/";
요렇게 되어 있는걸
$config['base_url'] = "자신의 홈페이지 주소/서브디렉토리/";
이렇게만 바꾸면 됩니다.
제가 설치한 것은 http://deokkyu.net/lifestream 입니다. 기본 sandbox 테마에다가, 구조를 살짝 바꾼 뒤, 제가 기존에 쓰던 블로그 CSS를 호출했습니다.