Difference between revisions of "Wordpress"

From PostgreSQL_wiki
Jump to: navigation, search
(multi site)
(multi site)
Line 49: Line 49:
 
Add the following to your /etc/wordpress/htaccess file, replacing other WordPress rules:
 
Add the following to your /etc/wordpress/htaccess file, replacing other WordPress rules:
 
<pre>
 
<pre>
RewriteEngine On
+
RewriteEngine On
RewriteBase /
+
RewriteBase /
RewriteRule ^index\.php$ - [L]
+
RewriteRule ^index\.php$ - [L]
   
# add a trailing slash to /wp-admin
+
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
 
   
  +
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
 
  +
RewriteCond %{REQUEST_FILENAME} -d
 
  +
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteRule ^ - [L]
 
  +
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
 
RewriteRule ^(.*\.php)$ $1 [L]
+
RewriteRule ^ - [L]
RewriteRule . index.php [L]
+
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
  +
RewriteRule ^(.*\.php)$ $1 [L]
  +
RewriteRule . index.php [L]
 
</pre>
 
</pre>
   

Revision as of 15:11, 16 March 2013

Installeer website

Op de server is de benodige code van Wordpress aanwezig in /usr/share/wordpress.
Eerst de database voorbereiden:

Er is reeds een lege database aangemaakt met de volgende rechten:
mysql> create database webhuis_nl;
mysql> grant all on webhuis_nl.* to gebruker identified by "geheim";
mysql> grant all on webhuis_nl.* to gebruiker@localhost identified by "geheim";
mysql> flush privileges;

Daarna de voorbereiding van de webserver:

root@host:~# vi /etc/apache2/sites-available/test2.webhuis.nl.conf
root@host:~# mkdir /var/www/webhuis.nl
root@host:~# a2ensite -> enable test2.webhuis.nl
root@host:~# /etc/init.d/apache2 reload

Als laatste volgt de wordpress code voor de website.

root@host:~# cp -a /usr/share/wordpress/* /var/www/webhuis.nl/

multi site

Multi site vereist per een aantal instellingen om het geheel werkend te krijgen. Doe je dat niet dan gaan alle sites op wit. Add the following to your /etc/wordpress/config-domain.nl.php file:

define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'test.domain.nl');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
   These unique authentication keys are also missing from your /etc/wordpress/config-zevendehemel.nl.php file. To make your installation more secure, you should also add:
define( 'AUTH_KEY', '****************************' );
define( 'SECURE_AUTH_KEY', ''****************************'' );
define( 'LOGGED_IN_KEY', ''****************************'' );
define( 'NONCE_KEY', ''****************************'' );
define( 'AUTH_SALT', ''****************************'' );
define( 'SECURE_AUTH_SALT', ''****************************'' );
define( 'LOGGED_IN_SALT', ''****************************'' );
define( 'NONCE_SALT', ''****************************'' );
   Add the following to your /etc/wordpress/htaccess file, replacing other WordPress rules:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin

RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]

Install

Voer op een kale server het volgende commando uit:

root@twhz-210:~# apt-get install wordpress mysql-server

Dit commando installeert alles inclusief apache, mysql, php en modules.


Terug naar: Webhuis Infrastructuur