Step by Step Install AtMail Open On FreeBSD
AtMail Open, I just know if atmail have free version.
Being curious on how it goes in FreeBSD box, I give it a try as my campus interface.
As usual I try to record it in notepad plus screenshot for guide, perhaps useful
1. Download latest version
mail# wget http://atmail.org/download/atmailopen.tgz
2. Extract and change ownership
mail# tar xvzf atmailopen.tgz
mail# chown -R www:www atmailopen
3. Create database and grant access
mail# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or
\g.
Your MySQL connection id is 35030
Server version: 5.0.51a-log FreeBSD port:
mysql-server-5.0.51a
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the
buffer.
mysql> create database atmail;
Query OK, 1 row affected (0.00 sec)
mysql> grant all privileges on atmail.* to
atmail@localhost identified by ‘atmailpass’ with grant
option;
Query OK, 0 rows affected (0.05 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.04 sec)
Step by step install wpmu in FreeBSD
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
info.php latest.tar.gz
phantom# rm latest.tar.gz && mv wordpress-mu-1.5.1 wpmu
phantom# ls
info.php wpmu
…Click here to read more
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 webmaster@clientdomain.com
DocumentRoot /home/clientname/public_html/store
ServerName store.clientname.com
php_flag register_globals off
php_value session.auto_start 0
</VirtualHost>
Yes, master value leave intact and this setting only available to store.clientname.com
To verifiy it you can use phpinfo().
- Online Marketing Expert by websolution71
- Nonpublic project #283208 by ekoolstra
- banners required asap by wbmasters
- Invitation card design by Formationsuk
- Nonpublic project #283205 by plennon
- Flash and HTML Partner Wanted by asonofhaiti
- Nonpublic project #283204 by maisaiah
- Michelle 01 by longterm1947
- Nonpublic project #283198 by ekoolstra
- Website similar to Yelp by gritz
