Lifetype Installation Summary
Lifetype is a powerful multi-user, multi-blog management system. Its predecessor is plog. For more information about rename, see here.
The development of lifetype is quite active. The latest version 1.0.5 was released in June 4 this year, including a series of security updates. The Wiki on the lifetype Homepage contains detailed documents. The installation process is detailed step by step. The installation was quite smooth.
Summarize the main steps
- System Requirements: Apache + MySQL + PHP. A typical lamp server can meet the requirements. In Apache httpd. conf, you need to set the directory permission of the page to be reloaded, that is
<Directory/var/WWW>
AllowOverride all
</Directory>
- Decompress the installation file to the page Directory, such as/var/www/blog, and set the permission. You can change the attribute of all files to Apache: Apache, then point the VM to this directory, that is, apache2/vhost. d/Add
<Virtualhost>
Servername your. Site. Name
DocumentRoot/var/www/blog
</Virtualhost>
- Access http://your.site.name/wizard.php and use the Wizard to create the relevant data warehouse and Administrator Account
- The Wizard will prompt you to enter the database user, password, database name, data table prefix, and so on. This requires you to create a database and grant the user the relevant permissions in advance. You can use a command line or a Web interface management tool such as phpMyAdmin.
Mysqladmin-uuser-ppassword create lifetypedb
Mysql-uuser-ppassword lifetypedb grant select, insert, update, delete, create, alter on lifetypedb. * To lifetypeger @ localhost identified by 'Password ';
- Click Next to create the Administrator account and password, and the first blog
- After installation, you can use it. The default Interface and template are pretty good.
- The installation process is relatively simple. Pay attention to the following points. (1) preferably PHP 5 or MySQL 4 or above. (2) After expansion, set the config/config. properties. php permission to write. After the installation is complete, change the permission back and delete wizard. php. (3) Check the session issue of PHP. ini. In addition to the save_path issue, pay attention that handler is files.
Installation http://wiki.lifetype.net/index.php/Installation#Database