Plone란?

이미지
자료출처 : 건축도시연구정보센터 컨텐트관리시스템(Content Management System :CMS)이란? 일반적으로 컨텐트관리시스템(Content Management System, 이하 CMS)이란 기업 내·외부에 존재하는 다양한 컨텐츠를 생성, 출판, 배포, 보관 등의 컨텐츠 라이프사이클에 기반하여 총괄적인 관리를 하는 시스템을 말합니다. 즉 웹사이트를 구성하는 컨텐트를 생산·관리·배포하는 일련의 과정들을 자동화하여 효율성과 체계성을 제고하며 안정된 운용의 바탕을 갖추는 것을 의미합니다. 이제까지 컨텐트는 웹개발자에 의해 수동적으로 관리되었고, 여러 컨텐트 기고가들이 참여하는 사이트의 경우, 생성 혹은 수정된 컨텐트가 웹사이트에 배치되기 위해서는 반드시 웹마스터의 코딩작업을 거쳐야 했습니다. 이로 인해 사이트가 적정시기에 맞게 갱신하거나 확장하는 데에 큰 저해요인으로 자리잡고 있으며, 수동작업으로 코딩된 컨텐트는 추후에 다시 사용하기 힘들어 활발한 유통에도 걸림돌이 됩니다. CMS가 개발된 것은 바로 이러한 이유 때문입니다. 웹사이트를 구성하고 있는 컨텐트를 생산·관리, 배포하는 일련의 과정을 자동화해 효율성과 체계를 높이고 안정성을 확보하는 기반을 마련하는 것이 CMS의 목적입니다. 플론(Plone)이란? 플론은 Zope 어플리케이션 서버-파이선(Python)언어로 만들어진 웹서버와 데이터베이스를 포함한 서버-로 만들어진 CMS입니다. CMS가 가진 유용성과 더불어 설치가 쉽고, 웹사이트 구조를 만들어 주고, 컨텐트를 쉽게 관리할 수 있기 때문에 처음 접하는 사람이라도 바로 사용할 수 있습니다. 오픈소스 프로젝트로 무료로 사용할 수 있으며, 많은 개발자들이 성능개선을 위하여 업그레이드 및 확장 프로그램을 개발하고 있습니다.  플론 홈페이지 :  http://plone.org 다양한 환경에 설치되며, 윈도우즈의 경우 설치파일 하...

http://www.supriyadisw.net/2006/12/wordpress-installation-on-ubuntu-with-lamp

이미지
This tutorial is how to install WordPress on Ubuntu Linux   Desktop using LAMP. Why ? One reason is that you can do a lot of developing (playing around) much quicker as there is no need to use ftp. If You like me, play around with WordPress as a developer (perhaps you create your own theme or plugin), you should install WordPress locally in your Ubuntu Linux Desktop. You do not need to convert your Ubuntu Desktop into Ubuntu Server. You only need install addition packages that you need to run WordPress on your Ubuntu Linux desktop. Get ready?! Let?s start to install WorPress on Ubuntu Linux desktop. Install LAMP You can view my previous post about LAMP Installation On Ubuntu, if you have not already done so. Download WordPress You can download WordPress from their official website into your Ubuntu desktop. Extract your WordPress archieve into your server directory sudo tar zxvf wordpress-x.x.x.tar.gz --directory=/var/www/ Prepare MySQL Database for WordPress Create a...

http://www.clearpointsystems.com/ewpi.php

이미지
Example WordPress Installation You can download custom core files here . Introduction: WordPress is a bunch of PHP scripts and HTML code that work together to create a web log. Whatever the merits of other popular web log packages (e.g. MovableType, Drupal) WordPress is the easiest to install, configure and customize. If you have comments or corrections for this tutorial, please send us feedback . Assumptions: using the latest WordPress code using a Linux/Apache web server PHP 4.2 or higher is installed on the web server using MySql 4.0 or higher for a database In Summary: Download latest WordPress code Create an empty MySql database on the web server Create the directory structure on the web server Unzip/untar files and upload to install directory Edit configuration scrip t Point your browser to the setup script Follow prompts in browser window In Detail: Download latest WordPress code You can download wordpress-2.1.tar.gz (for Linux) or wordpress-2.1.zip (for Windows) from...

