A client need to install wordpress multi user to teach their employee about blog. They want it installed in their server, running FreeBSD 7 stable. Here’s step by step install wpmu in FreeBSD, might be useful for someone π 1. Download latest wpmu file. wget http://mu.wordpress.org/latest.tar.gz 2. Extract andΓΒ rename phantom# pwd /home/phantom/public_html phantom# ls […]
Enable register_globals in one virtual host
one of my client wanna install prestashops. They want register globals off and session autostart setting to off. Those setting only applied to their store only, not affect whole setting. Because I have setting to httpd.conf I just add two lines : <VirtualHost 222.124.140.27 > ServerAdmin [email protected] DocumentRoot /home/clientname/public_html/store ServerName store.clientname.com php_flag register_globals off php_value […]
Find out Hard Disk position on FreeBSD
I just replace first HD in our email server with new one, little HD to replace 500GB HD π Until I forgot to copy important file in old HD to new one. My friend ask me to show my way to find out hard disk location in FreeBSD. System layout before put old HD : […]
Looking up update.FreeBSD.org mirrors… none found.
I often to see that message but finally I found my mistake π My mistake is…. I try only once, think if the chance not succeed in first attempt it means I fail. Definitely wrong : email# freebsd-update fetch Looking up update.FreeBSD.org mirrors… none found. Fetching public key from update.FreeBSD.org… failed. No mirrors remaining, giving […]
Unknown setting: mail_privileged_group
Downgrade dovecot to 1.0.10 give me error : mail# /usr/local/etc/rc.d/dovecot start Starting dovecot. Error: Error in configuration file /usr/local/etc/dovecot.conf line 262: Unknown setting: mail_privileged_group Fatal: Invalid configuration in /usr/local/etc/dovecot.conf Find line 262, talk about mail_priveleged_group solution : change mail_privileged_group = mail into mail_extra_groups = mail and start dovecot service. Work π