WordPress Setup ~~~~~~~~~~~~~~~ Umgebung: Windows mit XAMPP 1. Vorbereitung: * Installationsanleitung: http://codex.wordpress.org/Installing_WordPress * Download http://wordpress.org/latest.zip * Entpacken nach c:\xampp\htdocs\wordpress 2. Datenbank vorbereiten: * SQL Client, Alternativen: + Web-Frontend: http://localhost/phpmyadmin/ + Command Line Client: c:\xampp\mysql\bin\mysql -u root * create database wordpress; * create user wordpress; * set password for "wordpress" = password("pressword"); * grant all privileges on wordpress.* to wordpress@localhost; 3. WordPress Installation: * cd c:\xampp\htdocs\wordpress * copy wp-config-sample.php wp-config.php * notepad wp-config.php, anpassen: DB_NAME = 'wordpress' DB_USER = 'wordpress' DB_PASSWORD = 'pressword' * http://localhost/wordpress/wp-admin/install.php * Login & Passwort notieren! 4. WP Useraccount aufsetzen und testen: * http://localhost/wordpress/wp-admin/ * Neues Passwort setzen! * Neuen Account mit Rolle="Author" anlegen * Als admin ausloggen und unter dem neuen Account anmelden * "Write a post" * http://localhost/wordpress/ 5. WordPress auf Deutsch: * Siehe http://codex.wordpress.org/WordPress_in_Your_Language und http://doku.wordpress-deutschland.org/Installation_der_deutschen_Sprachdatei * Download de_DE.mo.zip: http://counter.wordpress-deutschland.org/dlcount.php?id=static&url=/sprachdatei/de_DE.mo.zip * Entpacken nach C:\xampp\htdocs\wordpress\wp-includes\languages * notepad c:\xampp\htdocs\wordpress\wp-config.php, anpassen: WPLANG = 'de_DE' * http://localhost/wordpress/ * Ggf. abmelden und neu anmelden -- $Id: README.wordpress,v 1.5 2007/07/09 12:01:08 feyrer Exp $