I don't know why I have a bunch of empty mails on maildrop folder of postfix, but ... find /var/spool/postfix/maildrop/ -size 0 -name '*' -exec rm {} +
There are many ways to set cookie based session timeout in PHP. You can edit your php.ini or put it in .htaccess but I choose for today this piece of code: <?php ini_set('session.gc_maxlifetime', 172800); ini_set('session.cookie_lifetime', 172800); session_start(); ?>
The session above will be valid for 2 days.
This code in .htaccess does redirect all requests to a new domain: RewriteEngine On RewriteRule ^(.*)$ http://WWW.NEW-DOMAIN.COM/ [R=301] The problem was, all other directives work like: www.old-domain.com/bla -> www.new-domain.com/bla but I need
www.old-domain.com/bla -> www.new-domain.com
www.old-domain.com/more/bla -> www.new-domain.com So the htaccess code above works fine.