Step By Step: Install Wordpress Multiuser (WPMU) On FreeBSD 7
Step By Step: Install Wordpress Multiuser (WPMU) On FreeBSD 7Wordpress is one of my favourite blog engines because it's easy and supports many plugins. Wordpress also available in multi-user mode which means a single Wordpress installation will cover many users with their own subdomain. This howto will show the steps taken to install Wordpress wpmu on a server running FreeBSD 7 stable. 1. Download latest wpmu file. wget http://mu.wordpress.org/latest.tar.gz 2. Extract and rename: pwd /home/phantom/public_html ls info.php latest.tar.gz tar xvfz latest.tar.gz && rm latest.tar.gz && mv wordpress-mu-1.5.1 wpmu ls info.php wpmu 3. Log in to your DNS server and change the DNS entry to allow wildcards. Ex: Make for update: make Restart the dns service: svc -t /var/service/dnscache/ Testing dns: dig blog.bogus.com dns# dig blog.bogus.com ; <> DiG 9.4.2 <> blog.bogus.com ;; QUESTION SECTION: ;; ANSWER SECTION: ;; Query time: 12 msec dig alam.blog.bogus.com dns# dig alam.blog.bogus.com ; <> DiG 9.4.2 <> alam.blog.bogus.com ;; QUESTION SECTION: ;; ANSWER SECTION: ;; Query time: 6 msec 4. Switch to blog server and change httpd.conf entry: ee /usr/local/etc/apache/httpd.conf NameVirtualHost 172.88.1.4 <VirtualHost 172.88.1.4 > ServerAdmin alamster@digitalfusi.com DocumentRoot /home/phantom/public_html/wpmu <Directory /home/phantom/public_html/wpmu > AllowOverride FileInfo Options </Directory> ServerName blog.bogus.com ServerAlias *.blog.bogus.com </VirtualHost> Save and restart apache. 5. Make database and grant user. mysql -uroot -p Enter password: Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer. mysql> show databases; +——————–+ mysql> create database wpmu; Query OK, 1 row affected (0.01 sec) mysql> grant all privileges on wpmu.* to alam@localhost identified by ‘doyanmakan’ with grant option; Query OK, 0 rows affected (0.02 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> 6. Starting install, open a browser and type http://blog.bogus.com. A chmod message will show up, just type this in the shell: chmod 777 /home/phantom/public_html/wpmu /home/pahntom/public_html/wpmu/wp-content/ Refresh the browser. Follow the steps : - Choose subdomain Click Submit. If everything works well you’ll see confirmation if the installation process went succesfully. Username and password generated. 7. Reset file into previous state. chmod 755 /home/phantom/public_html/wpmu /home/phantom/public_html/wpmu/wp-content/ Done. Administrator can add new themes, plugins to add more interactivity.
|



Recent comments
7 hours 10 min ago
9 hours 27 min ago
12 hours 40 min ago
13 hours 29 min ago
13 hours 36 min ago
17 hours 25 min ago
17 hours 53 min ago
1 day 1 hour ago
1 day 1 hour ago
1 day 10 hours ago