Example VirtualHost Configurations - http://wiki.apache.org/httpd/ExampleVhosts?highlight=%28vhost%29

The excerpts below show some example name-based VirtualHost configurations that can be used in Apache. For each TCP port that you want to use to serve content, you will need to define these before configuring your VirtualHosts. You will need both a Listen directive and a NameVirtualHost directive. # This tells Apache to listen on port 80 Listen 80 # This tells Apache to listen on port 443 Listen 443 # This tells Apache that you will be using name-based vhost s on port 80 NameVirtualHost *:80 Basic setup, using port 80, with custom log files <VirtualHost *:80> ServerName www.foo.com # if you want this vhost to listen to extra names, uncomment the next line # ServerAlias foo.com www.bar.com bar.com DocumentRoot /var/www/www.foo.com/htdocs CustomLog /var/log/apache/www.foo.com-access.log combined ErrorLog /var/log/apache/www.foo.com-error.log </VirtualHost> Basic setup, on port 80, with multiple virtual hosts <Virtu...

WMP에서 동영상 화면이 하얗게/녹색으로 나올 때 ▼

이미지
1.아래 그림의 번호 순서대로 따라 하세요. 시작 → 실행 → wmplayer 입력 후 엔터 → 윈도우 미디어플레이어 실행 2.제어판에서 시작 → 제어판 → 디스플레이 → 설정 → 고급 → 문제해결 에서 하드웨어 가속 부분 조절 Blogged with Flock

WordPress Installation on Ubuntu with LAMP

이미지
This tutorial is how to install WordPress on Ubuntu Linux   Desktop using LAMP. Why ? One reason is that you can do a lot of developing (playing around) much quicker as there is no need to use ftp. If You like me, play around with WordPress as a developer (perhaps you create your own theme or plugin), you should install WordPress locally in your Ubuntu Linux Desktop. You do not need to convert your Ubuntu Desktop into Ubuntu Server. You only need install addition packages that you need to run WordPress on your Ubuntu Linux desktop. Get ready?! Let?s start to install WorPress on Ubuntu Linux desktop. Install LAMP You can view my previous post about LAMP Installation On Ubuntu, if you have not already done so. Download WordPress You can download WordPress from their official website into your Ubuntu desktop. Extract your WordPress archieve into your server directory sudo tar zxvf wordpress-x.x.x.tar.gz --directory=/var/www/ Prepare MySQL Database for WordPress Create a...

Subversion, Trac, SSL 함께 설치하기

개요 - 이 문서는 우분투 리눅스 6.06 버전을 기준으로 작성되었다. ( http://www.ubuntu.com ) - Subversion은 CVS를 대체하기 위해서 새로 나온 버전관리시스템이다. - Trac은 위키, 로드맵, 버그추적기능을 통합적으로 제공하며, Subversion와 강력하게 연계되어 있다. - 이 문서 내용대로 따라하면 Subversion, Trac이 모두 다수의 프로젝트를 지원하고, 사용자 인증을 거치며, SSL암호화를 통해 모든 전송내용이 암호화되므로 대규모 운용에도 손색이 없다. 테스트 환경 - Ubuntu 6.06 LTS 보장은 못 하지만 이 문서의 내용은 다른 버전의 우분투 혹은 데비안에서도 문제 없이 작동할 것으로 예상된다. 참고한 자료들. Subversion 관련 https://help.ubuntu.com/6.06/ubuntu/serverguide/C/version-control-system... http://svnbook.red-bean.com/ Trac 관련 http://trac.edgewall.org/wiki/TracUbuntuMultipleProjects http://trac.edgewall.org/wiki/TracModPython http://trac.edgewall.org/wiki/TracOnUbuntu Apache SSL/TLS 암호화 http://httpd.apache.org/docs/2.0/ssl/ssl_intro.html http://mario.espaciolinux.com/apache2_ssl.html http://www.vanemery.com/Linux/Apache/apache-SSL.html http://httpd.apache.org/docs/2.0/ssl/ssl_howto.html http://httpd.apache.org/docs/2.0/mod/mod_ssl.html 이 글을 거의 다 작성하고 나서야 발견한 좋은 글 (SSL암호화를 제외한 모든 내용이 ...