Monthly Archives: October 2015

Disable Bluetooth at start – Linux Debian Mint

Should work with most decent Linux distro (I love that expression, I know exactly what I mean here). Why, oh why, enabling a networking connection channel by default… Definitely some decisions are not in the hands of the right people… … Continue reading

Posted in Uncategorized | Leave a comment

Roundcube – No default folders: Sent Drafts Junk Trash

Edit the file /etc/roundcube/main.inc.php change FALSE -> TRUE $rcmail_config[‘create_default_folders’] = TRUE;

Posted in Uncategorized | Leave a comment

Page redirection javascript – keep session values

header(“Location:./comehere.php?”.session_name().”=”.session_id()); Use along with session_write_close();

Posted in Uncategorized | Leave a comment

Joomla – Content Encoding Error

After updating php, I got: “Content Encoding Error” for some Joomla site. configuration.php: public $gzip = ‘0’;  

Posted in Uncategorized | Leave a comment

removing files starting with hyphen “-” , from console

rm — —-myfile The “–” after rm prevents processing of more options, so everything after it will not be taken as option.

Posted in Uncategorized | Leave a comment

Javascript – refresh on resize

You need to refresh the browser window automatically when it is resized. You can find plenty of complex solutions for this issue, with javascript, and preferably using jquery, the bigger the library the better. Or you can also put this … Continue reading

Posted in Uncategorized | Leave a comment

Timezone – Debian

Another old one to remember for the road… simple question: How to reconfigure / set the timezone in Debian, without rebooting? dpkg-reconfigure tzdata Soooo annoying to find plenty of solutions on the net that just tell about setting up the … Continue reading

Posted in Uncategorized | Leave a comment

PHP 5.4 on Squeeze DTC GPLHost hosting server

Old stuff, update PHP for squeeze Before going into distribution upgrade for my hosting server: DTC GPLHost running on Squeeze (yeah, I know.) I will update php, using dotdeb repositories https://www.dotdeb.org/instructions/ deb     http://packages.dotdeb.org squeeze all deb-src http://packages.dotdeb.org squeeze all deb     … Continue reading

Posted in Uncategorized | Leave a comment