error message : Fatal exception of type MWException

해결 방법 : 주석처리

//require_once "$IP\\extensions\\LocalisationUpdate\\LocalisationUpdate.php";

(LocalSettings.php)

참고:http://www.mediawiki.org/wiki/Thread:Extension_talk:ParserFunctions/Fatal_exception_of_type_MWException_Error


워드프레스 소개

wordpress 2014. 3. 25. 15:45

wordpress


워드프레스가 무엇보다 주목을 받고 있는 이유는 검색 엔진은 물론이고 SNS와의 연동, 

구글에서 지원하는 API와 찰떡궁합이라는 점이에요. 일반 홈페이지가 자신들이 

말하고자 하는 것만 보여주는 일방적이고 재미없었던 곳이라면 워드프레스 기반의 

소셜 웹 홈페이지는 페이스북, 트위터 등 다양한 매체와 연결하여 홈페이지 내에서 

커뮤니케이션을 형성하는 것이 가능하며, 간단한 플로그인 설치로 구글에서 제공하는 

그래프, 지도 등의 다양한 볼거리를 제공합니다.


http://www.uxkorea.com/archives/1358


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


구축 예산에 따른 워드프레스 사이트 구축 방법


http://www.iropke.com/blog/archives/2811


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

http://www.wordpress.org/about/features/


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


워드프레스로 구축하기에 적합한 사이트


블로그

잡지, 언론 매체 등

공식 사이트

다국어 사이트

브랜드 사이트

사이트와 블로그를 함께 구축해야 하는 경우

필요한 주요 기능이 CMS의 주요 기능과 대부분 부합하는 경우 (컨텐츠 등록 및 배포 등)

해당 사이트에만 있는 특별한 기능이 없거나 적은 경우


http://www.iropke.com/blog/archives/1700

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


창비 웹사이트 개발을 마치며…

http://www.blogcodi.com/?p=17751&cat=5


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


최고의 워드프레스 개발자가 되는 방법

http://www.webactually.co.kr/archives/10805

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


워드프레스 웹사이트 구축 A to Z

http://clubis.tistory.com/373


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

말씀하신 뉴스웹진형태의 웹사이트 개발은 쉽게 가능합니다. 

잘 아시겠지만, 이미 많은 웹진레이아웃을 제공하는 THEME가 있습니다. 

하지만, 워드프레스 커뮤니티기능이 우리나라 문화와 맞지 않아 회원관리와 관련된 커스터마이징이 필요합니다. 


아마도 버디프레스를 이용하면, 말씀하신 웹진형태의 커뮤니티 사이트 개발 구축이 가능할 것으로 봅니다.


http://www.4social.co.kr/?p=1368

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


한국 워드프레스 사용자 모임

http://kopress.kr/



mysql  --local-infile=1 -P3306 -hlocalhost -uUSER -pPASS DBNAME




java, log4sql

java 2014. 3. 24. 13:37

http://log4sql.sourceforge.net/


mantis

카테고리 없음 2014. 3. 21. 16:50

* 기본 로그인 : administrator / root

* 이메일 인증 없이 사용자 추가:

mysql> update bugtracker.mantis_user_table set password=md5('password') where username='username';


java, log4sql mysql

java 2014. 3. 20. 18:07
com.mysql.jdbc.Driver - or - org.gjt.mm.mysql.Driver
=>  core.log.jdbc.driver.MysqlDriver



java, eclipse 에 jar 추가

java 2014. 3. 20. 16:24

http://blog.naver.com/PostView.nhn?blogId=echris7&logNo=140022430449


find ./ -name '*.txt'


출처:http://ysoftman.blogspot.kr/2010/11/linux-find-paths-must-precede-expression.html


이름에 *TBL* 인 파일 모두 지우기

D:\tmp>for /r %i in (*TBL*) do del %i



#!/usr/bin/perl

#use Mysql;

use DBI;

use DBD::mysql;


# CONFIG VARIABLES

$platform = "mysql";

$database = "MYDATABASE";

$host = "localhost";

$port = "3306";

$user = "MYUSER";

$pw =   "MYPASSWORD";


# DATA SOURCE NAME

$dsn = "dbi:mysql:$database:$host:$port";


# PERL DBI CONNECT

$connect = DBI->connect($dsn, $user, $pw);


fetch_db("MYTABLE");


sub fetch_db() {

my($table) = @_;

my $file = $table . ".txt";


open($FH, ">$file") or die("Can't open : $file $!\n");


print "테이블  $table\n";

print $FH "테이블  $table\n";


get_count($table);



print $FH "\n";

print "\n";


print $FH "---END--\n";

close $FH;



}


sub get_count() {


my($table) = @_;

# PREPARE THE QUERY

$query = "select TYPE, CAST(STORE_ID AS UNSIGNED INTEGER), count(*) from $table group by TYPE, CAST(STORE_ID AS UNSIGNED INTEGER)";

$query_handle = $connect->prepare($query);

# EXECUTE THE QUERY

$query_handle->execute();

# BIND TABLE COLUMNS TO VARIABLES

$query_handle->bind_columns(undef, \$id, \$type, \$cnt);

print "* 샵 별 건수\n";

print $FH  "* 샵 별 건수\n";

# LOOP THROUGH RESULTS

print "TYPE\tSHOP_ID\tCNT\n";

print $FH "TYPE\tSHOP_ID\tCNT\n";

print "-------\t----\t---\n";

print $FH "-------\t----\t---\n";

while($query_handle->fetch()) {

  print "$id\t$type\t$cnt\n";

  print $FH "$id\t$type\t$cnt\n";